| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
DNS Enumeration & Reconnaissance Tool
High-performance DNS enumeration tool written in Go, demonstrating:
git clone https://github.com/bad-antics/nullsec-dnsenum.git
cd nullsec-dnsenum
go build -o dnsenum dnsenum.go# Basic enumeration
./dnsenum -d example.com
# With custom wordlist
./dnsenum -d example.com -w subdomains.txt
# High concurrency
./dnsenum -d example.com -c 100
# JSON output
./dnsenum -d example.com -j
# Save results
./dnsenum -d example.com -o results.json╔══════════════════════════════════════════════════════════════════╗
║ NullSec DNSEnum - DNS Reconnaissance Tool ║
╚══════════════════════════════════════════════════════════════════╝
Target: example.com
Workers: 50 | Timeout: 3s
=== Domain: example.com ===
A Records:
93.184.216.34
MX Records:
[10] mail.example.com
NS Records:
ns1.example.com
ns2.example.com
Subdomains Found: 12
[+] www.example.com
A: 93.184.216.34
[+] mail.example.com
A: 93.184.216.35
[+] api.example.com
A: 93.184.216.40
CNAME: api-lb.example.com
─────────────────────────────────────────
Checked: 100 | Found: 12 | Duration: 2.4s
MIT License
| Back | FazBrowse Home | New Git URL |