Free Cross-Origin Isolation Checker (COOP/COEP/CORP)
Check COOP, COEP, and CORP headers on your live URL to confirm cross-origin isolation is configured correctly and SharedArrayBuffer can run safely.
- COOP/COEP status
- CORP alignment
- SharedArrayBuffer readiness

What you get for free
18 core security checks via this tool, passive scans, step-by-step remediation, security score on every result.
What Essential adds at $39/mo
+17 advanced checks, continuous monitoring, daily security score history, email alerts, GitHub SAST, board-ready PDFs, SOC 2 / ISO 27001 / PCI reports.
What this checker validates
- COOP value (same-origin recommended)
- COEP: require-corp
- CORP/CORS headers on third‑party resources
Across 1,067 recent scans, 95.3% have no Cross-Origin-Embedder-Policy, 86.3% no Cross-Origin-Opener-Policy, and 94.8% no Cross-Origin-Resource-Policy. Cross-origin isolation is rarely fully configured.
What is cross-origin isolation?
COOP+COEP (with CORP/CORS on resources) isolate your page from other origins, unlocking powerful APIs like SharedArrayBuffer and improving leak resistance.
Implementation examples
Once you've identified the gap, applying the fix is straightforward. Here are the three configurations developers reach for most often.
Nginx
add_header Cross-Origin-Opener-Policy "same-origin" always;
add_header Cross-Origin-Embedder-Policy "require-corp" always;
add_header Cross-Origin-Resource-Policy "same-origin" always;Apache
Header always set Cross-Origin-Opener-Policy "same-origin"
Header always set Cross-Origin-Embedder-Policy "require-corp"
Header always set Cross-Origin-Resource-Policy "same-origin"Node.js (Express + Helmet)
import helmet from "helmet"
app.use(
helmet({
crossOriginOpenerPolicy: { policy: "same-origin" },
crossOriginEmbedderPolicy: { policy: "require-corp" },
crossOriginResourcePolicy: { policy: "same-origin" },
}),
)Tool-specific questions
Why did my app break after enabling COEP?
Is isolation required for WebAssembly?
Built for the engineers who already have enough to fix.
Real-time results
Comprehensive checks
Step-by-step fixes
More free checks, for the rest of your surface.
Complete Security Scan
Pre-Pentest Security Scan
Security Compliance Checker
WAF Checker
Security Headers Test
TLS/SSL Security Checker
Frequently asked.
What is Barrion and how does it enhance website security?
How safe is Barrion to use for security testing?
What types of security issues does Barrion identify?
What specific security checks does Barrion perform?
What is Barrion's smart crawling?
How often does Barrion perform security scans?
Is Barrion suitable for security testing of all business sizes?
How does Barrion handle data security and privacy during security testing?
What if I'm not satisfied with Barrion's security testing service?
How does Barrion help with SOC 2, ISO 27001, NIS2, and other compliance frameworks?
Anything else? Email contact@barrion.io.
Run a full report on your site.
Free first scan covers every check, no signup needed. Sign up to save the report and turn on continuous monitoring.