-
Notifications
You must be signed in to change notification settings - Fork 15
/
main.py
240 lines (104 loc) · 4.27 KB
/
main.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
import os
import thread
import threading
import time
import cmd
import commands
#from update import Updater
'''
Nohidy is a free software you could redistribute it and/or modify it under the terms of the
GNU General Public License as published by the Free Software Foundation either version 3.0 of the License or any later version.
Nohidy is free of charge but we accept donations(it would help if you donated both
to flipchan and the Free Software Foundation).
Nohidy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY :
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE see the GNU General Public License along with Nohidy. if not see <http://www.gnu.org/licenses>.
__author__ = "Filip kalebo"
__copyright__ = "Free Software Foundation"
__license__ = "GPL"
__version__ = "3.0"
__maintainer__ = "Filip kalebo"
__email__ = "flipchan@riseup.net"
__status__ = "still in developing"
'''
#botnetdorks find out what botnet i am apart of
print""
print "Welcome nohidy auditing system for windows,unix and linux auditing and managment"
print ""
print " ~~~~~~~~~~Coded by flipchan~~~~~~~~~~"
print " Nohidy version 1.3"
print " this version is in command line interface, gui is coming soon! "
print""
#print"bs text"
#def check():
# bstest =raw_input("sssdfsdfsdf: ")
# print"bs"
#except KeyboardInterrupt:
# print "\n\nC " + bcolors.RED+"ya" + bcolors.ENDC+" next time cowboy.\n"
#bcolors.RED for flipchan
#temperature
#this toolkit is so u can check ur servers quick then go n do fun stuff like code^^
print ""
print "I am Nohidy coded by flipchan here to serve you master"
print ""
print "Select from the meny:"
print "1 to see my connections "#traceing zeus botnet comming soon
print "2 log file managment/rootkitfinding"
print "3 configuring PuTTY for win and send a copy of the log file to your email"
print "4 launch linux firewall to block ports"#gufw
print "5 for port look up test"#portiinng
print "6 for tracing ip"#whois
print "7 for packet sniffing/arp poisoning (still in beta testing not 100%working)"
print "8 for extra trix for the little extra"
print "9 find shells and botnets, if u think u r in a botnet find out what botnet!"
print "10 update me"
print "11 for Help,donateing and About"
print "12 for honeypots"
print "13 stop the network card now! "
print ""
def main():
picaprogramtorun =raw_input("What do you want me to do master?: ")
print""
if picaprogramtorun=="1":
print "viewing your connections"
os.system("python yowhoisonemysystem.py")
if picaprogramtorun=="2":
print "Goin to log file managments and rootkit finding"
os.system("python unix-linuxlogs.py")
if picaprogramtorun=="3":
print "Config Putty for windows and sending a copie of "
os.system("python gmailsmtp.py")
if picaprogramtorun=="4":
print "Launching Linux firewall master"
os.system("python linuxfirewall.py")
if picaprogramtorun=="5":
print "Launching portlookup tool"
os.system("cd ports && python portinggg.py")
if picaprogramtorun=="6":
print "Traceing ip address of attacker!"
os.system("python lookuptest.py")
if picaprogramtorun=="7":
print "starting packet sniffing/arp spoofing"
os.system("python arp.py")
if picaprogramtorun=="8":
print "opening trix folder master"
opentrix =os.system("gnome-open trix")
#change botnet dorks
if picaprogramtorun=="9":
print "Time to find shells and botnets master"
os.system("python findattackrkit.py")
if picaprogramtorun=="10":
print "checking for updates master"
os.system("python update.py")
if picaprogramtorun=="11":
print "Getting help master"
openhelp = os.system("gnome-open Help")
#if openhelp==False
if picaprogramtorun=="12":
print"running honeypot installer"
os.system("python honeypotinstaller.py")
if picaprogramtorun=="13":
print"stopping the network card"
os.system("bash stop.sh")
return
main()