-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmain.py
More file actions
51 lines (44 loc) · 1.82 KB
/
main.py
File metadata and controls
51 lines (44 loc) · 1.82 KB
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
import os
from platform import system
red = '\033[91m'
green = '\033[92m'
white = '\033[00m'
os.system('cls' if os.name == 'nt' else 'clear')
logo = '''
______ ___________ _ _
| ___ \ |_ _| ___ \ | | | |
| |_/ /_____ _____ _ __ ___ ___ | | | |_/ / | | ___ ___ | | ___ _ _ __
| // _ \ \ / / _ \ '__/ __|/ _ \ | | | __/ | | / _ \ / _ \| |/ / | | | '_ \
| |\ \ __/\ V / __/ | \__ \ __/ _| |_| | | |___| (_) | (_) | <| |_| | |_) |
\_| \_\___| \_/ \___|_| |___/\___| \___/\_| \_____/\___/ \___/|_|\_\\__,_| .__/
| |
|_|
Reverse IP Lookup By Mister Spy , Done better then perfect
--------------------------------------------------------------
- 1) Remove Duplicated Lines
- 2) Get Ips From Domains
- 3) Live Ip Checker
- 4) Range List ips 1 - 255
- 5) zone-h grabber
- 6) Mass Reverse Ip Unlimited
----------------------------------------------------------------
'''
print red + logo + white
choice = raw_input('Enter Your Choice : ')
if choice == '1':
from Scripts import dup
elif choice == '2':
from Scripts import ipfromdomain
elif choice == '3':
from Scripts import liveip
elif choice == '4':
from Scripts import ranger
elif choice == '5':
from Scripts import zone
elif choice == '6':
if system() == 'Linux':
os.system("chmod +x viewdns.py && python viewdns.py")
if system() == 'Windows':
os.system('viewdns.py')
else:
print 'Wrong Choice Contact : https://www.facebook.com/007MrSpy'