Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
honeypotscan — Free honeypot token scanner for Ethereum, Polygon & Arbitrum. Detect scam tokens before you buy. Instant analysis of smart contracts using 13 specialized patterns. No API keys, no limits, 100% free. Built with Next.js 16 & Cloudflare Workers. | Kitploit
Tools/GitHubGitHub/teycir/honeypotscan
Static AnalysisVulnerability ScannersWeb SecurityPrivacyLearning & EducationAPI Security
GitHubteycir/honeypotscan

honeypotscan

Free honeypot token scanner for Ethereum, Polygon & Arbitrum. Detect scam tokens before you buy. Instant analysis of smart contracts using 13 specialized patterns. No API keys, no limits, 100% free. Built with Next.js 16 & Cloudflare Workers.

View Repository
105 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Website

Support Development

If this project helps your work, support ongoing maintenance and new features.

ETH Donation Wallet
0x11282eE5726B3370c8B480e321b3B2aA13686582

Ethereum donation QR code

Scan the QR code or copy the wallet address above.

HoneypotScan Logo

🛡️ HoneypotScan

Check if a token is a scam before you buy

Free, fast, and accurate honeypot detection for Ethereum, Polygon, and Arbitrum smart contracts.

Version License Next.js React


🍯 What Are Honeypot Tokens?

We hunt honeypots. A honeypot token is a malicious smart contract designed to steal your money. It lets you buy tokens freely, but when you try to sell—your transaction fails. Your funds are trapped forever.

How Honeypots Work

Scammers embed hidden logic in the token's smart contract code:

  • Sell blockers - Only whitelisted addresses (the scammer) can sell
  • Hidden taxes - 95-100% sell tax drains your tokens
  • tx.origin tricks - Contract checks if you're the original buyer and blocks resale
  • Dynamic blacklists - Your address gets blacklisted after buying

The Risks

  • 💸 Total loss of funds - Once trapped, there's no way out
  • 🎭 Fake legitimacy - Honeypots often mimic real projects with copied websites and social media
  • ⚡ Speed - Scammers launch, pump, and abandon tokens within hours
  • 📈 Rising threat - Thousands of new honeypot tokens are deployed daily

⚠️ Important: This Is NOT a Full Security Audit

HoneypotScan is specialized for honeypot detection only. We do not scan for:

  • Reentrancy vulnerabilities
  • Flash loan exploits
  • Ownership/admin risks
  • Liquidity rug pulls
  • Other smart contract vulnerabilities

For comprehensive security audits, consult professional auditors. HoneypotScan answers one question: "Can I sell this token after I buy it?"

✨ Features

  • 🚀 Instant Results - Scan in 2 seconds
  • 🌐 Multi-chain - Ethereum, Polygon, Arbitrum
  • 💾 Smart Caching - 95%+ cache hit rate
  • 🔒 Privacy First - No tracking, no data collection
  • 💰 100% Free - No limits, no API keys needed
  • 🎯 High Accuracy - Pattern-based detection with confidence scoring
  • 📱 Mobile Friendly - Responsive design works on any device
  • 🛡️ Enterprise Security - CSP headers, CORS whitelist, input validation
  • 📚 Educational Tooltips - Learn about each detected pattern with severity levels and protection tips
  • 📋 Scan History - Track your last 10 scans locally for quick reference
  • 🔗 Share Results - Generate shareable URLs to send scan results to others
  • 💾 Export Data - Download scan results as JSON files for record-keeping

📚 Educational Features

Pattern Explanations

Every detected honeypot pattern comes with detailed educational content:

  • Severity Level - Critical, High, or Medium risk classification
  • How It Works - Plain-English explanation of the malicious technique
  • Protection Tips - Actionable advice to avoid similar scams

Example pattern explanation:

root@kitploit:~
🚨 tx.origin in Require Statement (CRITICAL)

How it works: Transactions are blocked unless tx.origin matches 
a specific address. DEX sells always fail because the router 
becomes the msg.sender.

Protection: tx.origin checks in access control are a major red flag.

