-
Notifications
You must be signed in to change notification settings - Fork 1
/
TOOLKIT_Redteam_Tools_by_GUID.yar
3596 lines (3313 loc) · 138 KB
/
TOOLKIT_Redteam_Tools_by_GUID.yar
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
/*
This Yara ruleset is under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or
organization, as long as you use it under this license.
*/
// These rules have room for false positives if e.g. a dual use tool is contained within a hack tool repo.
// Could also be done with https://yara.readthedocs.io/en/stable/modules/dotnet.html#c.typelib but that needs an extra module.
rule HKTL_NET_GUID_CSharpSetThreadContext {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/djhohnstein/CSharpSetThreadContext"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "a1e28c8c-b3bd-44de-85b9-8aa7c18a714d" ascii nocase wide
$typelibguid1 = "87c5970e-0c77-4182-afe2-3fe96f785ebb" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_DLL_Injection {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/ihack4falafel/DLL-Injection"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "3d7e1433-f81a-428a-934f-7cc7fcf1149d" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_LimeUSB_Csharp {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/NYAN-x-CAT/LimeUSB-Csharp"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "94ea43ab-7878-4048-a64e-2b21b3b4366d" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Ladon {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/k8gege/Ladon"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "c335405f-5df2-4c7d-9b53-d65adfbed412" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_WhiteListEvasion {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/khr0x40sh/WhiteListEvasion"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "858386df-4656-4a1e-94b7-47f6aa555658" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Lime_Downloader {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/NYAN-x-CAT/Lime-Downloader"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "ec7afd4c-fbc4-47c1-99aa-6ebb05094173" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_DarkEye {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/K1ngSoul/DarkEye"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "0bdb9c65-14ed-4205-ab0c-ea2151866a7f" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SharpKatz {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/b4rtik/SharpKatz"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "8568b4c1-2940-4f6c-bf4e-4383ef268be9" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_ExternalC2 {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/ryhanson/ExternalC2"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "7266acbb-b10d-4873-9b99-12d2043b1d4e" ascii nocase wide
$typelibguid1 = "5d9515d0-df67-40ed-a6b2-6619620ef0ef" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Povlsomware {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/povlteksttv/Povlsomware"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "fe0d5aa7-538f-42f6-9ece-b141560f7781" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_RunShellcode {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/zerosum0x0/RunShellcode"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "a3ec18a3-674c-4131-a7f5-acbed034b819" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SharpLoginPrompt {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/shantanu561993/SharpLoginPrompt"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "c12e69cd-78a0-4960-af7e-88cbd794af97" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Adamantium_Thief {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/LimerBoy/Adamantium-Thief"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "e6104bc9-fea9-4ee9-b919-28156c1f2ede" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_PSByPassCLM {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/padovah4ck/PSByPassCLM"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "46034038-0113-4d75-81fd-eb3b483f2662" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_physmem2profit {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/FSecureLABS/physmem2profit"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "814708c9-2320-42d2-a45f-31e42da06a94" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_NoAmci {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/med0x2e/NoAmci"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "352e80ec-72a5-4aa6-aabe-4f9a20393e8e" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SharpBlock {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/CCob/SharpBlock"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "3cf25e04-27e4-4d19-945e-dadc37c81152" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_nopowershell {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/bitsadmin/nopowershell"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "555ad0ac-1fdb-4016-8257-170a74cb2f55" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_LimeLogger {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/NYAN-x-CAT/LimeLogger"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "068d14ef-f0a1-4f9d-8e27-58b4317830c6" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_AggressorScripts {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/harleyQu1nn/AggressorScripts"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "afd1ff09-2632-4087-a30c-43591f32e4e8" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Gopher {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/EncodeGroup/Gopher"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "b5152683-2514-49ce-9aca-1bc43df1e234" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_AVIator {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/Ch0pin/AVIator"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "4885a4a3-4dfa-486c-b378-ae94a221661a" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_njCrypter {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/0xPh0enix/njCrypter"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "8a87b003-4b43-467b-a509-0c8be05bf5a5" ascii nocase wide
$typelibguid1 = "80b13bff-24a5-4193-8e51-c62a414060ec" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SharpMiniDump {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/b4rtik/SharpMiniDump"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "6ffccf81-6c3c-4d3f-b15f-35a86d0b497f" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_CinaRAT {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/wearelegal/CinaRAT"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "8586f5b1-2ef4-4f35-bd45-c6206fdc0ebc" ascii nocase wide
$typelibguid1 = "fe184ab5-f153-4179-9bf5-50523987cf1f" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_ToxicEye {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/LimerBoy/ToxicEye"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "1bcfe538-14f4-4beb-9a3f-3f9472794902" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Disable_Windows_Defender {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/NYAN-x-CAT/Disable-Windows-Defender"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "501e3fdc-575d-492e-90bc-703fb6280ee2" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_DInvoke_PoC {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/dtrizna/DInvoke_PoC"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "5a869ab2-291a-49e6-a1b7-0d0f051bef0e" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_ReverseShell {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/chango77747/ReverseShell"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "980109e4-c988-47f9-b2b3-88d63fababdc" ascii nocase wide
$typelibguid1 = "8abe8da1-457e-4933-a40d-0958c8925985" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SharpC2 {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/SharpC2/SharpC2"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "62b9ee4f-1436-4098-9bc1-dd61b42d8b81" ascii nocase wide
$typelibguid1 = "d2f17a91-eb2d-4373-90bf-a26e46c68f76" ascii nocase wide
$typelibguid2 = "a9db9fcc-7502-42cd-81ec-3cd66f511346" ascii nocase wide
$typelibguid3 = "ca6cc2ee-75fd-4f00-b687-917fa55a4fae" ascii nocase wide
$typelibguid4 = "a1167b68-446b-4c0c-a8b8-2a7278b67511" ascii nocase wide
$typelibguid5 = "4d8c2a88-1da5-4abe-8995-6606473d7cf1" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SneakyExec {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/HackingThings/SneakyExec"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "612590aa-af68-41e6-8ce2-e831f7fe4ccc" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_UrbanBishopLocal {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/slyd0g/UrbanBishopLocal"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "88b8515e-a0e8-4208-a9a0-34b01d7ba533" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SharpShell {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/cobbr/SharpShell"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "bdba47c5-e823-4404-91d0-7f6561279525" ascii nocase wide
$typelibguid1 = "b84548dc-d926-4b39-8293-fa0bdef34d49" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_EvilWMIProvider {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/sunnyc7/EvilWMIProvider"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "a4020626-f1ec-4012-8b17-a2c8a0204a4b" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_GadgetToJScript {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/med0x2e/GadgetToJScript"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "af9c62a1-f8d2-4be0-b019-0a7873e81ea9" ascii nocase wide
$typelibguid1 = "b2b3adb0-1669-4b94-86cb-6dd682ddbea3" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_AzureCLI_Extractor {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/0x09AL/AzureCLI-Extractor"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "a73cad74-f8d6-43e6-9a4c-b87832cdeace" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_UAC_Escaper {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/NYAN-x-CAT/UAC-Escaper"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "95359279-5cfa-46f6-b400-e80542a7336a" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_HTTPSBeaconShell {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/limbenjamin/HTTPSBeaconShell"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "aca853dc-9e74-4175-8170-e85372d5f2a9" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_AmsiScanBufferBypass {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/rasta-mouse/AmsiScanBufferBypass"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "431ef2d9-5cca-41d3-87ba-c7f5e4582dd2" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_ShellcodeLoader {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/Hzllaga/ShellcodeLoader"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "a48fe0e1-30de-46a6-985a-3f2de3c8ac96" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_KeystrokeAPI {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/fabriciorissetto/KeystrokeAPI"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "f6fec17e-e22d-4149-a8a8-9f64c3c905d3" ascii nocase wide
$typelibguid1 = "b7aa4e23-39a4-49d5-859a-083c789bfea2" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_ShellCodeRunner {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/antman1p/ShellCodeRunner"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "634874b7-bf85-400c-82f0-7f3b4659549a" ascii nocase wide
$typelibguid1 = "2f9c3053-077f-45f2-b207-87c3c7b8f054" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_OffensiveCSharp {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/diljith369/OffensiveCSharp"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "6c3fbc65-b673-40f0-b1ac-20636df01a85" ascii nocase wide
$typelibguid1 = "2bad9d69-ada9-4f1e-b838-9567e1503e93" ascii nocase wide
$typelibguid2 = "512015de-a70f-4887-8eae-e500fd2898ab" ascii nocase wide
$typelibguid3 = "1ee4188c-24ac-4478-b892-36b1029a13b3" ascii nocase wide
$typelibguid4 = "5c6b7361-f9ab-41dc-bfa0-ed5d4b0032a8" ascii nocase wide
$typelibguid5 = "048a6559-d4d3-4ad8-af0f-b7f72b212e90" ascii nocase wide
$typelibguid6 = "3412fbe9-19d3-41d8-9ad2-6461fcb394dc" ascii nocase wide
$typelibguid7 = "9ea4e0dc-9723-4d93-85bb-a4fcab0ad210" ascii nocase wide
$typelibguid8 = "6d2b239c-ba1e-43ec-8334-d67d52b77181" ascii nocase wide
$typelibguid9 = "42e8b9e1-0cf4-46ae-b573-9d0563e41238" ascii nocase wide
$typelibguid10 = "0d15e0e3-bcfd-4a85-adcd-0e751dab4dd6" ascii nocase wide
$typelibguid11 = "644dfd1a-fda5-4948-83c2-8d3b5eda143a" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SHAPESHIFTER {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/matterpreter/SHAPESHIFTER"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "a3ddfcaa-66e7-44fd-ad48-9d80d1651228" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Evasor {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/cyberark/Evasor"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "1c8849ef-ad09-4727-bf81-1f777bd1aef8" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Stracciatella {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/mgeeky/Stracciatella"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "eaafa0ac-e464-4fc4-9713-48aa9a6716fb" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_logger {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/xxczaki/logger"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "9e92a883-3c8b-4572-a73e-bb3e61cfdc16" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Internal_Monologue {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/eladshamir/Internal-Monologue"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "0c0333db-8f00-4b68-b1db-18a9cacc1486" ascii nocase wide
$typelibguid1 = "84701ace-c584-4886-a3cf-76c57f6e801a" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_GRAT2 {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/r3nhat/GRAT2"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "5e7fce78-1977-444f-a18e-987d708a2cff" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_PowerShdll {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/p3nt4/PowerShdll"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "36ebf9aa-2f37-4f1d-a2f1-f2a45deeaf21" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_CsharpAmsiBypass {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/WayneJLee/CsharpAmsiBypass"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "4ab3b95d-373c-4197-8ee3-fe0fa66ca122" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_HastySeries {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/obscuritylabs/HastySeries"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "8435531d-675c-4270-85bf-60db7653bcf6" ascii nocase wide
$typelibguid1 = "47db989f-7e33-4e6b-a4a5-c392b429264b" ascii nocase wide
$typelibguid2 = "300c7489-a05f-4035-8826-261fa449dd96" ascii nocase wide
$typelibguid3 = "41bf8781-ae04-4d80-b38d-707584bf796b" ascii nocase wide
$typelibguid4 = "620ed459-18de-4359-bfb0-6d0c4841b6f6" ascii nocase wide
$typelibguid5 = "91e7cdfe-0945-45a7-9eaa-0933afe381f2" ascii nocase wide
$typelibguid6 = "c28e121a-60ca-4c21-af4b-93eb237b882f" ascii nocase wide
$typelibguid7 = "698fac7a-bff1-4c24-b2c3-173a6aae15bf" ascii nocase wide
$typelibguid8 = "63a40d94-5318-42ad-a573-e3a1c1284c57" ascii nocase wide
$typelibguid9 = "56b8311b-04b8-4e57-bb58-d62adc0d2e68" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_DreamProtectorFree {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/Paskowsky/DreamProtectorFree"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "f7e8a902-2378-426a-bfa5-6b14c4b40aa3" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_RedSharp {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/padovah4ck/RedSharp"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "30b2e0cf-34dd-4614-a5ca-6578fb684aea" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_ESC {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/NetSPI/ESC"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "06260ce5-61f4-4b81-ad83-7d01c3b37921" ascii nocase wide
$typelibguid1 = "87fc7ede-4dae-4f00-ac77-9c40803e8248" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Csharp_Loader {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/NYAN-x-CAT/Csharp-Loader"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "5fd7f9fc-0618-4dde-a6a0-9faefe96c8a1" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_bantam {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/gellin/bantam"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "14c79bda-2ce6-424d-bd49-4f8d68630b7b" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SharpTask {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/jnqpblc/SharpTask"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "13e90a4d-bf7a-4d5a-9979-8b113e3166be" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_WindowsPlague {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/RITRedteam/WindowsPlague"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "cdf8b024-70c9-413a-ade3-846a43845e99" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Misc_CSharp {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/jnqpblc/Misc-CSharp"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "d1421ba3-c60b-42a0-98f9-92ba4e653f3d" ascii nocase wide
$typelibguid1 = "2afac0dd-f46f-4f95-8a93-dc17b4f9a3a1" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SharpSpray {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/jnqpblc/SharpSpray"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "51c6e016-1428-441d-82e9-bb0eb599bbc8" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Obfuscator {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/3xpl01tc0d3r/Obfuscator"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "8fe5b811-a2cb-417f-af93-6a3cf6650af1" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SafetyKatz {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/GhostPack/SafetyKatz"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "8347e81b-89fc-42a9-b22c-f59a6a572dec" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Dropless_Malware {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/NYAN-x-CAT/Dropless-Malware"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "23b739f7-2355-491e-a7cd-a8485d39d6d6" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_UAC_SilentClean {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/EncodeGroup/UAC-SilentClean"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "948152a4-a4a1-4260-a224-204255bfee72" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_DesktopGrabber {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/NYAN-x-CAT/DesktopGrabber"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "e6aa0cd5-9537-47a0-8c85-1fbe284a4380" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_wsManager {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/guillaC/wsManager"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "9480809e-5472-44f3-b076-dcdf7379e766" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_UglyEXe {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/fashionproof/UglyEXe"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "233de44b-4ec1-475d-a7d6-16da48d6fc8d" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SharpDump {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/GhostPack/SharpDump"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "79c9bba3-a0ea-431c-866c-77004802d8a0" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_EducationalRAT {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/securesean/EducationalRAT"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "8a18fbcf-8cac-482d-8ab7-08a44f0e278e" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_Stealth_Kid_RAT {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/ctsecurity/Stealth-Kid-RAT"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "bf43cd33-c259-4711-8a0e-1a5c6c13811d" ascii nocase wide
$typelibguid1 = "e5b9df9b-a9e4-4754-8731-efc4e2667d88" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_SharpCradle {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/anthemtotheego/SharpCradle"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "f70d2b71-4aae-4b24-9dae-55bc819c78bb" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_BypassUAC {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/cnsimo/BypassUAC"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "4e7c140d-bcc4-4b15-8c11-adb4e54cc39a" ascii nocase wide
$typelibguid1 = "cec553a7-1370-4bbc-9aae-b2f5dbde32b0" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_hanzoInjection {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/P0cL4bs/hanzoInjection"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "32e22e25-b033-4d98-a0b3-3d2c3850f06c" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_clr_meterpreter {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/OJ/clr-meterpreter"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "6840b249-1a0e-433b-be79-a927696ea4b3" ascii nocase wide
$typelibguid1 = "67c09d37-ac18-4f15-8dd6-b5da721c0df6" ascii nocase wide
$typelibguid2 = "e05d0deb-d724-4448-8c4c-53d6a8e670f3" ascii nocase wide
$typelibguid3 = "c3cc72bf-62a2-4034-af66-e66da73e425d" ascii nocase wide
$typelibguid4 = "7ace3762-d8e1-4969-a5a0-dcaf7b18164e" ascii nocase wide
$typelibguid5 = "3296e4a3-94b5-4232-b423-44f4c7421cb3" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_BYTAGE {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/KNIF/BYTAGE"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "8e46ba56-e877-4dec-be1e-394cb1b5b9de" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_MultiOS_ReverseShell {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/belane/MultiOS_ReverseShell"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "df0dd7a1-9f6b-4b0f-801e-e17e73b0801d" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_HideFromAMSI {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/0r13lc0ch4v1/HideFromAMSI"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "b91d2d44-794c-49b8-8a75-2fbec3fe3fe3" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them
}
rule HKTL_NET_GUID_DotNetAVBypass_Master {
meta:
description = "Detects c# red/black-team tools via typelibguid"
reference = "https://github.com/lockfale/DotNetAVBypass-Master"
author = "Arnim Rupp"
date = "2020-12-13"
strings:
$typelibguid0 = "4854c8dc-82b0-4162-86e0-a5bbcbc10240" ascii nocase wide
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and any of them