Search for exposed .git directories, backup files (.bak, .sql), source maps, and server configuration dumps.
Requests common misconfigured paths (/.git/config, /.env, /docker-compose.yml, /package.json, /wp-config.php) to spot file leaks.
Canonical test payload dispatched during security surface audits.
GET /.git/HEAD (returns ref: refs/heads/main)Watch the probe engine test this signature in an isolated sandbox.
Nginx Block Hidden Files
# No hidden files block
location ~ /\.(?!well-known).* {
deny all;
access_log off;
return 404;
}Configure your reverse proxy to block all HTTP requests targeting hidden dot-files and directories.
Copy and paste into your editor to refactor this issue automatically.
Test your public domain specifically for Directory Traversal & Sensitive File Scanner.
Checks commonly evaluated alongside Directory Traversal & Sensitive File Scanner during surface discovery.
Detect SQL injection vulnerabilities in your web application before attackers exploit database access.
Find XSS vulnerabilities that could let attackers inject malicious scripts and steal customer sessions.
Detect exposed API keys, private tokens, and cloud secrets in client-side bundles and public responses.
Audit your site across all 41 vectors automatically on every deploy.