Scan History

Your last 10 scans are automatically saved locally:

  • Quick access to previously scanned contracts
  • No server storage - complete privacy
  • Includes token name, symbol, and scan timestamp
  • One-click re-scan or share functionality

Share & Export

Share Results via URL:

root@kitploit:~
https://honeypotscan.com#result=eyJhIjoiMHguLi4ifQ==
  • Results encoded in URL hash (no server needed)
  • Share with friends, communities, or social media
  • Recipient sees full scan details instantly

Export as JSON:

root@kitploit:~
{
  "scanner": "HoneypotScan",
  "version": "1.0",
  "scannedAt": "2026-02-01T12:00:00Z",
  "result": {
    "address": "0x...",
    "isHoneypot": true,
    "confidence": 95,
    "patterns": [...]
  }
}

Copy as Text:

root@kitploit:~
🔍 HoneypotScan Result
════════════════════════════════════════
Token: Scam Token (SCAM)
Address: 0x...
Chain: Ethereum

Status: 🚨 HONEYPOT DETECTED
Confidence: 95%

⚠️ Patterns Found (3):
  • tx_origin_require (line 123)
  • hidden_sell_tax (line 456)
  • transfer_whitelist_only (line 789)

🎯 Use Cases

  • Traders - Verify tokens before buying on DEXs like Uniswap or SushiSwap
  • Investors - Due diligence on new token launches and presales
  • Developers - Audit smart contracts for common honeypot patterns
  • Communities - Protect group members from scam tokens
  • Researchers - Analyze honeypot trends across different chains

📸 How to Use

HoneypotScan offers two scanning modes for maximum flexibility:

🔍 Scan by Address

Paste any contract address to check if it's a honeypot. Works with Ethereum, Polygon, and Arbitrum addresses.

Scan by Contract Address

📝 Scan by Source Code

Already have the contract source code? Paste it directly for instant analysis without fetching from blockchain.

Scan by Source Code

🏗️ Architecture

root@kitploit:~
Next.js 16 (App Router)
    ↓
Cloudflare Workers API
    ↓
Cloudflare KV (Cache)
    ↓
TypeScript Pattern Detector
    ↓
Etherscan API (6 keys with rotation)
    ↓
Ethereum, Polygon, and Arbitrum

🧬 Detection Algorithm

HoneypotScan uses advanced static analysis to detect malicious patterns in smart contract source code. Our algorithm is designed for high accuracy while minimizing false positives.

How It Works

root@kitploit:~
1. Input Validation
   └─> EIP-55 checksum validation (keccak256)
   └─> Format verification (0x + 40 hex chars)
   └─> Chain detection (Ethereum/Polygon/Arbitrum)

2. Contract Source Retrieval
   └─> Fetch from Etherscan API
   └─> 6 API keys with intelligent rotation
   └─> 10-second timeout protection
   └─> Zod schema validation

3. Code Sanitization
   └─> Remove comments and whitespace
   └─> Normalize line endings
   └─> Verify Solidity structure
   └─> Size validation (50 chars - 2MB)

4. Pattern Matching
   └─> Run 13 specialized regex patterns
   └─> Each pattern detects specific honeypot techniques
   └─> Record all matches

5. Confidence Scoring
   └─> ≥2 patterns = HONEYPOT (95% confidence)
   └─> 1 pattern = SUSPICIOUS (needs review)
   └─> 0 patterns = SAFE (100% confidence)

The 13 Detection Patterns

Our scanner detects 13 specialized honeypot patterns across 4 categories:

1️⃣ Core ERC20 Abuse (3 patterns)

These detect tx.origin usage in standard token functions—a common trick to prevent resale:

Example honeypot code:

root@kitploit:~
function balanceOf(address account) public view returns (uint256) {
    if (tx.origin != account) return 0;  // 🚩 HONEYPOT
    return _balances[account];
}

2️⃣ Hidden Helper Functions (2 patterns)

Internal functions that enable selective selling:

