Advertisement
xe1phix

Xe1phix-[DNSRecon]-Cheatsheet.sh

Oct 6th, 2022 (edited)
777
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.31 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. ## -------------------------------------------------------------------------------------------------------------- ##
  4.         dnsrecon -t rvs -i 192.1.1.1,192.1.1.20             ## Reverse lookup for IP range:
  5. ## -------------------------------------------------------------------------------------------------------------- ##
  6.         dnsrecon -t std -d $Domain.com                      ## Retrieve standard DNS records:
  7. ## -------------------------------------------------------------------------------------------------------------- ##
  8.         dnsrecon -t brt -d $Domain.com -w hosts.txt         ## Enumerate subdornains:
  9. ## -------------------------------------------------------------------------------------------------------------- ##
  10.         dnsrecon -d $Domain.com -t axfr                     ## DNS zone transfer:
  11. ## -------------------------------------------------------------------------------------------------------------- ##
  12.         dnsrecon --type snoop -n $Server -D $Dict           ## Cache Snooping
  13. ## -------------------------------------------------------------------------------------------------------------- ##
  14.         dnsrecon -d $Host -t zonewalk                       ## Zone Walking
  15. ## -------------------------------------------------------------------------------------------------------------- ##
  16.  
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement