Free tool to detect AI scraping risks and protect your website
Right-click on your site and select "Inspect" or press F12
Click on the "Console" tab in Developer Tools
Copy and paste the code below, then press Enter
We'll open your site in a new tab. Follow these simple steps:
// 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!');
Paste your console results below to generate your customized bot protection report:
📊 QUICK RESULTS:
- Load Time: 2450ms
- Resources: 67
- Content Size: 1200 words
- WordPress: Yes
- APIs: Exposed