Parameth
Parameter discovery tool
Recon & OSINT8 commands
#parameter#discovery#recon#python
Installation
1Clone the repository
2Install Python dependencies
3Verify installation
# Clone the repository
git clone https://github.com/K0p1-Git/Parameth.git
cd Parameth
# Install dependencies
pip install -r requirements.txt
# Verify
python3 parameth.py -hBasic Usage
Discover hidden parameters on web endpoints
# Basic parameter discovery
python3 parameth.py -u https://example.com
# With custom wordlist
python3 parameth.py -u https://example.com -w params.txt
# POST method with data
python3 parameth.py -u https://example.com/api -m POST
# With cookies for authenticated scanning
python3 parameth.py -u https://example.com -c "session=abc123"Command Reference
8 commands
1Target URL
-u2Custom wordlist file
-w3HTTP method (GET/POST)
-m4Cookies for authentication
-c5Proxy URL
-p6Number of threads
-t7POST data body
-d8Custom headers
-HWhen to Use
1
Finding hidden GET/POST parameters2
API parameter enumeration3
Pre-exploitation reconnaissance4
Web application security testing5
Bug bounty parameter discoveryNotes & Tips
1
Uses a large built-in wordlist for parameter brute-forcing2
Supports both GET and POST method scanning3
Can be used with custom headers and authentication4
Results show potential parameters with response differences5
Python 3 requiredCommon Errors & Solutions
ModuleNotFoundError
Run: pip install -r requirements.txt
No parameters found
Try a larger wordlist or check if the target is accessible
Connection timeout
Reduce thread count with -t or check network connectivity