A comprehensive Python tool for fingerprinting Ethereum/EVM chains RPC endpoints to identify node implementations, versions, network configurations, and security characteristics.
- Features
- Installation
- Quick Start
- Advanced CLI Usage
- Python API Usage
- Example Output
- Supported Implementations
- CVE Vulnerability Detection
- CLI Documentation
- Security Considerations
- Contributing
- License
- Changelog
- ๐ Enhanced Node Detection: Identify Geth, Parity/OpenEthereum, Besu, Nethermind, Erigon, Reth, EthereumJS, Anvil, Hardhat, Ganache, TurboGeth
- ๐งฌ Detailed Client Analysis: Extract programming language, version, OS, and architecture from client version strings
- ๏ฟฝ๏ธ CVE Vulnerability Detection: Automatically check for known security vulnerabilities based on detected node implementation and version
- ๏ฟฝ๐ Network Information: Chain ID, network ID, block height, gas prices, peer count
- ๐ Async Support: Fingerprint multiple endpoints concurrently with configurable limits
- ๐ Bulk Scanning: Read endpoint lists from files (one URL per line) - perfect for pentesting workflows
- ๐ Security Analysis: Detect exposed accounts, admin interfaces, debug capabilities
- ๐ Method Discovery: Enumerate supported RPC methods
- ๐ Multiple Formats: Output results in table, JSON, or YAML format
- ๐ Python API: Use as a library in your Python projects
The tool can extract detailed information from client version strings:
- Programming Language: Go, Rust, Java, .NET, JavaScript/TypeScript
- Language Version: Specific version (e.g., Go 1.21.4, Java 17, .NET 8.0.0)
- Operating System: Linux, Windows, macOS, FreeBSD, OpenBSD
- Architecture: x86_64, amd64, arm64, ARM, etc.
- Node Version: Exact node software version
- Build Information: Commit hashes, timestamps (where available)
Example parsed information:
Client Version: Geth/v1.13.5-stable/linux-amd64/go1.21.4
โโโ Implementation: Geth
โโโ Node Version: 1.13.5-stable
โโโ Programming Language: Go
โโโ Language Version: 1.21.4
โโโ Operating System: Linux
โโโ Architecture: amd64
pip install ethereum-rpc-fingerprintergit clone https://github.com/yourusername/ethereum-rpc-fingerprinter.git
cd ethereum-rpc-fingerprinter
pip install -e .The tool provides a modern CLI with two command names:
ethereum-rpc-fingerprinter(full name)erf(short alias)
# Fingerprint a single endpoint
erf fingerprint http://localhost:8545
# Multiple endpoints with async processing
erf fingerprint -a http://localhost:8545 https://eth.llamarpc.com
# From file (one URL per line) - great for pentesting
erf fingerprint -f endpoints.txt
# From file with async processing
erf fingerprint -f endpoints.txt -a --max-concurrent 10
# Export results to JSON
erf fingerprint -o results.json http://localhost:8545
# Different output formats
erf fingerprint --format json http://localhost:8545
erf fingerprint --format yaml http://localhost:8545
erf fingerprint --format table http://localhost:8545 # default
# Verbose output with progress
erf fingerprint -v -a http://localhost:8545 https://cloudflare-eth.com# Scan from file with beautiful progress tracking
erf fingerprint -f endpoints.txt --async --verbose
# High-performance bulk scanning with custom concurrency
erf fingerprint -f endpoints.txt --async --max-concurrent 20 --timeout 5
# Export bulk results to file
erf fingerprint -f endpoints.txt --async -o scan_results.json --format json
# Quiet mode for automation (progress bar only)
erf fingerprint -f endpoints.txt --async --quiet --format json# Parse client version strings
erf parse-version "Geth/v1.13.5-stable/linux-amd64/go1.21.4"
# Multiple versions at once
erf parse-version \
"Geth/v1.13.5-stable/linux-amd64/go1.21.4" \
"Besu/v23.4.0/linux-x86_64/openjdk-java-17" \
"Nethermind/v1.20.3+77d89dbe/windows-x64/dotnet8.0.0"# List supported implementations
erf list-implementations
# Include development tools
erf list-implementations --include-dev
# Get help for any command
erf --help
erf fingerprint --help# Comprehensive analysis with all options
erf fingerprint \
--verbose \
--async \
--timeout 30 \
--max-concurrent 5 \
--format json \
--output comprehensive_report.json \
http://localhost:8545 \
https://eth.llamarpc.com \
https://cloudflare-eth.com
# Automation-friendly (quiet mode)
erf fingerprint --quiet --format json http://localhost:8545 | jq '.[]'import asyncio
from ethereum_rpc_fingerprinter import EthereumRPCFingerprinter
# Create fingerprinter instance
fingerprinter = EthereumRPCFingerprinter()
# Synchronous fingerprinting
result = fingerprinter.fingerprint("http://localhost:8545")
print(f"Implementation: {result.implementation}")
print(f"Node Version: {result.node_version}")
print(f"Programming Language: {result.programming_language}")
print(f"Language Version: {result.language_version}")
print(f"Operating System: {result.operating_system}")
print(f"Architecture: {result.architecture}")
# Asynchronous fingerprinting
async def fingerprint_multiple():
results = await fingerprinter.fingerprint_async([
"http://localhost:8545",
"https://eth.llamarpc.com",
"https://cloudflare-eth.com"
])
for result in results:
print(f"{result.endpoint}: {result.implementation} {result.node_version}")
asyncio.run(fingerprint_multiple())
# Client version parsing
version_info = fingerprinter.parse_client_version("Geth/v1.13.5-stable/linux-amd64/go1.21.4")
print(f"Language: {version_info.programming_language} {version_info.language_version}")
print(f"Platform: {version_info.operating_system} {version_info.architecture}")Fingerprinting: http://localhost:8545
๐ Basic Information:
โโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Endpoint โ http://localhost:8545 โ
โ Implementation โ Geth โ
โ Client Version โ Geth/v1.13.5-stable-3f... โ
โ Node Version โ 1.13.5-stable โ
โ Language โ Go 1.21.4 โ
โ Platform โ Linux amd64 โ
โ Chain ID โ 1 (Ethereum Mainnet) โ
โ Network ID โ 1 โ
โ Block Height โ 18,750,123 โ
โ Syncing โ No โ
โโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Network Status:
โโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Gas Price โ 15.2 Gwei โ
โ Peer Count โ 47 peers โ
โ Mining โ No โ
โ Hashrate โ 0 H/s โ
โโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Security Information:
โโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Accounts โ None exposed โ
โ Debug Interface โ Not detected โ
โ Admin Interface โ Not detected โ
โโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ ๏ธ Supported Methods:
eth_accounts, eth_blockNumber, eth_call, eth_chainId, eth_estimateGas,
eth_gasPrice, eth_getBalance, eth_getBlockByHash, eth_getBlockByNumber,
eth_getCode, eth_getLogs, eth_getStorageAt, eth_getTransactionByHash,
eth_getTransactionCount, eth_getTransactionReceipt, eth_hashrate,
eth_mining, eth_sendRawTransaction, eth_syncing, net_listening,
net_peerCount, net_version, web3_clientVersion, web3_sha3
Fingerprinting: http://localhost:8545
๐ Basic Information:
โโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Endpoint โ http://localhost:8545 โ
โ Implementation โ Hardhat โ
โ Client Version โ HardhatNetwork/2.17.2/@hard... โ
โ Node Version โ 2.17.2 โ
โ Language โ JavaScript (Node.js) โ
โ Platform โ Unknown โ
โ Chain ID โ 31337 (Hardhat Network) โ
โ Network ID โ 31337 โ
โ Block Height โ 0 โ
โ Syncing โ No โ
โโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Security Information:
โโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Accounts โ 20 accounts exposed โ
โ Debug Interface โ Available โ
โ Admin Interface โ Not detected โ
โโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ๏ธ Development Environment Detected
- Geth (Go Ethereum) - Go implementation
- Besu (Hyperledger Besu) - Java implementation
- Nethermind - .NET implementation
- Erigon (formerly TurboGeth) - Go implementation
- Reth - Rust implementation (modern)
- Parity/OpenEthereum - Rust implementation (legacy)
- EthereumJS - TypeScript implementation (beta)
- Hardhat Network - JavaScript/TypeScript
- Ganache - JavaScript
- Anvil (Foundry) - Rust
The tool includes an integrated CVE database that automatically checks for known security vulnerabilities based on the detected node implementation and version. This feature provides critical security intelligence for blockchain infrastructure assessment.
- Automated CVE Scanning: Real-time vulnerability assessment during fingerprinting
- Comprehensive Database: Covers all major Ethereum client implementations
- Severity Classification: CRITICAL, HIGH, MEDIUM, LOW risk levels with CVSS scores
- Actionable Recommendations: Specific upgrade paths and mitigation strategies
The vulnerability database includes security advisories for:
- Geth (Go Ethereum): Consensus vulnerabilities, DoS attacks, memory exhaustion
- Parity/OpenEthereum: Light client vulnerabilities, consensus issues
- Besu (Hyperledger): P2P protocol vulnerabilities, information disclosure
- Nethermind: JSON-RPC DoS vulnerabilities
- Erigon: State sync vulnerabilities, consensus issues
- Reth: Memory exhaustion vulnerabilities
When vulnerabilities are detected, the tool displays comprehensive security information:
โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ Security Assessment โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ ๐จ CRITICAL security risk - 3 vulnerability(s) found โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
โ ๏ธ Vulnerability Details (3 found)
โญโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโฌโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโฎ
โ CVE ID โ Severity โ CVSS โ Title โ Fixed In โ
โโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโค
โ CVE-2021-39137 โ CRITICAL โ 9.8 โ Geth consensus flaw in โ 1.10.8 โ
โ โ โ โ London hard fork โ โ
โ CVE-2021-41173 โ HIGH โ 7.5 โ Geth DoS via malformed trie โ 1.10.9 โ
โ โ โ โ node โ โ
โ CVE-2022-23328 โ HIGH โ 7.5 โ Geth memory exhaustion via โ 1.10.15 โ
โ โ โ โ large RPC requests โ โ
โฐโโโโโโโโโโโโโโโโโดโโโโโโโโโโโดโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโฏ
๐ง Security Recommendations
โญโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ Priority โ Recommendation โ
โโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ URGENT โ Critical update required - upgrade to v1.10.8+ immediately โ
โ HIGH โ Update to Geth v1.10.9 or later immediately โ
โ HIGH โ Upgrade to Geth v1.10.15 or configure request size limits โ
โฐโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
The CVE database is automatically loaded and maintained:
- Database Location:
cve_database.json(included with installation) - Update Frequency: Updated with each package release
- Custom Databases: Support for custom CVE database files
- Version Matching: Intelligent version range and pattern matching
- Infrastructure Auditing: Identify vulnerable nodes in production environments
- Penetration Testing: Rapid vulnerability assessment during security testing
- Compliance Monitoring: Track security posture of blockchain infrastructure
- Incident Response: Quick vulnerability identification during security incidents
- Upgrade Planning: Prioritize node updates based on security risk levels
For comprehensive CLI usage, see CLI_USAGE.md.
This tool is designed for:
- โ Security research and auditing
- โ Network analysis and monitoring
- โ Development and testing
- โ Educational purposes
Important: Only use this tool on endpoints you own or have explicit permission to test. Unauthorized scanning of RPC endpoints may violate terms of service or be considered malicious activity.
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes
- Run tests (
python tests/test_runner.py) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
For maintainers, use the automated publish script to release new versions:
# Test with dry run first
./publish.sh --dry-run
# Publish patch version to Test PyPI
./publish.sh patch --test
# Publish to production PyPI
./publish.sh patchSee PUBLISHING.md for detailed publishing instructions.
This project is licensed under the MIT License - see the LICENSE file for details.
- CVE Vulnerability Detection: Integrated comprehensive CVE database for automatic security vulnerability assessment
- Security Intelligence: Real-time vulnerability scanning based on detected node implementation and version
- Risk Assessment: CRITICAL/HIGH/MEDIUM/LOW risk classification with CVSS scores and color-coded alerts
- Comprehensive CVE Coverage: Database includes vulnerabilities for Geth, Parity/OpenEthereum, Besu, Nethermind, Erigon, and Reth
- Rich Security Display: Beautiful security assessment panels with color-coded severity levels and detailed vulnerability tables
- Actionable Recommendations: Specific upgrade paths and mitigation strategies for detected vulnerabilities
- Security-First Design: Automated security assessment integrated into all fingerprinting operations
- Enhanced Test Suite: 59 comprehensive unit tests including full CVE database and vulnerability detection coverage
- Rich Progress Consistency: Fixed synchronous mode to use Rich progress bars instead of basic click progress
- Enhanced Node Support: Added comprehensive support for Reth (Rust) and EthereumJS implementations
- Improved Detection: Enhanced node implementation extraction with better coverage of official Ethereum clients
- Unified Progress Experience: Both sync and async modes now provide beautiful Rich progress bars with consistent styling
- Build Information Handling: Improved parsing and display of build information from client version strings
- New Node Implementations: Added support for Reth (modern Rust implementation) and EthereumJS (TypeScript beta)
- Complete Official Coverage: Now supports all production Ethereum execution clients listed on ethereum.org
- Enhanced Build Info: Improved handling and formatting of build information in async fingerprinting
- Better Detection: Enhanced node implementation detection with improved pattern matching
- File Input Support: Added
--file/-foption to read endpoint lists from files (one URL per line) - Rich Integration: Beautiful progress bars with real-time completion tracking, elapsed time, and ETA
- Enhanced Tables: Modern rounded tables with color-coded values and professional styling
- Improved UX: Spinner animations, better visual feedback, and emoji icons for different sections
- Progress Tracking: Real-time progress bars for async scanning with completion rates and timing
- Better CLI: Enhanced verbose output with Rich console formatting and improved readability
- Bulk Scanning: Perfect for pentesting workflows - scan thousands of endpoints with visual progress
- Major Release: Migrated to Click CLI framework with modern interface
- Async Processing: Added async support for multiple endpoints with configurable concurrency
- Enhanced Output: Colored tables, improved formatting, and better error handling
- YAML Support: Added YAML output format alongside JSON and table formats
- PyPI Publication: Published to PyPI with easy
pip installand automated publishing - Documentation: Added comprehensive CLI documentation and usage examples
- Improved Parsing: Enhanced client version parsing with better language/OS detection
- Migrated to Click CLI framework with modern interface
- Added async processing for multiple endpoints
- Enhanced output formatting with colored tables
- Added YAML output support
- Published to PyPI with easy installation
- Added comprehensive CLI documentation
- Improved error handling and progress indication
- Added detailed client version parsing
- Enhanced security analysis with language/OS detection
- Improved method detection and categorization
- Better error handling and timeout management
- Initial release with basic fingerprinting
- Support for major Ethereum client implementations
- JSON export functionality
- Basic client version detection