Add figlet ascii art for funsies
This commit is contained in:
parent
88816a775d
commit
7cdf4bf1ae
1 changed files with 33 additions and 0 deletions
33
dnsenum.py
33
dnsenum.py
|
@ -1,6 +1,39 @@
|
|||
import dns.resolver
|
||||
import sys
|
||||
|
||||
#colors
|
||||
green = "\033[32m"
|
||||
cyan = "\033[36m"
|
||||
reset = "\033[39m"
|
||||
|
||||
|
||||
print(green + r"""
|
||||
|
||||
|
||||
|
||||
|
||||
,----,
|
||||
____ ,/ .`|
|
||||
.--.--. ,' , `. ,---,. ,` .' :
|
||||
/ / '. ,-+-,.' _ | ,' .' | ; ; /
|
||||
| : /`. / ,-+-. ; , ||,---.' |.'___,/ ,'
|
||||
; | |--` ,--.'|' | ;|| | .'| : |
|
||||
| : ;_ | | ,', | ':: : |-,; |.'; ;
|
||||
\ \ `. | | / | | ||: | ;/|`----' | |
|
||||
`----. \' | : | : |,| : .' ' : ;
|
||||
__ \ \ |; . | ; |--' | | |-, | | '
|
||||
/ /`--' /| : | | , ' : ;/| ' : |
|
||||
'--'. / | : ' |/ | | \ ; |.'
|
||||
`--'---' ; | |`-' | : .' '---'
|
||||
| ;/ | | ,'
|
||||
'---' `----'
|
||||
|
||||
|
||||
|
||||
"Simple DNS Enumeration Tool"
|
||||
|
||||
""" + reset)
|
||||
|
||||
dns_record_types = ['A', 'AAAA', 'NS', 'CNAME', 'MX', 'PTR', 'SOA', 'TXT']
|
||||
try:
|
||||
domain = sys.argv[1]
|
||||
|
|
Loading…
Reference in a new issue