🔍 Audit Followers
Analyze and categorize your followers as legitimate, suspicious, or likely fake.
📋 What It Does
- Goes to your followers page
- Scrolls to collect follower profile cards
- Scores each follower based on heuristics:
- Default/missing avatar → suspicious
- No bio → suspicious
- High digits in username → suspicious
- Very new account → suspicious
- Extremely high following-to-follower ratio → suspicious
- Categorizes as: legitimate, suspicious, or fake
- Prints summary statistics
- Exports full results as JSON
🌐 Browser Console Script
Steps:
- Go to your followers page (
x.com/yourusername/followers) - Open console (F12) and paste
src/auditFollowers.js
Configuration:
const CONFIG = {
scrollCycles: 20,
delayBetweenScrolls: 1500,
thresholds: {
suspicious: 3, // Score >= 3 = suspicious
fake: 6, // Score >= 6 = likely fake
},
};
📊 Output
🔍 FOLLOWER AUDIT RESULTS
━━━━━━━━━━━━━━━━━━━━━━━━
Total analyzed: 500
✅ Legitimate: 420 (84%)
⚠️ Suspicious: 60 (12%)
🤖 Likely fake: 20 (4%)
Top suspicious accounts listed with scores...
📁 Files
src/auditFollowers.js— Follower audit scriptsrc/blockBots.js— Block detected bots (companion script)src/removeFollowers.js— Remove specific followers
⚠️ Notes
- Accuracy depends on visible profile data (avatar, bio, stats)
- The heuristic scores are tunable via
thresholdsin CONFIG - Not all "suspicious" accounts are bots — use as guidance
- For higher accuracy, combine with
src/blockBots.jswhich checks additional signals
⚡ Ready to try Audit Followers?
XActions is 100% free and open-source. No API keys, no fees, no signup.
Browse All Scripts