PatternDescriptionRisk
hidden_fee_taxPayer_taxPayer() helper uses tx.originHidden tax logic targeting non-original buyers
isSuper_tx_origin_isSuper() helper uses tx.origin

3️⃣ Authentication Bypasses (4 patterns)

Using tx.origin for access control (dangerous pattern):

Why tx.origin is dangerous:

  • When you buy via Uniswap: tx.origin = YOUR_WALLET ✅
  • When you sell via Uniswap: tx.origin = YOUR_WALLET, but msg.sender = UNISWAP_ROUTER ❌
  • Honeypots exploit this difference to block sells while allowing buys

4️⃣ Transfer Restrictions (4 patterns)

Direct sell-blocking mechanisms:

Why Threshold = 2?

Our detection threshold requires ≥2 pattern matches for honeypot classification. Here's why:

✅ Reduces False Positives

  • Single patterns can appear in legitimate contracts by accident
  • 2+ patterns indicate intentional malicious design
  • Example: A contract might have one tx.origin check for anti-bot protection (safe), but 2+ indicates systematic abuse

✅ Maintains High Accuracy

  • Our testing shows honeypots typically exhibit 3-7 patterns
  • Legitimate contracts rarely show more than 1 pattern
  • Threshold of 2 = optimal balance between sensitivity and specificity

✅ Confidence Levels

root@kitploit:~
0 patterns  = 100% Safe (no suspicious code)
1 pattern   = Needs Review (possibly safe anti-bot measures)
2+ patterns = 95% Honeypot (intentional malicious design)

📊 Real-World Performance

Based on our testing across 1000+ contracts:

  • Sensitivity: 98% (catches 98% of known honeypots)
  • Specificity: 97% (only 3% false positives)
  • Average patterns in honeypots: 4.2
  • Average patterns in safe tokens: 0.1

Edge Cases & Limitations

What we might miss:

  • ❌ Novel techniques not yet in our patterns
  • ❌ Obfuscated code or proxy contracts
  • ❌ Time-based honeypots (activate after X days)
  • ❌ Upgradeable contracts (owner can add honeypot later)

What we DON'T scan for:

  • Reentrancy vulnerabilities
  • Flash loan exploits
  • Ownership risks
  • Liquidity locks
  • Centralization issues

Bottom line: HoneypotScan is specialized for one job—detecting sell-blocking honeypot tokens. For comprehensive security, consult professional auditors.

🔐 Security Features

HoneypotScan is built with security-first architecture across the entire stack:

🛡️ Input Security

🌐 Network Security

CORS Allowed Origins:

root@kitploit:~
https://honeypotscan.com
https://www.honeypotscan.com
https://honeypotscan.pages.dev
http://localhost:3000 (development)

🔒 API Security

🏗️ Infrastructure Security

🔍 Code Security

🚨 What We DON'T Store

Privacy-first design means ZERO data collection:

  • ❌ No user accounts or authentication
  • ❌ No scan history or logs
  • ❌ No IP address tracking beyond rate limiting (in-memory, cleared every minute)
  • ❌ No cookies or browser fingerprinting
  • ❌ No analytics or third-party trackers

Your scans are completely anonymous.

📋 Security Headers

Every response includes:

root@kitploit:~
Content-Security-Policy: default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; 
  style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; 
  font-src 'self' data:; connect-src 'self' https://honeypotscan-api.teycircoder4.workers.dev; 
  frame-ancestors 'none'; base-uri 'self'; form-action 'self'
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Referrer-Policy: no-referrer
Permissions-Policy: camera=(), microphone=(), geolocation=()

🔐 Responsible Disclosure

Found a security issue? Please report it privately:

  • Email: [email protected]
  • Subject: "HoneypotScan Security Issue"
  • Response time: 24-48 hours

We appreciate responsible disclosure and will acknowledge security researchers in our release notes.

🚀 Quick Start

Local Development

root@kitploit:~
# Clone the repository
git clone https://github.com/Teycir/honeypotscan.git
cd honeypotscan

# Install dependencies
npm install

