-
-
Notifications
You must be signed in to change notification settings - Fork 340
/
dog
87 lines (73 loc) · 2.12 KB
/
dog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env python3
import sys
import requests
import argparse
from core.hq import hq
from core.extractor import extractor
from core.colors import white, green, end, red, yellow, run
parser = argparse.ArgumentParser()
parser.add_argument('-t', help='target', dest='target')
parser.add_argument('-c', help='choice', dest='choice')
parser.add_argument('--domains', help='stdin type: domain', dest='domains', action='store_true')
parser.add_argument('--ips', help='stdin type: ip', dest='ips', action='store_true')
args = parser.parse_args()
ips = args.ips
target = args.target
choice = args.choice
domains = args.domains
data = False
if ips or domains:
data = sys.stdin.readlines()
arged = False
if target and choice:
arged = True
if sys.version_info < (3, 0):
input = raw_input
def banner():
print ('''%s
_____ ____
| __ |___ ___ ___ ___ %s|\_/|%s | \ ___ ___
| -| -_| _| . | | %s|. .|%s | | | . | . |
|__|__|___|___|___|_|_| %s \_/ %s |____/|___|_ |
|___| v2.0%s''' % (white, red, white, red, white, red, white, end))
def menu():
print('''
%s1.%s Censys
%s2.%s NS lookup
%s3.%s Port scan
%s4.%s Detect CMS
%s5.%s Whois lookup
%s6.%s Detect honeypot
%s7.%s Find subdomains
%s8.%s Reverse IP lookup
%s9.%s Detect technologies
%s0.%s All''' % (white, end, white, end, white, end, white, end, white, end, white, end, white, end, white, end, white, end, white, end))
def dog(choice, target):
if not args.target:
banner()
if arged:
hq(choice, target)
else:
while True:
menu()
result = False
choice = input('\033[1;91m>>\033[0m ')
hq(choice)
if data:
kind = 'domain'
if ips:
kind = 'ip'
targets = extractor(data, kind)
if choice:
for target in targets:
print ('%s %s' % (run, target))
hq(choice, target)
print (red + ('-' * 60) + end)
else:
for target in targets:
sys.stdout.write(target + '\n')
else:
try:
dog(choice, target)
except KeyboardInterrupt:
quit('')