Secrets & Exposure
high Severity
Free Check
Admin Panel Exposure (/admin, /cpanel, /wp-admin)
Scans for publicly discoverable administrative login interfaces that lack IP whitelisting or second-factor gates.
Why It Matters
Public admin portals are constantly targeted by credential stuffing, brute force, and password spraying attacks.
How We Check This
We probe standard management routes (/admin, /administrator, /cpanel, /wp-login.php) and check for accessible login forms.
How to Fix & Implement
Copy-paste configuration blocks tailored for your web server or edge proxy.
nginx snippet
location /admin { allow 203.0.113.0/24; deny all; }Frequently Asked Questions
How should admin dashboards be protected?
Place them behind Cloudflare Access or a corporate VPN, and mandate hardware security key (WebAuthn) MFA.