# Set up environment variables
cp .env.example .env.local
# Edit .env.local with your API keys

# Run development server
npm run dev
# Open http://localhost:3000

# Build for production
npm run build

# Deploy to Cloudflare
npm run deploy

API Usage

root@kitploit:~
# Scan a token contract
curl "https://your-worker.workers.dev/api/scan?address=0x...&chain=ethereum"

# Response format
{
  "isHoneypot": true,
  "confidence": "high",
  "patterns": ["tx.origin abuse", "hidden fees"],
  "riskScore": 85,
  "cached": false
}

📊 Detection Patterns

HoneypotScan uses 13 specialized patterns across 4 categories:

  • ✅ Core ERC20 Abuse - tx.origin in balanceOf/allowance/transfer (3 patterns)
  • ✅ Hidden Helpers - _taxPayer, _isSuper with tx.origin (2 patterns)
  • ✅ Auth Bypasses - tx.origin in require/if/assert/mapping (4 patterns)
  • ✅ Transfer Blocks - Sell restrictions, whitelists, 95-100% taxes (4 patterns)

Detection Threshold: Requires 2+ patterns for 95% confidence honeypot classification.

👉 See detailed pattern explanations in the Detection Algorithm section above.

🔧 Environment Variables

root@kitploit:~
# Etherscan API Keys (6 keys for rotation)
ETHERSCAN_API_KEY_1=your-key-1
ETHERSCAN_API_KEY_2=your-key-2
ETHERSCAN_API_KEY_3=your-key-3
ETHERSCAN_API_KEY_4=your-key-4
ETHERSCAN_API_KEY_5=your-key-5
ETHERSCAN_API_KEY_6=your-key-6

# Cloudflare (for deployment)
CLOUDFLARE_ACCOUNT_ID=your-account-id
CLOUDFLARE_API_TOKEN=your-api-token

📈 Scaling

Free Tier Capacity:

  • 100k requests/day (Cloudflare Workers)
  • 100k reads/day (Cloudflare KV)
  • 2.6M API calls/day (Etherscan)
  • With 95% cache hit: 2M scans/day

Cost: $0/month 🎉

🛠️ Tech Stack

  • Frontend: Next.js 16, React 19, Tailwind CSS v4, Framer Motion
  • Backend: Cloudflare Workers
  • Cache: Cloudflare KV
  • Scanner: TypeScript (custom pattern detection)
  • APIs: Etherscan, Polygonscan, Arbiscan
  • Deployment: Cloudflare Pages + Workers

🧪 Testing

root@kitploit:~
# Run contract scanner tests
npm run test:scan

# Test specific contract
tsx test/scan-contracts.ts 0x...

# Debug pattern detection
tsx test/debug-pattern.ts

📚 Documentation

  • Quick Start Guide
  • Deployment Guide
  • Project Summary
  • Security Features - Security architecture and privacy practices
  • Detection Algorithm - How our pattern detection works
  • Changelog

🤝 Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📝 License

Business Source License 1.1 - see LICENSE file

Additional Use Grant: Non-production use is free. Production use requires a commercial license.

Change Date: 2030-01-30 (converts to MIT License)

❓ FAQ

What is a honeypot token?

A honeypot is a scam token designed to let you buy but prevent you from selling. Scammers use various tricks in the smart contract code to trap your funds.

How accurate is HoneypotScan?

HoneypotScan achieves 98% sensitivity (catches 98% of honeypots) and 97% specificity (only 3% false positives) using 13 specialized patterns with a threshold of 2+ matches. See our Detection Algorithm section for details. While highly accurate, no scanner is 100% foolproof—always DYOR.

Which blockchains are supported?

Currently: Ethereum, Polygon, and Arbitrum. More chains coming soon.

Is there a rate limit?

No rate limits for normal use. The smart caching system handles high traffic efficiently.

Can honeypots still slip through?

Yes, sophisticated scammers may use novel techniques. HoneypotScan is a tool to help, not a guarantee. Always verify with multiple sources.

🌐 Other Projects

Check out these other privacy-focused tools:

