Website Bot Vulnerability Scanner

Free tool to detect AI scraping risks and protect your website

🔒 No Installation Required
⚡ 30-Second Check
📊 Instant Results
1
2
3
4
1

Start Your Free Content Scraping Risk Scan

2

Run the Browser Check

1

Open Developer Tools

Right-click on your site and select "Inspect" or press F12

2

Go to Console Tab

Click on the "Console" tab in Developer Tools

3

Run the Script

Copy and paste the code below, then press Enter

We'll open your site in a new tab. Follow these simple steps:

Analysis Script
// WordPress Bot Vulnerability Scanner
        console.log('🔍 Scanning for bot vulnerabilities...');
        const analysis = {
            performance: {
                loadTime: performance.timing.loadEventEnd - performance.timing.navigationStart,
                resources: performance.getEntriesByType('resource').length,
                largeFiles: performance.getEntriesByType('resource').filter(r => r.transferSize > 50000).length
            },
            content: {
                wordCount: document.body.innerText.split(/\s+/).length,
                articles: document.querySelectorAll('article, .post, .entry').length,
                images: document.querySelectorAll('img').length
            },
            wordpress: {
                detected: document.querySelector('[href*="wp-content"], [src*="wp-content"]') ? 'Yes' : 'No',
                apis: document.querySelector('link[rel="https://api.w.org/"]') ? 'Exposed' : 'Hidden'
            }
        };
        console.log('📊 QUICK RESULTS:');
        console.log('- Load Time:', analysis.performance.loadTime + 'ms');
        console.log('- Resources:', analysis.performance.resources);
        console.log('- Content Size:', analysis.content.wordCount + ' words');
        console.log('- WordPress:', analysis.wordpress.detected);
        console.log('- APIs:', analysis.wordpress.apis);
        console.log('💡 Copy these results and return to the scanner for your full report!');
3

Enter Your Results

Paste your console results below to generate your customized bot protection report:

4

Your Bot Protection Report