-
Notifications
You must be signed in to change notification settings - Fork 9
/
SURVEY.py
executable file
·98 lines (70 loc) · 2.9 KB
/
SURVEY.py
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
88
89
90
91
92
93
94
95
96
97
#! /usr/bin/env python
# WiFi Auditing Tool Survey
# WiFi and Network Scanning Tools
from Tkinter import *
import subprocess
window = Tk()
window.title ( 'WHAT Survey v1.0' )
WINDOW_SIZE = "600x400"
img = PhotoImage( file = '/root/WHAT-PRO/Wifi_Logo.gif' )
small_img = PhotoImage.subsample( img , x = 4 , y = 4 )
label = Label( window , image = small_img , bg = 'red')
label.grid(row=0,column=0)
btn_end = Button( window , text = 'Close' , command=exit )
btn_end.grid(row=10,column=0)
def runShellScript5():
import subprocess
subprocess.call(['/root/WHAT-PRO/./AIRODUMP-SCAN-LAUNCH.sh'])
btn_scn = Button( window , text = 'Start WiFi Survey' , command=runShellScript5 , width = 15 )
btn_scn.grid(row=1,column=0 )
def runShellScript6():
import subprocess
subprocess.call(['/root/WHAT-PRO/./WASH-SCAN-LAUNCH.sh'])
btn_pcp = Button( window , text = 'WPS Survey' , command=runShellScript6 , width = 15 )
btn_pcp.grid(row=3,column=0)
def runShellScript7():
import subprocess
subprocess.call(['/root/WHAT-PRO/./NMAP-SCAN-LAUNCH.sh'])
btn_pcp = Button( window , text = 'NMAP' , command=runShellScript7 , width = 15 )
btn_pcp.grid(row=4,column=0)
def runShellScript3():
import subprocess
subprocess.call(['/root/WHAT/./AIRODUMP-PCAP-LAUNCH.sh'])
btn_ovp = Button( window , text = 'WiFi Survey (PCAP)' , command=runShellScript3 , width = 15 )
btn_ovp.grid(row=2,column=0)
#def runShellScript4():
# import subprocess
# subprocess.call(['/root/WHAT/./FOLDERS-LAUNCH.sh'])
#btn_dad = Button( window , text = 'Admin' , command=runShellScript4 , width = 15 )
#btn_dad.grid(row=1,column=4)
#def runShellScript5():
# import subprocess
# subprocess.call(['/root/WHAT/./DEAUTH-CLIENT-LAUNCH.sh'])
#btn_dac = Button( window , text = 'WiFi AP-Client Deauth' , #command=runShellScript5 , width = 15 )
#btn_dac.grid(row=3,column=0)
#def runShellScript6():
# import subprocess
# subprocess.call(['/root/WHAT/./DB-LAUNCH.sh'])
#btn_db = Button( window , text = 'Move files to DB' , #command=runShellScript6 , width = 15 )
#btn_db.grid(row=3,column=5)
#def runShellScript7():
# import subprocess
# subprocess.call(['/root/WHAT/./WIPE-CREATE-LAUNCH.sh'])
#btn_dad = Button( window , text = 'Renew Storage' , command=runShellScript7 , width = 15 )
#btn_dad.grid(row=4,column=5)
#def runShellScript8():
# import subprocess
# subprocess.call(['/root/WHAT/./WIFI-BOOST.sh'])
#btn_dad = Button( window , text = 'Card Power Boost' , command=runShellScript8 , width = 15 )
#btn_dad.grid(row=2,column=3)
#def runShellScript9():
# import subprocess
# subprocess.call(['/root/WHAT/./ISNIFF-LAUNCH.sh'])
#btn_isn = Button( window , text = 'Start iSniff' , command=runShellScript9 , width = 15 )
#btn_isn.grid(row=3,column=3)
#def runShellScript10():
# import subprocess
# subprocess.call(['/root/WHAT/./LOCNOGPS-LAUNCH.sh'])
#btn_loc = Button( window , text = 'Start loc-nogps' , command=runShellScript10 , width = 15 )
#btn_loc.grid(row=4,column=3)
window.mainloop()