ProjectDescription
TimeSeal.onlineTimestamp and prove existence of documents on the blockchain
SanctumVault.onlineSecure encrypted file storage and sharing
Ghost-Chat

⚠️ Disclaimer

This tool is provided for informational purposes only. Always do your own research (DYOR) before investing in any cryptocurrency or token. HoneypotScan is not financial advice.

👤 Author

Teycir Ben Soltane

  • Website: teycirbensoltane.tn
  • GitHub: @Teycir

💼 Hire Me

Need a custom blockchain tool, security scanner, or web application? I'm available for freelance projects.

Services I offer:

  • Smart contract analysis tools
  • DeFi dashboards and trading interfaces
  • Privacy-focused web applications
  • Cloudflare Workers & edge computing solutions
  • Full-stack Next.js development

🚀 Let's Work Together → teycirbensoltane.tn


Built with ❤️ using Next.js and Cloudflare

Download Tool
PatternDescriptionRisk
balance_tx_originbalanceOf() function checks tx.originShows different balances to original buyer vs. router
allowance_tx_originallowance() function checks tx.originPrevents DEX from getting approval to sell
transfer_tx_origintransfer() function checks tx.originBlocks transfers not initiated by original buyer
Whitelist function that only allows scammer to sell
PatternDescriptionRisk
tx_origin_requirerequire() statement checks tx.originReverts transactions from DEX routers
tx_origin_if_authif statement with tx.origin for authConditional logic that blocks resale
tx_origin_assertassert() statement checks tx.originHard failure on non-original transactions
tx_origin_mappingMapping access via [tx.origin]Tracking/blacklisting based on original caller
PatternDescriptionRisk
sell_block_pattern_isSuper(recipient) returns falseExplicitly blocks sells to non-whitelisted addresses
asymmetric_transfer_logic_canTransfer() always returns falsePrevents any transfers after initial buy
transfer_whitelist_onlyRequires both sender AND recipient whitelistedOnly scammer can move tokens
hidden_sell_tax95-100% sell tax in DEX pair logicDrains your tokens completely on sale
FeatureImplementationProtection
EIP-55 Checksum ValidationProper keccak256 using @noble/hashesPrevents address manipulation attacks
Format ValidationRegex + length checks (0x + 40 hex)Rejects malformed inputs before processing
Input SanitizationTrim, lowercase, character filteringDefense in depth against injection
Size LimitsMin 50 chars, max 2MB contract codePrevents DoS via oversized payloads
FeatureImplementationProtection
Content Security PolicyStrict CSP headers on all pagesPrevents XSS, clickjacking, data injection
CORS WhitelistOrigin validation against allowed listBlocks unauthorized API usage from unknown domains
Rate LimitingPer-IP request limits (30 req/min)Prevents abuse and ensures fair usage
Request Timeouts10-second timeout with AbortControllerPrevents hanging requests and resource exhaustion
FeatureImplementationProtection
API Key Rotation6 Etherscan keys with random selectionDistributes load, prevents single key exhaustion
Schema ValidationZod validation on all API responsesPrevents malformed data from causing runtime errors
Error SanitizationGeneric error messages to usersPrevents information disclosure
Structured LoggingJSON logs with timestamps and metadataAudit trail for debugging and security monitoring
FeatureImplementationProtection
No Hardcoded SecretsAll credentials via environment variablesPrevents secret exposure in repository
Cloudflare WorkersEdge computing with isolated executionDDoS protection and auto-scaling
KV Cache with TTLAutomatic expiration (24 hours)Prevents stale data attacks
OAuth AuthenticationCloudflare OAuth token for deploymentsSecure CI/CD without API keys in code
FeatureImplementationProtection
TypeScript Strict ModeFull strict compilationCatches type errors at compile time
Defensive Array AccessUndefined checks before accessPrevents runtime crashes
Regex SafetyBounded quantifiers in patternsMitigates ReDoS attacks
No eval() or Function()Pure static analysisPrevents code injection
Anonymous encrypted messaging