CSRF - CI/CD Glossary Definition
CSRF (Cross-Site Request Forgery) exploits a browser automatically attaching a user’s credentials to a forged cross-site request, causing actions the user never intended; synchronizer tokens and SameSite cookies prevent it.
Related guides
CORS - CI/CD Glossary DefinitionCORS is the browser mechanism that lets a server opt in to cross-origin requests via response headers. A misc…
Same-Origin Policy - CI/CD Glossary DefinitionThe same-origin policy stops a page from reading data from a different origin - the browser’s baseline isolat…
Replay Attack - CI/CD Glossary DefinitionA replay attack captures a valid request and re-sends it later to repeat its effect. Nonces, timestamps, and…