Listen to this Post
Luke (hakluke) Stephens, Founder/CEO at Haksec and HackerContent, has developed several powerful hacking tools for reconnaissance, bug bounty hunting, and web application security. Below are the tools along with their GitHub links:
- hakrawler β A fast web crawler for discovering endpoints and assets.
π https://lnkd.in/gwseKUR -
hakip2host β Finds hostnames associated with IP addresses.
π https://lnkd.in/gNuAWziV -
hakoriginfinder β Bypasses WAFs using the Levenshtein algorithm to uncover origin hosts.
π https://lnkd.in/gB_ptaxD -
haktrails β Command-line client for SecurityTrails (bug bounty recon).
π https://lnkd.in/gJnZk9JM -
hakcheckurls β Checks HTTP response codes for a list of URLs.
π https://lnkd.in/gKvKunFS
6. hakjoke β Fetches jokes from icanhazdadjoke.com.
- hakfindinternaldomains β Identifies hostnames resolving to internal IPs (useful for SSRF).
π https://lnkd.in/gwekaNKV -
haklistgen β Converts unstructured data into brute-force wordlists.
π https://lnkd.in/gKRzCk8R -
hakurlencode β URL encodes/decodes from the command line.
π https://lnkd.in/g6i9XRW6 -
hakcertstream β Monitors new SSL certificate registrations via CLI.
π https://github.com/hakluke/hakcertstream
You Should Know:
Practical Usage of These Tools
1. hakrawler β Fast Web Crawling
echo "https://example.com" | hakrawler -subs -d 2
– Crawls `example.com` including subdomains (-subs) with depth 2 (-d 2).
2. hakip2host β Reverse IP Lookup
hakip2host -ip 8.8.8.8
– Finds all hostnames associated with Googleβs DNS (8.8.8.8).
3. hakoriginfinder β Bypassing WAFs
hakoriginfinder -url https://target.com
– Helps identify origin servers behind Cloudflare or other WAFs.
4. haktrails β SecurityTrails CLI
haktrails -domain example.com -subdomains
– Retrieves subdomains of `example.com` via SecurityTrails API.
5. hakcheckurls β HTTP Status Checker
cat urls.txt | hakcheckurls -threads 20
– Checks HTTP responses for URLs in `urls.txt` with 20 threads.
6. hakfindinternaldomains β SSRF Helper
hakfindinternaldomains -list domains.txt
– Detects internal IP resolutions in domains.txt.
7. haklistgen β Wordlist Generator
cat data.txt | haklistgen -min 5 -max 12 > wordlist.txt
– Creates a wordlist from `data.txt` with words between 5-12 chars.
8. hakurlencode β Quick URL Encoding
echo "name=test&value=123" | hakurlencode
– Outputs name%3Dtest%26value%3D123.
9. hakcertstream β SSL Monitoring
hakcertstream -domains "example.com"
– Alerts on new SSL certs for example.com.
What Undercode Say:
These tools are essential for penetration testers, bug bounty hunters, and cybersecurity professionals. Automating reconnaissance with `hakrawler` and `haktrails` can save hours, while `hakoriginfinder` helps bypass security measures. Always use these ethicallyβunauthorized testing is illegal.
For further learning:
Expected Output:
hakrawler -url https://example.com -subs | tee crawled_urls.txt
References:
Reported By: Hakluke Github – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass β



