-
Notifications
You must be signed in to change notification settings - Fork 24
/
2022-02-23_CobaltStrikeConfigs
1011 lines (957 loc) · 31.7 KB
/
2022-02-23_CobaltStrikeConfigs
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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
LIVE Cobalt Strike beacons
REF: https://twitter.com/1ZRR4H/status/1494732310058524685
Basic configs:
172.241.27.44 | C2 xaviliw.com | Watermark 0
172.241.27.52 | C2 ruhezepu.com | Watermark 1580103814
172.241.27.166 | C2 lanujefok.com | Watermark 1580103814
172.241.27.123 | C2 vafici.com | Watermark 1580103814
172.241.27.128 | C2 ragojel.com | Watermark 1580103814
172.241.27.198 | C2 sufebul.com | Watermark 1580103814
172.241.27.129 | C2 yipujufaj.com | Watermark 0
172.241.27.226 | C2 nagahox.com | Watermark 1580103814
172.241.27.189 | C2 fapezagi.com | Watermark 0
172.241.27.209 | C2 fajayesi.com | Watermark 0
172.241.27.98 | C2 hayutawewe.com | Watermark 0
172.241.27.214 | C2 lacamesabo.com | Watermark 1580103814
172.241.27.208 | C2 zizexa.com | Watermark 1580103814
172.241.29.19 | C2 xaluji.com | Watermark 1580103814
172.241.29.109 | C2 hewecas.com | Watermark 0
172.241.29.120 | C2 vigiwiwig.com | Watermark 1580103814
172.241.29.121 | C2 medalonig.com | Watermark 0
172.241.29.154 | C2 yaduvov.com | Watermark 1580103814
172.241.29.192 | C2 wayeyoy.com | Watermark 0
139.60.161.33 | C2 vipeklub.com | Watermark 0
139.60.161.24 | C2 gelmutol.com | Watermark 0
139.60.161.89 | C2 zeronyk.com | Watermark 0
139.60.161.99 | C2 nentundo.com | Watermark 0
139.60.161.215 | C2 migrdeb.com | Watermark 0
139.60.161.213 | C2 grizmit.com | Watermark 0
139.60.161.47 | C2 sbronm.com | Watermark 0
139.60.161.60 | C2 vedingumbr.com | Watermark 0
139.60.161.227 | C2 dorvolt.com | Watermark 0
139.60.161.69 | C2 bornometa.com | Watermark 0
139.60.161.229 | C2 germanzup.com | Watermark 0
172.93.201.57 | C2 jakelihegi.com | Watermark 1580103814
172.93.201.64 | C2 ledikexive.com | Watermark 1580103814
172.93.201.4 | C2 sawamini.com | Watermark 0
172.93.201.48 | C2 doracecut.com | Watermark 0
172.93.201.15 | C2 tavugasar.com | Watermark 0
172.93.201.95 | C2 vigiwiwig.com | Watermark 1580103814
172.93.201.122 | C2 tomezica.com | Watermark 0
172.93.201.190 | C2 sakapocaj.com | Watermark 0
23.108.57.39 | C2 yopole.com | Watermark 1580103814
23.108.57.109 | C2 vizezexog.com | Watermark 0
23.108.57.127 | C2 xekezix.com | Watermark 1580103814
23.108.57.134 | C2 jerurux.com | Watermark 1580103814
23.106.215.17 | C2 viyilonip.com | Watermark 0
23.106.215.85 | C2 pobovov.com | Watermark 1580103814
23.106.215.65 | C2 dehotuciti.com | Watermark 1580103814
23.106.215.241 | C2 kezuwof.com | Watermark 0
23.106.215.72 | C2 cigazux.com | Watermark 0
23.106.215.25 | C2 gecolipeco.com | Watermark 1580103814
23.106.215.97 | C2 higuni.com | Watermark 1580103814
Full configs:
####################################################
https://172.241.27.44
C2 Server: xaviliw.com (/rw)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202
HttpPostUri: /dz
SleepTime: 5000
MaxGetSize: 2796542
Jitter: 26
MaxDNS: Not Found
PublicKey MD5: e9ae865f5ce035176457188409f6020a
Malleable C2 Instructions: Remove 338 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.27.52
C2 Server: ruhezepu.com (/lv)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows Phone 10.0; Android 6.0.1; Microsoft; RM-1152) AppleWebKit/537.36 (KHTML, like Gecko)
HttpPostUri: /d_config
SleepTime: 5000
MaxGetSize: 2796804
Jitter: 23
MaxDNS: Not Found
PublicKey MD5: 30c3a49b1f7417ae46912fd688345802
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\mstsc.exe
Spawnto_x64: %windir%\sysnative\mstsc.exe
####################################################
https://172.241.27.166
C2 Server: lanujefok.com (/copyright)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (iPhone; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0
HttpPostUri: /ch
SleepTime: 5000
MaxGetSize: 1864736
Jitter: 22
MaxDNS: Not Found
PublicKey MD5: 374c7a5bfa0c7172dd5e294f323e78f0
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
Base64 URL-safe decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.27.123
C2 Server: vafici.com (/ba.js)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (iPhone; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0
HttpPostUri: /FAQ
SleepTime: 5000
MaxGetSize: 2797078
Jitter: 8
MaxDNS: Not Found
PublicKey MD5: a8bff98c789f609084be10dcc6e564c9
Malleable C2 Instructions: Remove 874 bytes from the beginning
Base64 decode
NetBIOS decode 'a'
Spawnto_x86: %windir%\syswow64\mstsc.exe
Spawnto_x64: %windir%\sysnative\mstsc.exe
####################################################
https://172.241.27.128
C2 Server: ragojel.com (/RELEASE)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9
HttpPostUri: /sitemap
SleepTime: 5000
MaxGetSize: 1864740
Jitter: 23
MaxDNS: Not Found
PublicKey MD5: 7863048c80cb32b195977ec72bcf7b51
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.27.198
C2 Server: sufebul.com (/en.js)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (iPhone; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0
HttpPostUri: /FAQ
SleepTime: 5000
MaxGetSize: 2797085
Jitter: 7
MaxDNS: Not Found
PublicKey MD5: f3b81a729b58e699e306e87bd53e13f1
Malleable C2 Instructions: Remove 881 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\mstsc.exe
Spawnto_x64: %windir%\sysnative\mstsc.exe
####################################################
https://172.241.27.129
C2 Server: yipujufaj.com (/ki)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246
HttpPostUri: /zh
SleepTime: 5000
MaxGetSize: 2796804
Jitter: 2
MaxDNS: Not Found
PublicKey MD5: 5495e103e78dd46fe92feaa1875a3ff4
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.27.226
C2 Server: nagahox.com (/logo)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows Phone 10.0; Android 6.0.1; Microsoft; RM-1152) AppleWebKit/537.36 (KHTML, like Gecko)
HttpPostUri: /hr
SleepTime: 5000
MaxGetSize: 1864740
Jitter: 7
MaxDNS: Not Found
PublicKey MD5: a750296ade42b1b09bd1e74dd302f3a8
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\mstsc.exe
Spawnto_x64: %windir%\sysnative\mstsc.exe
####################################################
https://172.241.27.189
C2 Server: fapezagi.com (/copyright.html)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246
HttpPostUri: /lt
SleepTime: 5000
MaxGetSize: 1398446
Jitter: 28
MaxDNS: Not Found
PublicKey MD5: e9ae865f5ce035176457188409f6020a
Malleable C2 Instructions: Remove 338 bytes from the beginning
Base64 decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.27.209
C2 Server: fajayesi.com (/ur.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202
HttpPostUri: /bm
SleepTime: 5000
MaxGetSize: 1865278
Jitter: 33
MaxDNS: Not Found
PublicKey MD5: e9ae865f5ce035176457188409f6020a
Malleable C2 Instructions: Remove 1142 bytes from the beginning
Base64 decode
Base64 URL-safe decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.27.98
C2 Server: hayutawewe.com (/us.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246
HttpPostUri: /skin
SleepTime: 5000
MaxGetSize: 1398989
Jitter: 46
MaxDNS: Not Found
PublicKey MD5: d352234f8b992d2167380f52394c6def
Malleable C2 Instructions: Remove 881 bytes from the beginning
Base64 decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.27.214
C2 Server: lacamesabo.com (/nd.html)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (iPhone; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0
HttpPostUri: /modcp
SleepTime: 5000
MaxGetSize: 1864478
Jitter: 29
MaxDNS: Not Found
PublicKey MD5: 298658e9311348b1c0074ecbab5dd653
Malleable C2 Instructions: Remove 338 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.27.208
C2 Server: zizexa.com (/ms)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202
HttpPostUri: /index
SleepTime: 5000
MaxGetSize: 2796542
Jitter: 22
MaxDNS: Not Found
PublicKey MD5: 124704c3a9db6dfe24653b11ff6f9727
Malleable C2 Instructions: Remove 338 bytes from the beginning
Base64 decode
NetBIOS decode 'a'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.29.19
C2 Server: xaluji.com (/ro)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202
HttpPostUri: /fam_cart
SleepTime: 5000
MaxGetSize: 1864740
Jitter: 38
MaxDNS: Not Found
PublicKey MD5: 28f5d51fe3f4bdfb984617c589efdbb3
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.29.109
C2 Server: hewecas.com (/mobile-android.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9
HttpPostUri: /da
SleepTime: 5000
MaxGetSize: 1865014
Jitter: 12
MaxDNS: Not Found
PublicKey MD5: e9ae865f5ce035176457188409f6020a
Malleable C2 Instructions: Remove 874 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.29.120
C2 Server: vigiwiwig.com (/favicon)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9
HttpPostUri: /search
SleepTime: 5000
MaxGetSize: 1864478
Jitter: 47
MaxDNS: Not Found
PublicKey MD5: d1fd349f9680ca318fd94aecc1c29cf2
Malleable C2 Instructions: Remove 338 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.29.121
C2 Server: medalonig.com (/xmlconnect)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36
HttpPostUri: /dz
SleepTime: 5000
MaxGetSize: 2796804
Jitter: 24
MaxDNS: Not Found
PublicKey MD5: e9ae865f5ce035176457188409f6020a
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.29.154
C2 Server: yaduvov.com (/fr)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 6.0; HTC One X10 Build/MRA58K; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0
HttpPostUri: /RELEASE_NOTES
SleepTime: 5000
MaxGetSize: 1398446
Jitter: 42
MaxDNS: Not Found
PublicKey MD5: cb93cf0a41936f3520d5330691936bc4
Malleable C2 Instructions: Remove 338 bytes from the beginning
Base64 decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.241.29.192
C2 Server: wayeyoy.com (/rw)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202
HttpPostUri: /posting
SleepTime: 5000
MaxGetSize: 1398708
Jitter: 26
MaxDNS: Not Found
PublicKey MD5: 1e8ea29058bf08e671595f049c95b69e
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\mstsc.exe
Spawnto_x64: %windir%\sysnative\mstsc.exe
####################################################
https://139.60.161.33
C2 Server: vipeklub.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: 5737609e5a8a72b4ee6701b41623c013
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://139.60.161.24
C2 Server: gelmutol.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: 1792468ef6a261bfae03e346d677bad4
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://139.60.161.89
C2 Server: zeronyk.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: d631e2656d8f4b6eddc782b30a22cab5
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://139.60.161.99
C2 Server: nentundo.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: ef9166c715db59009b6acd5382f89959
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://139.60.161.215
C2 Server: migrdeb.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: 39aa593b680c10fb865690fc5d6cd283
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://139.60.161.213
C2 Server: grizmit.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: 2d789f1371d889b671d4492ecb8da766
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://139.60.161.47
C2 Server: sbronm.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: 70a24c3ee15bdd939a0f78e43fb9a760
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://139.60.161.60
C2 Server: vedingumbr.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: a2df88cfe1d3cbd405a03a3d053214dc
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://139.60.161.227
C2 Server: dorvolt.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: af56d3245dce7078cfbb0936a6978661
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://139.60.161.69
C2 Server: bornometa.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: 1ea99b53955fccf29f96f4e2f367337f
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://139.60.161.229
C2 Server: germanzup.com (/jquery-3.3.1.min.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko
HttpPostUri: /jquery-3.3.2.min.js
SleepTime: 5000
MaxGetSize: 1403644
Jitter: 10
MaxDNS: Not Found
PublicKey MD5: ea7fa892c20f358e31404c8efe8138e2
Malleable C2 Instructions: Remove 1522 bytes from the end
Remove 84 bytes from the beginning
Remove 3931 bytes from the beginning
Base64 URL-safe decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\dllhost.exe
Spawnto_x64: %windir%\sysnative\dllhost.exe
####################################################
https://172.93.201.57
C2 Server: jakelihegi.com (/xmlconnect)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36
HttpPostUri: /es
SleepTime: 5000
MaxGetSize: 2796804
Jitter: 23
MaxDNS: Not Found
PublicKey MD5: 7cf8cb86d175ce9ca19bd56d068fb45b
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.93.201.64
C2 Server: ledikexive.com (/adminhtml.css)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows Phone 10.0; Android 6.0.1; Microsoft; RM-1152) AppleWebKit/537.36 (KHTML, like Gecko)
HttpPostUri: /ur
SleepTime: 5000
MaxGetSize: 2797971
Jitter: 31
MaxDNS: Not Found
PublicKey MD5: 20492a10d45ae7eca75dc2ac14d0d8a7
Malleable C2 Instructions: Remove 1767 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.93.201.4
C2 Server: sawamini.com (/faq.html)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 6.0; HTC One X10 Build/MRA58K; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0
HttpPostUri: /FAQ
SleepTime: 5000
MaxGetSize: 2796542
Jitter: 21
MaxDNS: Not Found
PublicKey MD5: c37c13d9afe626937af7c32f37dcd1d6
Malleable C2 Instructions: Remove 338 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.93.201.48
C2 Server: doracecut.com (/nd)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (iPhone; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0
HttpPostUri: /sq
SleepTime: 5000
MaxGetSize: 2796542
Jitter: 19
MaxDNS: Not Found
PublicKey MD5: e9ae865f5ce035176457188409f6020a
Malleable C2 Instructions: Remove 338 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.93.201.15
C2 Server: tavugasar.com (/admin.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 7.0; Pixel C Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0
HttpPostUri: /profile
SleepTime: 5000
MaxGetSize: 1865010
Jitter: 22
MaxDNS: Not Found
PublicKey MD5: aa7675fe7128b46226c7bbff79992f1b
Malleable C2 Instructions: Remove 874 bytes from the beginning
Base64 decode
Base64 URL-safe decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.93.201.95
C2 Server: vigiwiwig.com (/favicon)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9
HttpPostUri: /search
SleepTime: 5000
MaxGetSize: 1864478
Jitter: 47
MaxDNS: Not Found
PublicKey MD5: d1fd349f9680ca318fd94aecc1c29cf2
Malleable C2 Instructions: Remove 338 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.93.201.122
C2 Server: tomezica.com (/ml.css)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202
HttpPostUri: /admin
SleepTime: 5000
MaxGetSize: 2797971
Jitter: 26
MaxDNS: Not Found
PublicKey MD5: 253d7a8ed96654c2eb06e5764a08b65a
Malleable C2 Instructions: Remove 1767 bytes from the beginning
Base64 decode
NetBIOS decode 'a'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://172.93.201.190
C2 Server: sakapocaj.com (/mt)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (iPhone; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0
HttpPostUri: /groupcp
SleepTime: 5000
MaxGetSize: 2796804
Jitter: 7
MaxDNS: Not Found
PublicKey MD5: e9ae865f5ce035176457188409f6020a
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://23.108.57.39
C2 Server: yopole.com (/jp.html)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202
HttpPostUri: /favicon
SleepTime: 5000
MaxGetSize: 2796542
Jitter: 1
MaxDNS: Not Found
PublicKey MD5: 44e095dd8c394eb26a1a378d8b62062b
Malleable C2 Instructions: Remove 338 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://23.108.57.109
C2 Server: vizezexog.com (/lv.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202
HttpPostUri: /lu
SleepTime: 5000
MaxGetSize: 2797346
Jitter: 6
MaxDNS: Not Found
PublicKey MD5: e9ae865f5ce035176457188409f6020a
Malleable C2 Instructions: Remove 1142 bytes from the beginning
Base64 decode
NetBIOS decode 'a'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://23.108.57.127
C2 Server: xekezix.com (/lt)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36
HttpPostUri: /rw
SleepTime: 5000
MaxGetSize: 1398708
Jitter: 3
MaxDNS: Not Found
PublicKey MD5: bebda33eadf2e3ad1a39d3c551401809
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
XOR mask w/ random key
Spawnto_x86: %windir%\syswow64\mstsc.exe
Spawnto_x64: %windir%\sysnative\mstsc.exe
####################################################
https://23.108.57.134
C2 Server: jerurux.com (/na)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246
HttpPostUri: /xmlconnect
SleepTime: 5000
MaxGetSize: 2796804
Jitter: 8
MaxDNS: Not Found
PublicKey MD5: a5ffda83ce97d2a628c034700ae194ed
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
NetBIOS decode 'a'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://23.106.215.17/
C2 Server: viyilonip.com (/eso.css)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows Phone 10.0; Android 6.0.1; Microsoft; RM-1152) AppleWebKit/537.36 (KHTML, like Gecko)
HttpPostUri: /fam_newspaper
SleepTime: 5000
MaxGetSize: 1865121
Jitter: 24
MaxDNS: Not Found
PublicKey MD5: ae7af2c01665a50089234127fc38a27e
Malleable C2 Instructions: Remove 981 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://23.106.215.85/
C2 Server: pobovov.com (/media)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/601.3.9 (KHTML, like Gecko) Version/9.0.2 Safari/601.3.9
HttpPostUri: /link
SleepTime: 5000
MaxGetSize: 2796804
Jitter: 45
MaxDNS: Not Found
PublicKey MD5: 1a31f41c434c180c5aae7fe3e0c2f73e
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
NetBIOS decode 'A'
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://23.106.215.65/
C2 Server: dehotuciti.com (/templates)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202
HttpPostUri: /index
SleepTime: 5000
MaxGetSize: 1864740
Jitter: 44
MaxDNS: Not Found
PublicKey MD5: 9ed7b68318355725e4da19e04f53bf06
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://23.106.215.241/
C2 Server: kezuwof.com (/RELEASE)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246
HttpPostUri: /r_config
SleepTime: 5000
MaxGetSize: 1864740
Jitter: 4
MaxDNS: Not Found
PublicKey MD5: d1ff31db177ef4ab055cd24e17792f0e
Malleable C2 Instructions: Remove 600 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://23.106.215.72/
C2 Server: cigazux.com (/copyright.js)
Watermark: 0
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202
HttpPostUri: /ak
SleepTime: 5000
MaxGetSize: 1865017
Jitter: 29
MaxDNS: Not Found
PublicKey MD5: e9ae865f5ce035176457188409f6020a
Malleable C2 Instructions: Remove 881 bytes from the beginning
Base64 decode
Base64 URL-safe decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://23.106.215.25/
C2 Server: gecolipeco.com (/RELEASE.css)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 7.0; Pixel C Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0
HttpPostUri: /link
SleepTime: 5000
MaxGetSize: 1865121
Jitter: 31
MaxDNS: Not Found
PublicKey MD5: 45e8711b85ed0a5be033354b68c5c531
Malleable C2 Instructions: Remove 981 bytes from the beginning
Base64 decode
Base64 decode
Spawnto_x86: %windir%\syswow64\rundll32.exe
Spawnto_x64: %windir%\sysnative\rundll32.exe
####################################################
https://23.106.215.97/
C2 Server: higuni.com (/nv.css)
Watermark: 1580103814
BeaconType: HTTPS
Port: 443
UserAgent: Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202