Same-Origin Policy - CI/CD用語集の定義
same-origin policy は、あるオリジン (スキーム + ホスト + ポート) のスクリプトが別のオリジンのレスポンスを読み取るのを制限するブラウザのセキュリティルールで、デフォルトでサイトを分離します。CORSは、必要な場所でこれを緩和する制御された仕組みです。
関連ガイド
CORS - CI/CD Glossary DefinitionCORS is the browser mechanism that lets a server opt in to cross-origin requests via response headers. A misc…
CSRF - CI/CD Glossary DefinitionCSRF tricks a logged-in user’s browser into sending an unwanted authenticated request. Anti-CSRF tokens and S…
Sandbox Escape - CI/CD Glossary DefinitionA sandbox escape is code breaking out of its confined environment to affect the host, defeating the isolation…