-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathrule20.yar
4943 lines (4844 loc) · 406 KB
/
rule20.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
rule _match_8 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, e28e3404155556ecafff204356fcc5f0, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, af408f884178b56843b9f7324bcdefb4, a3b4afa503657e7a327934ddd231887e, b9280790ed58987ab2af68537ad18d6d, b1b0580af0e8fa730486561255426f38, 26fc98d7481f9b494ecbfebacdcbeab3, ae33c5c9544d63463cca74c42a556983, ee3f5f355249823f286f389ce0567002, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 9b3518901fb21e67bfd3986cdcded31c, 99fe45ec1a50c0413a6dcb1d23b754f9, e97524afde7b751f6b024fa4798bdf51, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash3 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash4 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash5 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash6 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash7 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash8 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash9 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash10 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash11 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash12 = "c92d9638c8fb2b0556802ea87082be829f50dd7d29579a1a893ade35bd7a9256"
hash13 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash14 = "0a51f478127b8bcf5dcee926e76bf75ff9f3647c361a23a6683a45778a0594ea"
hash15 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash16 = "b95f40cce47499183ef95d6d56b8b5deed0d99a413a8bd7067200c5b1ae752a9"
hash17 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash18 = "ade656b212a4bef11d70720679ec7fd91586a9507448634cd716178ed908e509"
hash19 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash20 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash21 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash22 = "ee7ab7d8bd4643e2f2d63bc0329b21c6d3437beea13fc379ee7fbfc0e326d0f5"
hash23 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash24 = "b81e7c41d4c6cec4c6f99f9e577c8335c685bf09351af664d82c2a97bc12b89c"
hash25 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash26 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = "__kernel void find_shares(__global const uint64_t* hashes,uint64_t target,uint32_t start_nonce,__global uint32_t* shares)" fullword ascii
$s2 = "void blake2b_512_process_single_block(ulong *h,const ulong* m,uint blockTemplateSize)" fullword ascii
$s3 = "blake2b_512_process_single_block(hash,m,blockTemplateSize);" fullword ascii
$s4 = "__kernel void blake2b_initial_hash(__global void *out,__global const void* blockTemplate,uint blockTemplateSize,uint start_nonce" ascii
$s5 = "__kernel void blake2b_initial_hash(__global void *out,__global const void* blockTemplate,uint blockTemplateSize,uint start_nonce" ascii
$s6 = "__kernel void execute_vm(__global void* vm_states,__global void* rounding,__global void* scratchpads,__global const void* datase" ascii
$s7 = "__local exec_t* execution_plan=(__local exec_t*)(execution_plan_buf+(get_local_id(0)/8)*RANDOMX_PROGRAM_SIZE*WORKERS_PER_HASH*si" ascii
$s8 = "__kernel void execute_vm(__global void* vm_states,__global void* rounding,__global void* scratchpads,__global const void* datase" ascii
$s9 = "__local exec_t* execution_plan=(__local exec_t*)(execution_plan_buf+(get_local_id(0)/8)*RANDOMX_PROGRAM_SIZE*WORKERS_PER_HASH*si" ascii
$s10 = "__kernel void JH(__global ulong *states,__global uint *BranchBuf,__global uint *output,ulong Target,uint Threads)" fullword ascii
$s11 = "__kernel void Skein(__global ulong *states,__global uint *BranchBuf,__global uint *output,ulong Target,uint Threads)" fullword ascii
$s12 = "__kernel void Groestl(__global ulong *states,__global uint *BranchBuf,__global uint *output,ulong Target,uint Threads)" fullword ascii
$s13 = "__kernel void Blake(__global ulong *states,__global uint *BranchBuf,__global uint *output,ulong Target,uint Threads)" fullword ascii
$s14 = "void blake2b_512_process_double_block_name(ulong *out,ulong* m,__global const ulong* in)" fullword ascii
$s15 = "__global uint* jit_emit_instruction(__global uint* p,__global uint* last_branch_target,const uint2 inst,int prefetch_vgpr_index," ascii
$s16 = "int registerLastChangedAtBranchTarget[8]={ -1,-1,-1,-1,-1,-1,-1,-1 };" fullword ascii
$s17 = "blake2b_512_process_double_block_name(hash,m,p);" fullword ascii
$s18 = "__global uint* last_branch_target=p;" fullword ascii
$s19 = "__global uint* jit_emit_instruction(__global uint* p,__global uint* last_branch_target,const uint2 inst,int prefetch_vgpr_index," ascii
$s20 = "SKEIN_INJECT_KEY(p,s);" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 19000KB and ( 8 of them )
) or ( all of them )
}
rule _match_24 {
meta:
description = "black - from files 905eeda0ddf717b45bb294b227e6d8ae, 0f9eddc5e740edcd96e2f32d6acc3bb3, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, e28e3404155556ecafff204356fcc5f0, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, af408f884178b56843b9f7324bcdefb4, a3b4afa503657e7a327934ddd231887e, b9280790ed58987ab2af68537ad18d6d, b1b0580af0e8fa730486561255426f38, 26fc98d7481f9b494ecbfebacdcbeab3, ae33c5c9544d63463cca74c42a556983, ee3f5f355249823f286f389ce0567002, 9a07ca40de9c85495231302023c6a74a, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 9b3518901fb21e67bfd3986cdcded31c, 5e68b441f8c061285f596c5e0731514d, 99fe45ec1a50c0413a6dcb1d23b754f9, e97524afde7b751f6b024fa4798bdf51, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "a28878f5880b8a1c506258dd39b459cec616f79100afe006b4779525b8a937a3"
hash2 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash3 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash4 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash5 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash6 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash7 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash8 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash9 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash10 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash11 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash12 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash13 = "c92d9638c8fb2b0556802ea87082be829f50dd7d29579a1a893ade35bd7a9256"
hash14 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash15 = "0a51f478127b8bcf5dcee926e76bf75ff9f3647c361a23a6683a45778a0594ea"
hash16 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash17 = "b95f40cce47499183ef95d6d56b8b5deed0d99a413a8bd7067200c5b1ae752a9"
hash18 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash19 = "ade656b212a4bef11d70720679ec7fd91586a9507448634cd716178ed908e509"
hash20 = "ea9d91772dd86455d5bf25c080ed859faae39c7085abb5de0b3142a397e7f131"
hash21 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash22 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash23 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash24 = "ee7ab7d8bd4643e2f2d63bc0329b21c6d3437beea13fc379ee7fbfc0e326d0f5"
hash25 = "f56df2b39807ac070aa06c977177aff8c79c48f399fc5b8c904df6c898bf431a"
hash26 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash27 = "b81e7c41d4c6cec4c6f99f9e577c8335c685bf09351af664d82c2a97bc12b89c"
hash28 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash29 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = "2e395c4b394b652e" ascii /* hex encoded string '.9\K9Ke.' */
$s2 = "2B7D4F32322B647D" ascii /* hex encoded string '+}O22+d}' */
$s3 = "2769533A3A277469" ascii /* hex encoded string ''iS::'ti' */
$s4 = "246C54383824706C" ascii /* hex encoded string '$lT88$pl' */
$s5 = "2030405030507020" ascii /* hex encoded string ' 0@P0Pp ' */
$s6 = "3A4E622C2C3A584E" ascii /* hex encoded string ':Nb,,:XN' */
$s7 = "362d6c772d774136" ascii /* hex encoded string '6-lw-wA6' */
$s8 = "2878483030286078" ascii /* hex encoded string '(xH00(`x' */
$s9 = "26354c5f355f7926" ascii /* hex encoded string '&5L_5_y&' */
$s10 = "22665A3C3C227866" ascii /* hex encoded string '"fZ<<"xf' */
$s11 = "322b647d2b7d4f32" ascii /* hex encoded string '2+d}+}O2' */
$s12 = "3e217c6321635d3e" ascii /* hex encoded string '>!|c!c]>' */
$s13 = "3a2774692769533a" ascii /* hex encoded string ':'ti'iS:' */
$s14 = "3824706c246c5438" ascii /* hex encoded string '8$pl$lT8' */
$s15 = "365A7E242436485A" ascii /* hex encoded string '6Z~$$6HZ' */
$s16 = "3028607828784830" ascii /* hex encoded string '0(`x(xH0' */
$s17 = "21635D3E3E217C63" ascii /* hex encoded string '!c]>>!|c' */
$s18 = "2c3a584e3a4e622c" ascii /* hex encoded string ',:XN:Nb,' */
$s19 = "283c50443c446c28" ascii /* hex encoded string '(<PD<Dl(' */
$s20 = "3c22786622665a3c" ascii /* hex encoded string '<"xf"fZ<' */
condition:
( uint16(0) == 0x5a4d and filesize < 19000KB and ( 8 of them )
) or ( all of them )
}
rule _match_56 {
strings:
$s1 = "m64j___hw.dll" fullword ascii
$s2 = "K0U0b0l0p" fullword ascii /* base64 encoded string '+E4oIt' */
$s3 = "4 4$4(4,4044484<4@" fullword ascii /* hex encoded string 'DD@DHD' */
$s4 = "\"=5=<=B=" fullword ascii /* hex encoded string '[' */
$s5 = ">#>)>/>5>0" fullword ascii /* hex encoded string 'P' */
$s6 = ": :(:,:0:4:8:<:@:D:L:P:T:X:\\:`:d:h:t:|:" fullword ascii
$s7 = "Q\"DZ:\"?" fullword ascii
$s8 = "D:L:T:\\:" fullword ascii
$s9 = "9-9B9N9" fullword ascii /* Goodware String - occured 1 times */
$s10 = "9~iFiW%m " fullword ascii
$s11 = "HlGD|Bh" fullword ascii
$s12 = "2.2V2j2" fullword ascii /* Goodware String - occured 1 times */
$s13 = "?#?i?{?" fullword ascii /* Goodware String - occured 1 times */
$s14 = "80<0@0D0H0X0\\0" fullword ascii /* Goodware String - occured 1 times */
$s15 = "`=h=p=x=" fullword ascii /* Goodware String - occured 1 times */
$s16 = "2Q3W3a3" fullword ascii /* Goodware String - occured 1 times */
$s17 = "4'4E4S4" fullword ascii /* Goodware String - occured 1 times */
$s18 = "D4H4L4P4" fullword ascii /* Goodware String - occured 1 times */
$s19 = "7.8:8[8" fullword ascii /* Goodware String - occured 1 times */
$s20 = "4 9$9(9,9094989<9@9D9H9L9P9T9X9\\9`9d9h9l9p9t9x9|9" fullword ascii /* Goodware String - occured 1 times */
condition:
( uint16(0) == 0x5a4d and filesize < 4000KB and ( 8 of them )
) or ( all of them )
}
rule _match_58 {
meta:
description = "black - from files 568c6b1b3531ebd169c2a0ed65e62ef2, 945c640a20136010a058c9b4585ee47d, 4cc2fe8853b10d5f0b3149197d6663e4, ddcb5a9db519905658d881fa4103aa9a, 8a0d9d21af0356ddb2c82938f44e76d6, bed6e71336cb5309922a8cc3703ae7bd, 28281dec5a549c89ed55cc716069880c, 2ec73fee140c557a280e903dca386d4c, 45666ebea0ee088eb73616ad7eb16bb8, 0cc9fc7f24baf15588f438668d1eb27b, 3563aa2973ecef6681fb05e8b8d3eb13, ebef3b340f36cadf104a4a4630c15e2a, 6ac3b36f512b8f24cf6b52968d1243db, 06bc107a1237a49172bcc05fa64b3c72, 664d97ce12fe1690a5577ff601450a2f, 974c78abe08937557dd3f76ddda86c6e, c6f26ae8372c6b5550268ea143f6a6b2, 866a36906d5a0bf307e5424e67d55855, 00e69728719213a306c42e2abc8960ab, 032f9521303b5f0290d454ace3b74092, 31977b7f611099363326b3b5f10cdc16, 138650bdcf49b37f28ba9442aee758e1, 001e98ad444991d549d32ccda6d0f163, 578701d99783505703e6c79edf03de38, caab1031e15330c70aae8eb59e9e990c, c5d0fb9299c61e0e4c4811a7d3adec0e, b3a7cac730bc9c86f93be1b9e19e8ef2, c2e6e8c7c69afc5dc3bfdf4584df0e26, d669cf0445190e3b99678f6117c10f44, 495e6dae9afeb153886008d2c2f8e904, 86fe125eb293f34f113ac369dd82ad8e, b64fc678f1ffee948e1467bea12b5151, b821ac143b1ef6255ec26927b513721f, 8089bfe80c3950ab2c3aa9cea4da897c, 438dfb539ffb2275e5cde2557c9fafc4, f77112868bc3c7548136fe3ba98173bb, 26f5653be871bbf96ae6b14a9d90e16a, 6ceec8b6bc987c3944f85d585298fcb4, c4beabd1eed6215f933417c6c71a8c38, bf5c98c53c232481dea1c844adb260c2, 6d5f2f5b87b36569402723eff364fb3b, fd15788b6f10fd2b40b490de031036e8, 63ec990cf6b2d2dd9993f534b72f363e, 68006d734fa1ff1112cdcb1980c2045f, c75488f8a3f9c68cb4595c93aa198ba6, 05a33d00fbe7015caa1dec3a032db941, bf6a20945af16f099345b8996e4c3105, cf02f19e6e3db88f5165808cef0ff18f, 0553b99673cec4aae84126595799d04b, 61f0f4ec78a00d0b0f90c9ddec70c882, 0a4ea2bc69d0f743172a94d9c5d44d10, cc068a79d76a8fd587ccbdf0457500a4, d5ad9957fda245d5b443ac0ef29fac36, ca6fdcfa15dfd53fd86e106f02954b2e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "d8bb9838164d5239c7865fb0d647fd7690aa88e20afc6e64f3571501f8cdaeed"
hash2 = "94f14fd7f48959be578b0a8eb1665ad7bca238dcbaa5dde93166cd812d30117a"
hash3 = "e3889d79eb9b2eb5cfe48bf7890c131f5f78bdfa07f9b6b1c1be68b0f34f5469"
hash4 = "5f3f2312d38f6661ab6a2cbfa62aa69aa1c654560baee42aeb11acd7975c5404"
hash5 = "13318a5072747bbea5274cbeffa70a4b54a846227b522b2305fa9084e50eedfe"
hash6 = "7e94c91042d2bb54fa4799916995531f5e8e60a4006b454b7efc3b41114e9997"
hash7 = "027193e7e65434cc2cb02ccb9630adef451836ff749ac53567425df89d554dbd"
hash8 = "9d9577f969b681660485deaa86d98a3eac91c40183274e441a1430ea9df3704a"
hash9 = "3f7f4d46bc6a80eefd05ae0a68790a91cd9793f9c9610fa35f52334cae7588ed"
hash10 = "a56b3fd3adb9b82aeb6fbe87d6f3c3abab99b2ed66e39dc919caf1f3a41ec39a"
hash11 = "80cdeb8403a52b68b2111fa82eeccebc348ade40d3c310c885558ae239f9191b"
hash12 = "d14a8879d6f5494fcde844418ae12942d10d68cf1251e53b8bf32a7e32c1c3ca"
hash13 = "328b16103c3e45530336c8f8fed73270f3978825856186dd8b762a25cd2d66f2"
hash14 = "ad2761ceae4efbdf61fa1e3b14eb63e9e7be18aa653fe81b48ae47f3720f5e77"
hash15 = "2782d85b803ddd1e2f6f669bdc63e04be83df42aada87f95642c102f3634fc98"
hash16 = "0251908b98972dfc0f4be031a52d727b3a2ec61dec11b714c69e9dc43859c227"
hash17 = "393d1196202090c0fa7b91d9cba1e0813c10cc5b9a9ddc95f94f73f24d42bf85"
hash18 = "0c7cae8a6dfda31f1301117cfcb35718c8dc339d3ecc8b59bfd6d352462be306"
hash19 = "d8ebd67551e9b8e484716a3db342de47b755ce14787ad64e1be2a3c35f866449"
hash20 = "42c5e48280453ae905f0225a26bb46696fe6137edad53a71292572dd0e29d453"
hash21 = "ada2cdb11b677dc930aa8efaddd64b76fcc13237be75678fc22d3ee07a1b01c6"
hash22 = "c1ac650fc52b93f29917b3f8e31ae5fbc454e4db5393a43a80289e6e73b1cef6"
hash23 = "fffb60f3530e2d8ead6ba2e7af33e1d4ccf7374f6cfedf29b31be200f3d35d85"
hash24 = "5fb55c1ea3228126438d5adf84bda429f7b34c6f2fd1ba13bf28998b0290a984"
hash25 = "4f4ccc67dfd75b5b6381ca103fb59db0993074fdf47c6207ffcf3445b157705d"
hash26 = "14ea784bb6f0eb3d4d02671333c6ce6017313af3ae6b7bf34a9014be601ce811"
hash27 = "1a806c8ce5d8739af51ae29f6bd0ebfa81bc2902defe839c180e580d529d76cf"
hash28 = "8e3ebdd236e5d5f86901e622a44722a337bcae4c407b6788180e6ba9d45da1b4"
hash29 = "ec0c435c5b028ec2a5032b55093b2d58eaa4d1b6c3393fb3c86bc4d62e98ed4f"
hash30 = "75716bdc15998b47f345c329f67dcdba69cbb3307185223a5b3aadf6a7a111d3"
hash31 = "0ceff53c08811cd2beb63a05540983ac66990e73035d6def77e45746c54c64b1"
hash32 = "9d56b44a7d661f4f19407e3a1cbd3894b676084dd13f04bddcf705aacc4a25c8"
hash33 = "97dfbe369a4443f6fdb3cc5baf94297a9390bc9477a8bb40a593fc34bda8dd99"
hash34 = "c849aaf6ffc518407bc3fdbe6a799717cd8b7ab9c311a157dc9c6fa0b92b731e"
hash35 = "ad441eb91d8c1a9e3ab9236ad5aa21f6921b9d17bcd53f8f6ba7f71f142fe371"
hash36 = "d164adbcc75129eac9e51801634f8c24659e8f19a3d8dfb5ee09bfe57b802d6c"
hash37 = "59cf778386c70416b41727d8b3350f65e9a2161959d6a3bbf67ec3257988cd61"
hash38 = "70b4b95db10476f42efe0bd9ca6f330adebd3c781f9d3085523023c4656a1f8d"
hash39 = "f915e58bac90e89a2a9c5809363131d881be6b09f0a1ad8602a8075246b22898"
hash40 = "93d60abf15b2c5ef5847c70af31bad188db2eaa7cc6f1eb46bb851de71a3b9b7"
hash41 = "5928d3cbe2c423aa672423b72608d2b609f4a24758d42c782ba3e25c85bca595"
hash42 = "e9ea35b72b2b66680bc0ca9cd0f93c4934bbb0263fda63c19202d698976aaf54"
hash43 = "3f31b4d2ca54b90c109f9a4444d080d40351769ea6354e817cf43ba5e44eb190"
hash44 = "ea7b50030a83f64a9acbf6732567de2f155a762db8dacca4ad00e5e971403f04"
hash45 = "ce386e19019fbd1edb3ebd5379a74e7c3dd1b18525cb7f8a8c8883b6663c218f"
hash46 = "f6ba827dbf74c8cc8614f10298f7ee2ffd39d24367dad0cf09ef515c14785da4"
hash47 = "5547725b534420b1a6ea435f756f4c6d35588b1cd811f14ae091721f2594e856"
hash48 = "07c6661d8d1b4bdc3da5074e6e9739db100be2037c75f9c390df3174f4ae38c8"
hash49 = "29899e0ead4381d8b560799d595b38d12520f07512639aeca7ee636d469ba3ab"
hash50 = "2c17365876f6ad394b63f2b08115bc967f24ff304cf4ea6d5697e557ebd1716c"
hash51 = "c82140ef3c150e830843707005802e2f201935e4cf315949b9f2410c6ed4446e"
hash52 = "74b87ab37c24f819570e8c418535d3c03235661c764ecbb968571b7a49323bec"
hash53 = "05db9268b60613003145246001646d12396a9becea41a15bb88dc2a283cf081c"
hash54 = "97c689f7732beb1180b70bf6536a4037990459600175d49ab14734239c77b4d6"
strings:
$s1 = "mkjfedmod.dll" fullword ascii
$s2 = "Mozilla/5.0 (compatible; MSIE 7.0; Windows NT %d.%d)" fullword ascii
$s3 = ";+;3;\\;c;" fullword ascii /* hex encoded string '<' */
$s4 = "4'4.4@4^4)5" fullword ascii /* hex encoded string 'DDE' */
$s5 = "<\"=,=2=8=" fullword ascii /* hex encoded string '(' */
$s6 = "ip address currently banned" fullword ascii
$s7 = "7 7$7(7,707470" fullword ascii /* hex encoded string 'wwptp' */
$s8 = "X:\\:`:d:h:l:p:" fullword ascii
$s9 = "%s (%d) %sx64 %sAES-NI" fullword ascii
$s10 = "SUVWh06" fullword ascii
$s11 = "9@:c:}:" fullword ascii /* Goodware String - occured 1 times */
$s12 = "register_dsrc" fullword ascii
$s13 = ":5:W:{:" fullword ascii /* Goodware String - occured 1 times */
$s14 = "4F5N5t5" fullword ascii /* Goodware String - occured 1 times */
$s15 = "66)6:6" fullword ascii /* Goodware String - occured 1 times */
$s16 = ";T$,uS" fullword ascii /* Goodware String - occured 1 times */
$s17 = "405Z5b5" fullword ascii /* Goodware String - occured 1 times */
$s18 = ";D$0s" fullword ascii /* Goodware String - occured 1 times */
$s19 = "5f6n6v6~6" fullword ascii /* Goodware String - occured 1 times */
$s20 = "7bad array new length" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 4000KB and ( 8 of them )
) or ( all of them )
}
rule _match_60 {
meta:
description = "black - from files c0c47b20d4a0acf33130efd241dcecb7, 9f4d9aaa17f43e35b68909cae6e2963e, 6638373439ec194078e3e6867a68e936, 0aa72cf7f23aeb9a055d869b1352ab05, b8c541161474bdb653f90b25c266bf32, 5d7241a98f223e091f32498665b4b205, 2ca8a43dc76db43db4d7af35859a770f, 5d07e7441e45078f8cbcf62fcd6dae0a, 96d989641197f46942207b72fa661820, 416610b942ffaaf0b83b20b1591a1623, e90d08f6690a46b566c3381bebdc38af, 52f16c77af20982d5a0897b7e81beff8, 66532a0adab204c8239633eb49d07ce1, b74d586186adaa3cc2fe40d495263c84, cd0bbad6af58ff1e1a6dd4406c7b7ec0, 8b171722624178254ba65819889b41f2, 15630701c421ca2fcfecfd91622a30b3, 07b636a8bf645b7c512be756a8b69fe2, 05ee0d9bb5b1789da51fb0c022b33268, 0e9a01b4b3cc55564426f0d296d62846, bcdf3c943e6aa549e8753c32ded15360, 573bb9ebe60a259c6e0a890a74fa5a9e, 1297fa863626ddc4c5f5d9f6c5e5cb2f"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "5f4a3d3b5b21106dc72cca87921dc2788b3c4b70935eeca58eadb63a3518063f"
hash2 = "bb53f0db836794aaedc9bccdd044105dbaa19ccb3a8e4583b11a29d26b56ca7c"
hash3 = "c2e3029089ee805aadddf739c0c3018e7a833760b98d26b25f45e88f15cb11b6"
hash4 = "503a30682bed0e07f14dbaedbfa0ad56398923d31aeca6efbda85f649b2f4ecc"
hash5 = "3a800217027270f563a4721ba7df9ec5e101aeca3f27997ebd634e71abfd634f"
hash6 = "b2dabbc952e916996f8ab3e3b868be538e00cdd2095450a296338d37da1afbb2"
hash7 = "53cc5abba6e39f54eecb9c0e4f80bf0a3df71982b3614dbaac48325c223c24ca"
hash8 = "2044f43871ea0b24f228f0a30760b9bdbef26056726dc918e0bc31d130a4fd28"
hash9 = "1048876df466fc480e46db03dacf774a0df61df51d3efb2876426321c60fe8b8"
hash10 = "d5001e36a8c10501ebc0b03d1ec750e7657e0e7f3524a11c18cfbd3b06b7d634"
hash11 = "e85181b8b3ba26ff40b9258fefc5fb6e974cfb99474ad29f445d6275ca6f74cc"
hash12 = "a0f204d460f124f0f59b78ac6cc5dfcb6b1ced2e142185ff194435ff4016a788"
hash13 = "cda8030bbabb0f8780de77912c63088d10c78b99bd5d4caadc27a3f8b8ec0a53"
hash14 = "69de46a3d1262baa013ffd1f68c7eb5da4c988841335cf53278bd9a1087639cf"
hash15 = "cf98b7c3daf69163ba7b2dd76538a0d9e19f63cb0d5d359ad529119d4f448d67"
hash16 = "b9727e82fb6c723b18fb7a3906b5db97c0a0fc33e4808d10cb7329875973ea1a"
hash17 = "a79e724b8b19334d676ac488569ca70f2737065495736b322c85f5edc8867f03"
hash18 = "d8b1007592166e012ef7f1c709d35384481ded2c670add63edbb25f8d39c1a9f"
hash19 = "62a098d7034672832209bc3495cf8a0a461542d816058dcc690009b2d2a44e85"
hash20 = "6e2fd44944b0b6adf608d298aa78781bfc7bf9ab29c0644132eea183ff5e58d9"
hash21 = "06e263554cbc8aad32eeedf2ca5374f5cde628312d5b61d61bdaaddc62c2e252"
hash22 = "06c4fd2b55e3691fca7ceee681fb4858a7afcca05d9a2da86e9d9d4315294d9c"
hash23 = "7b183d3b61275360f6715097e51be6bd47723899ae7d6d48085b766f01f2dee4"
strings:
$s1 = "6&6.686=6" fullword ascii /* hex encoded string 'fhf' */
$s2 = ".>4>:>?>E>" fullword ascii /* hex encoded string 'N' */
$s3 = "=\"=-=2=7=[=" fullword ascii /* hex encoded string ''' */
$s4 = "KckX\\v\\W" fullword ascii
$s5 = "0$0D0P0p0" fullword ascii /* Goodware String - occured 1 times */
$s6 = "iNsYmwF" fullword ascii
$s7 = ">>&>,>" fullword ascii /* Goodware String - occured 1 times */
$s8 = "3$4H4T4\\4t4" fullword ascii /* Goodware String - occured 1 times */
$s9 = "nhEc3~<" fullword ascii
$s10 = "034383<3" fullword ascii /* Goodware String - occured 1 times */
$s11 = "|EgRf44$~r" fullword ascii
$s12 = "4'4C4`4n4" fullword ascii /* Goodware String - occured 1 times */
$s13 = "L2P2T2X2\\2" fullword ascii /* Goodware String - occured 2 times */
$s14 = "@<`<|<" fullword ascii /* Goodware String - occured 2 times */
$s15 = "7!7+7;7" fullword ascii /* Goodware String - occured 2 times */
$s16 = "><>E>P>" fullword ascii /* Goodware String - occured 2 times */
$s17 = "545<5H5" fullword ascii /* Goodware String - occured 2 times */
$s18 = "T:\\:d:l:t:|:" fullword ascii /* Goodware String - occured 3 times */
$s19 = "\\.B|/7*" fullword ascii
$s20 = "\\;l;t;" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 3000KB and ( 8 of them )
) or ( all of them )
}
rule _match_82 {
meta:
description = "black - from files 19176a32e4bd18544c4ab624755737b5, 48935d567681844f7ea1b722365169f6, df58eb906800cd90ec6c28396036150a, db04155d60feb5141e9da63f0d41b835, 9e353fd5f82d5c25c5cfc7b0e8ba430b, c7b986b67364b7ef50d9aedd54f2e48d, ca7a9c16f205c9b2dbb06791dc70da8a, ec57d8cc725c307f29c32134dfa94557, ea320e82b0458a2a4b830a66c5451df8, 0492f2a2f0192956d126fb3d357fea7d, 613ec5127caf1e796ae587358fcbb515, baac2d6f7648809675f0ab5984e326a0, f09f18e7f15dbe8319922b158f60ec19, e60077c1abbf72bbc80f4d05abcf39b4, 8094fc03cccd28280842d70618125e29, 0a28f126a2c8481cb0bb76c7365c35a7, 64550e15998af388224e75dbd5948f38, 32d8b79a2213c0b0116afb8c4f8d9ab7, 5bf18e52357bdf8376e2caf14e72c55a, 117ca68d168e0f8a83232845f062bcd5, dce7d6c25f4939df011b45d720a5c14a, 8db77740e4775ef51224b0fb8975b601, 9d9ca1ba4bc52d6a29c5ff51acb9cfc6, 4c5101211ed17a2970f431254d4f433b"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "146a037f821cf561133b2459bd1b1cf9c65689abe8d62ed0c1a9625efef65835"
hash2 = "051bf363e26c9a9d9d3d9f2ea6eceb93fc7113499db4193de7796ad783b3ba83"
hash3 = "30beb66eeb378f866d21439dcf4f8e69fa66b752b385848517c91739a5370c2a"
hash4 = "c4552ad6496f0e20cfd3137ad2a0e66d961b99fbc6d19b3316062d01f8f02f7d"
hash5 = "c36f205dbd4c376c7e93c06488c76ab4d3286a275d1a46785d045d98ee725903"
hash6 = "b24fb139f9fcd5c31a547128236de3d5f9ab0e1a99ce439c9eabacd1b893eeae"
hash7 = "9041d5cf64135d66fe439777d1f68d6e39116af32e7de18f1734628bc5a81069"
hash8 = "3df65c798ab8b3866df5f0b620fe41b66790e6e69ede8c32229b3caf48590ae6"
hash9 = "3c989131f6b5539dd8643023bfa9f486cd467ef7dadc71fea4c5acc952ddc959"
hash10 = "4f4c6191510eafc7102064e0d505fa948b1e187eeb0342927b39450837b2a2f9"
hash11 = "3424150aceaa2517390277db3b683d099e302c068b697a89e70655b9d93694df"
hash12 = "32e8de0f91143f67e9b7ca61a15bd9fb2b79d3c589965fa6d06e0db9962f8912"
hash13 = "bb63a6314631fa01c7b29823fe0c58d452ef96d0eb6db2a89fb48f8c4da8124f"
hash14 = "efa516d078f5512b04e05ffb2f25bdcf1cfa7fce05640a304369f883901082ce"
hash15 = "4d78b1d04170aea677908b52c92288d95399e7b79a8b15fc8db90bd83892dd4a"
hash16 = "4d0f858311902ad6c8de4a01b0c98bbeab51375cc51b669a373c138acd0b9608"
hash17 = "9e309abd9ffae40f90fd920bac66992db6b6fb9070599413c1063287549d6c61"
hash18 = "54de1957593ef530f8ff1304e8d519db061703cb646a681316c1c62f982d7487"
hash19 = "77d88e561947a0650c3f5b148937e39b541f7cf364c39f94194e39f31656dbf0"
hash20 = "c4069c8a07e84cf34ec23484b70487c6a24671ea56551f5ffcb4d2fe7d50c99a"
hash21 = "947048fc0aaa241f825a3d1a52ccfa006d5425d31e308586b489b7251a9b9759"
hash22 = "ad8ba4a2c3cd5e2c1ac73a41b6055f10463794d0d5c4408bd537518abb300608"
hash23 = "5b55dfa9b7779f4780ba3d0a2db463e1bcf2270f8e4b9bff690d2ebedbe52e42"
hash24 = "b2538b160b45dc717ce906aa2066d2c14d230035d6f76428d73ed238426f5da0"
strings:
$s1 = "cjmodme_c.dll" fullword ascii
$s2 = "-<3<:<A<@" fullword ascii /* hex encoded string ':' */
$s3 = ",282@2\\2|2" fullword ascii /* hex encoded string '(""' */
$s4 = "4:<:D:L:T:\\:d:`" fullword ascii
$s5 = "QVWht429" fullword ascii
$s6 = "uSVhxL39" fullword ascii
$s7 = "3$3(3@3" fullword ascii /* Goodware String - occured 1 times */
$s8 = ">1>L>W>" fullword ascii /* Goodware String - occured 1 times */
$s9 = "p?v?|?" fullword ascii /* Goodware String - occured 1 times */
$s10 = "6.6W6e6" fullword ascii /* Goodware String - occured 1 times */
$s11 = "d8h8l8p8" fullword ascii /* Goodware String - occured 1 times */
$s12 = ".?xqrfhiArwChCpmue" fullword ascii
$s13 = "0G0Y0_0" fullword ascii /* Goodware String - occured 1 times */
$s14 = "3$>,>4><>D>L>T>\\>d>l>t>|>" fullword ascii /* Goodware String - occured 1 times */
$s15 = "!9bad array new length" fullword ascii
$s16 = "949<9H9" fullword ascii /* Goodware String - occured 1 times */
$s17 = "X1\\1`1" fullword ascii /* Goodware String - occured 1 times */
$s18 = "<9@9D9H9L9P9" fullword ascii /* Goodware String - occured 2 times */
$s19 = "l5t5|5" fullword ascii /* Goodware String - occured 2 times */
$s20 = "Z0^0b0f0" fullword ascii /* Goodware String - occured 2 times */
condition:
( uint16(0) == 0x5a4d and filesize < 4000KB and ( 8 of them )
) or ( all of them )
}
rule _match_96 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, e28e3404155556ecafff204356fcc5f0, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, a3b4afa503657e7a327934ddd231887e, b1b0580af0e8fa730486561255426f38, 26fc98d7481f9b494ecbfebacdcbeab3, ae33c5c9544d63463cca74c42a556983, ee3f5f355249823f286f389ce0567002, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 9b3518901fb21e67bfd3986cdcded31c, 99fe45ec1a50c0413a6dcb1d23b754f9, e97524afde7b751f6b024fa4798bdf51, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash3 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash4 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash5 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash6 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash7 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash8 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash9 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash10 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash11 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash12 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash13 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash14 = "b95f40cce47499183ef95d6d56b8b5deed0d99a413a8bd7067200c5b1ae752a9"
hash15 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash16 = "ade656b212a4bef11d70720679ec7fd91586a9507448634cd716178ed908e509"
hash17 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash18 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash19 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash20 = "ee7ab7d8bd4643e2f2d63bc0329b21c6d3437beea13fc379ee7fbfc0e326d0f5"
hash21 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash22 = "b81e7c41d4c6cec4c6f99f9e577c8335c685bf09351af664d82c2a97bc12b89c"
hash23 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash24 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = "__kernel void cn2(__global uint4 *Scratchpad,__global ulong *states,__global uint *output,ulong Target,uint Threads)" fullword ascii
$s2 = "if(State[3]<=Target)" fullword ascii
$s3 = "__kernel void cn1(__global int *lpad_in,__global int *spad,uint numThreads)" fullword ascii
$s4 = "__kernel void cn0(__global ulong *input,__global int *Scratchpad,__global ulong *states,uint Threads)" fullword ascii
$s5 = "inline void round_compute(float4 n0,float4 n1,float4 n2,float4 n3,float4 rnd_c,float4* c,float4* r)" fullword ascii
$s6 = "float va_tmp2=((__local float*)smem->va)[block+ 8]+((__local float*)smem->va)[block+12];" fullword ascii
$s7 = "inline int4 single_comupte(float4 n0,float4 n1,float4 n2,float4 n3,float cnt,float4 rnd_c,__local float4* sum)" fullword ascii
$s8 = "inline void single_comupte_wrap(const uint rot,int4 v0,int4 v1,int4 v2,int4 v3,float cnt,float4 rnd_c,__local float4* sum,__loca" ascii
$s9 = "inline void single_comupte_wrap(const uint rot,int4 v0,int4 v1,int4 v2,int4 v3,float cnt,float4 rnd_c,__local float4* sum,__loca" ascii
$s10 = "__local struct SharedMemChunk* smem=smem_in+chunk;" fullword ascii
$s11 = "const uint gIdx=getIdx()/64;" fullword ascii
$s12 = "output[outIdx]=get_global_id(0);" fullword ascii
$s13 = "{3,1,2,0}," fullword ascii /* hex encoded string '1 ' */
$s14 = "{3,0,2,1}" fullword ascii /* hex encoded string '0!' */
$s15 = "inline uint getIdx()" fullword ascii
$s16 = "{2,0,3,1}," fullword ascii /* hex encoded string ' 1' */
$s17 = "__kernel void cn00(__global int *Scratchpad,__global ulong *states)" fullword ascii
$s18 = "uint chunk=get_local_id(0)/16;" fullword ascii
$s19 = "for (int i=0,i1=get_local_id(1); i<(MEMORY>>7); ++i,i1=(i1+16) % (MEMORY>>4)) {" fullword ascii
$s20 = "for (int i=get_local_id(0); i<25; i+=get_local_size(0)) {" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 19000KB and ( 8 of them )
) or ( all of them )
}
rule _match_99 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 6cfc530100079ac1f1ed0cf61bed2ca8, acd5942fee24e5bc6769bb2fb529b695, 8a490aa2517646411b6ea1383f17bbd1, 50b754688ea8b1994abc99ea58263ebb, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, 0086748f3a7854b3a35f69b5285c534f, e28e3404155556ecafff204356fcc5f0, 4d6dff8b2def91e85a09faa27899d9d5, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, af408f884178b56843b9f7324bcdefb4, 51f0f95501d456804707bd997c56b416, fc481ae3e90d67283ce944cefb433d25, a3b4afa503657e7a327934ddd231887e, b3c0545d8bdbd5cd9c4c5cbd4d070d2a, cd9d53902ae60c8a9330b6b145cbe3bb, b9280790ed58987ab2af68537ad18d6d, b1b0580af0e8fa730486561255426f38, 26fc98d7481f9b494ecbfebacdcbeab3, ae33c5c9544d63463cca74c42a556983, ee3f5f355249823f286f389ce0567002, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 233cb487009705a47f32a694558deca5, 9b3518901fb21e67bfd3986cdcded31c, 5e68b441f8c061285f596c5e0731514d, 99fe45ec1a50c0413a6dcb1d23b754f9, e97524afde7b751f6b024fa4798bdf51, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "438784b7594602da1a92d67890953b527ef6cb045e0c64ccaa4e78448576fff5"
hash3 = "0083066406394696a0e6f26928d71785bf9fcdecdd6dcf52731a93b78f2cca0c"
hash4 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash5 = "2efbcf082019f2fe3b7b065842a6e99e0441e7166265d2021695fce00f0d4373"
hash6 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash7 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash8 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash9 = "0693cfd2a09f5358cdec077df4cf049c88fe5fcdc606a228e389c9b2e517f965"
hash10 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash11 = "dbc26374af31e9c81b8bc3a6c3063387f587a2596510e2a3be24aea6e025294f"
hash12 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash13 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash14 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash15 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash16 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash17 = "c92d9638c8fb2b0556802ea87082be829f50dd7d29579a1a893ade35bd7a9256"
hash18 = "a8efd58c2f819b96742b10bad9aa76494731295f32ccc9897d3694944017b2a4"
hash19 = "201b177ab0fe48289ac660b899b7813ed6f276a9ea1246574c28ebacb943905d"
hash20 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash21 = "7bf303baebaec1c10be08273dd3d1ce503c4a7e1edaefc6092778b2926ebb278"
hash22 = "9c62abcac2762be0e5abbb7f06ffb65c0b8fbea84d015944b6593453354303eb"
hash23 = "0a51f478127b8bcf5dcee926e76bf75ff9f3647c361a23a6683a45778a0594ea"
hash24 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash25 = "b95f40cce47499183ef95d6d56b8b5deed0d99a413a8bd7067200c5b1ae752a9"
hash26 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash27 = "ade656b212a4bef11d70720679ec7fd91586a9507448634cd716178ed908e509"
hash28 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash29 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash30 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash31 = "1c6eeaf450250baad8b4bbdcb4539a5ec8ad9878d1ea4c96c493e01cca02f1d2"
hash32 = "ee7ab7d8bd4643e2f2d63bc0329b21c6d3437beea13fc379ee7fbfc0e326d0f5"
hash33 = "f56df2b39807ac070aa06c977177aff8c79c48f399fc5b8c904df6c898bf431a"
hash34 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash35 = "b81e7c41d4c6cec4c6f99f9e577c8335c685bf09351af664d82c2a97bc12b89c"
hash36 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash37 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = "* The error occured in hwloc %s inside process `%s', while" fullword ascii
$s2 = "* the input XML was generated by hwloc %s inside process `%s'." fullword ascii
$s3 = "* Otherwise please report this error message to the hwloc user's mailing list," fullword ascii
$s4 = "* Error occurred in topology.c line %d" fullword ascii
$s5 = "* Object %s cpuset %s complete %s" fullword ascii
$s6 = "* What should I do when hwloc reports \"operating system\" warnings?" fullword ascii
$s7 = "* along with any relevant topology information from your platform." fullword ascii
$s8 = "* hwloc has encountered an out-of-order XML topology load." fullword ascii
$s9 = "* Please check that your input topology XML file is valid." fullword ascii
$s10 = "* was inserted after object %s with %s and %s." fullword ascii
$s11 = "Dropping previously registered discovery component `%s', priority %u lower than new one %u" fullword ascii
$s12 = "HWLOC_XML_USERDATA_NOT_DECODED" fullword ascii
$s13 = "topologydiff" fullword ascii
$s14 = "Failed to read synthetic index interleaving loop '%s' without number between '*' and ':'" fullword ascii
$s15 = "Failed to read synthetic index #%lu at '%s'" fullword ascii
$s16 = "Failed to read synthetic index interleaving loop type '%s'" fullword ascii
$s17 = "Failed to read synthetic index interleaving loop '%s' without number before '*'" fullword ascii
$s18 = "hostbridge" fullword ascii
$s19 = "Failed to instantiate discovery component `%s'" fullword ascii
$s20 = "%s: XML component discovery failed." fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 25000KB and ( 8 of them )
) or ( all of them )
}
rule _match_101 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, e28e3404155556ecafff204356fcc5f0, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, a3b4afa503657e7a327934ddd231887e, b9280790ed58987ab2af68537ad18d6d, b1b0580af0e8fa730486561255426f38, ae33c5c9544d63463cca74c42a556983, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 99fe45ec1a50c0413a6dcb1d23b754f9, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash3 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash4 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash5 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash6 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash7 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash8 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash9 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash10 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash11 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash12 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash13 = "0a51f478127b8bcf5dcee926e76bf75ff9f3647c361a23a6683a45778a0594ea"
hash14 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash15 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash16 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash17 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash18 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash19 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash20 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash21 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = "invalid vector subscript" fullword ascii
$s2 = "invalid bitset position" fullword ascii
$s3 = "list too long" fullword ascii
$s4 = ".?AV?$_ExceptionPtr_static@Vbad_exception@std@@@?A0xc16bda6b@@" fullword ascii
$s5 = "tVHcB0H9B8~" fullword ascii
$s6 = "L$HH;L$P" fullword ascii /* Goodware String - occured 1 times */
$s7 = ")t$pD;" fullword ascii /* Goodware String - occured 1 times */
$s8 = ".?AV_ExceptionPtr_normal@?A0xc16bda6b@@" fullword ascii
$s9 = "\\$HLc@" fullword ascii /* Goodware String - occured 1 times */
$s10 = "GenuineIH;" fullword ascii
$s11 = ".?AV?$_ExceptionPtr_static@Vbad_alloc@std@@@?A0xc16bda6b@@" fullword ascii
$s12 = "pA^_^H" fullword ascii /* Goodware String - occured 1 times */
$s13 = "d$$D;g" fullword ascii /* Goodware String - occured 2 times */
$s14 = "H+L$8L" fullword ascii /* Goodware String - occured 3 times */
$s15 = "\\$xwCH" fullword ascii
$s16 = "\\$`McJ" fullword ascii
$s17 = "D$@H+D$0H" fullword ascii /* Goodware String - occured 3 times */
$s18 = "\\$0H+L$HH" fullword ascii
$s19 = "f F+l\"(;A," fullword ascii
$s20 = "L$(McQ" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 13000KB and ( 8 of them )
) or ( all of them )
}
rule _match_109 {
meta:
description = "black - from files 97ee5c92d5c865ef6db67c35bc8a427a, d220d7b9023e6bd3717edc17765fbb25, eafa15f8a4e79523f4f6288519e2d60a, 0f4acbb2acfaa97b146f4949729d0ec6, 09b0bb70c4456e39cb26cdf2667b2be7, 5846aed02e23db1af696661606cf5bfd, cd7e6a6f2e3fc3cb1049efbbf235577f, 3934d1adff337a3741fc308eb83daaba, 99bd2332ea3179db7a70a6e66d11e096, af408f884178b56843b9f7324bcdefb4, 0cf00d65acee7181d4679d2ad3da5301, 51f0f95501d456804707bd997c56b416, f8a8bd5eb3b9328c007438070e0c3ca8, 2458b8fb100cb0d0c80a3f62aea0e080, 0742b7c20e14fc0b9390fd5aafef6442, 6a80142ac8cf4d5534d2eb9cb0e3e08d, ddafbf9406cc26df63a32702126e3fc9, b1a919e6fb009361b64d51b351a25e4c, 3ba79ba35b4b388fe9699e51d4c43fea, 26fc98d7481f9b494ecbfebacdcbeab3, e74a8e9fbf1969888d78bfe6bf757759, 9f8125060a075a7c7b3e8b13d630bcf9, e97524afde7b751f6b024fa4798bdf51"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "e91e3d9138b2961bf0807b39ab1c0647e78ccf6985890246db1d698af498e43b"
hash2 = "8d887ba624e0e8f55be8deb805ec25c1a2a34e6fa137b6bc30025cfbc124dfb8"
hash3 = "7d2a58520ab1dea0d33c5866fdfbb8ccfb5a446f200c6d4c064d14ff90cdf76c"
hash4 = "4c9bf0426483d1f8f7943cb291345134964d237f1b8270f88f51cbdd1557a41e"
hash5 = "bc2a8aa09df1303d24917145a3b41acf1b9df09c72e65273883c63b288623e2b"
hash6 = "5d1ef3f5bc06e457945af001cad5e392eea47ae4486522ad3342f42b6e2b7436"
hash7 = "08e6eb5d64f01d4a982bf75e4ffbec7d0f61d7ece7b7fbfe2fade7ae39ad8884"
hash8 = "2fefce5634c8b6f9e334fd6b1c34b86f6cb8278dc07558034d1ead43d1467cbb"
hash9 = "2e999f22d7fa0d018342d235067b5bb879b4505bb0e42156f816d38ae61cd3fe"
hash10 = "c92d9638c8fb2b0556802ea87082be829f50dd7d29579a1a893ade35bd7a9256"
hash11 = "a0e6799ed9cb59ac3aeab73f2c10015fbabbacc850b56148778f69cc38835d27"
hash12 = "a8efd58c2f819b96742b10bad9aa76494731295f32ccc9897d3694944017b2a4"
hash13 = "2df4f0927f0f73ff7ca38a4edfe9406be229985fd5ae468d9b5aa19b9b0cd0ac"
hash14 = "ba3e5e8af6d21e5fa3a78b69a87ca1cd39afd4342795f514bd651af81e9b8e47"
hash15 = "3b38ac70eac888ba76ae3c5812179863a78b4e63ce92f5108f019bb00f96b35c"
hash16 = "c8eb9182adc12b591cbdafe27759495487a53c0cd38f83f77f575edf21e5d4b3"
hash17 = "a35d47fde5d36de866ba7fbe638c7ea9f5860962b326484936a992cbba6fa22f"
hash18 = "72356978da0b156bae25c84189c01a47b7c8e8daf22e2be533f1e2733f8372f2"
hash19 = "d274427049b5e28fdd153a0bdbcb08445ffebd9031ed666dba23b62e44b3191a"
hash20 = "b95f40cce47499183ef95d6d56b8b5deed0d99a413a8bd7067200c5b1ae752a9"
hash21 = "4c486b48b0524a9e3059f5dab86bffa9a0fa82787363c7784c624453344dc1d1"
hash22 = "a2cce624ed3e428075dedc5b4243c065baafe0a121de26d686756e487e4d7232"
hash23 = "b81e7c41d4c6cec4c6f99f9e577c8335c685bf09351af664d82c2a97bc12b89c"
strings:
$s1 = "fdopt.data.stream->type == UV_NAMED_PIPE" fullword ascii
$s2 = "process_title" fullword ascii
$s3 = "src/win/process.c" fullword ascii
$s4 = "!process->exit_cb_pending" fullword ascii
$s5 = "src/win/process-stdio.c" fullword ascii
$s6 = "!(options->flags & ~(UV_PROCESS_DETACHED | UV_PROCESS_SETGID | UV_PROCESS_SETUID | UV_PROCESS_WINDOWS_HIDE | UV_PROCESS_WINDOWS_" ascii
$s7 = "!(fdopt.data.stream->flags & UV_HANDLE_PIPESERVER)" fullword ascii
$s8 = "r == target_len" fullword ascii
$s9 = "pipe->u.fd == -1 || pipe->u.fd > 2" fullword ascii
$s10 = "mode == (PIPE_READMODE_BYTE | PIPE_WAIT)" fullword ascii
$s11 = "pipe->flags & UV_HANDLE_READ_PENDING" fullword ascii
$s12 = "Error cleaning up spin_keys for thread " fullword ascii
$s13 = "path_len == buf_sz - (pos - buf)" fullword ascii
$s14 = "!(fdopt.data.stream->flags & UV_HANDLE_CONNECTION)" fullword ascii
$s15 = "handle->pipe.serv.accept_reqs" fullword ascii
$s16 = "req->pipeHandle != INVALID_HANDLE_VALUE" fullword ascii
$s17 = "0 && \"unexpected address family\"" fullword ascii
$s18 = "!(handle->flags & UV_HANDLE_PIPESERVER)" fullword ascii
$s19 = "len > 0 && len < ARRAY_SIZE(key_name)" fullword ascii
$s20 = "((uv_shutdown_t*) req)->handle->type == UV_NAMED_PIPE" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 27000KB and ( 8 of them )
) or ( all of them )
}
rule _match_122 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, e28e3404155556ecafff204356fcc5f0, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, a3b4afa503657e7a327934ddd231887e, b9280790ed58987ab2af68537ad18d6d, b1b0580af0e8fa730486561255426f38, ae33c5c9544d63463cca74c42a556983, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 9b3518901fb21e67bfd3986cdcded31c, 99fe45ec1a50c0413a6dcb1d23b754f9, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash3 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash4 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash5 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash6 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash7 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash8 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash9 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash10 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash11 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash12 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash13 = "0a51f478127b8bcf5dcee926e76bf75ff9f3647c361a23a6683a45778a0594ea"
hash14 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash15 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash16 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash17 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash18 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash19 = "ee7ab7d8bd4643e2f2d63bc0329b21c6d3437beea13fc379ee7fbfc0e326d0f5"
hash20 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash21 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash22 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = "WinRing0x64.sys" fullword wide
$s2 = "co-processor" fullword ascii
$s3 = "[0;31mfailed to get path to driver, error %u" fullword ascii
$s4 = "%s: %s child needs content of length %d" fullword ascii
$s5 = "Registered discovery component `%s' phases 0x%x with priority %u (%s%s)" fullword ascii
$s6 = "Excluding discovery component `%s' phases 0x%x, conflicts with excludes 0x%x" fullword ascii
$s7 = "xml/export/v1: failed to allocated logical_to_v2array" fullword ascii
$s8 = "[1;33mto write MSR registers Administrator privileges required." fullword ascii
$s9 = "[0;31mfailed to remove WinRing0 driver, error %u" fullword ascii
$s10 = "[0;31mfailed to start WinRing0 driver, error %u" fullword ascii
$s11 = "[0;31mfailed to connect to WinRing0 driver, error %u" fullword ascii
$s12 = "Excluding blacklisted discovery component `%s' phases 0x%x" fullword ascii
$s13 = "[0;31mfailed to open service control manager, error %u" fullword ascii
$s14 = "Blacklisting component `%s` phases 0x%x" fullword ascii
$s15 = "[0;31mfailed to install WinRing0 driver, error %u" fullword ascii
$s16 = "[%s] already connected" fullword ascii
$s17 = "Enabling discovery component `%s' with phases 0x%x (among 0x%x)" fullword ascii
$s18 = "Trying discovery component `%s' with phases 0x%x instead of 0x%x" fullword ascii
$s19 = "Disabling discovery component `%s'" fullword ascii
$s20 = "\\\\.\\WinRing0_1_2_0" fullword wide
condition:
( uint16(0) == 0x5a4d and filesize < 13000KB and ( 8 of them )
) or ( all of them )
}
rule _match_132 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, e28e3404155556ecafff204356fcc5f0, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, af408f884178b56843b9f7324bcdefb4, a3b4afa503657e7a327934ddd231887e, b9280790ed58987ab2af68537ad18d6d, b1b0580af0e8fa730486561255426f38, 26fc98d7481f9b494ecbfebacdcbeab3, ae33c5c9544d63463cca74c42a556983, ee3f5f355249823f286f389ce0567002, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 9b3518901fb21e67bfd3986cdcded31c, 99fe45ec1a50c0413a6dcb1d23b754f9, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash3 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash4 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash5 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash6 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash7 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash8 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash9 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash10 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash11 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash12 = "c92d9638c8fb2b0556802ea87082be829f50dd7d29579a1a893ade35bd7a9256"
hash13 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash14 = "0a51f478127b8bcf5dcee926e76bf75ff9f3647c361a23a6683a45778a0594ea"
hash15 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash16 = "b95f40cce47499183ef95d6d56b8b5deed0d99a413a8bd7067200c5b1ae752a9"
hash17 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash18 = "ade656b212a4bef11d70720679ec7fd91586a9507448634cd716178ed908e509"
hash19 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash20 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash21 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash22 = "ee7ab7d8bd4643e2f2d63bc0329b21c6d3437beea13fc379ee7fbfc0e326d0f5"
hash23 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash24 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash25 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = "xmrig-cuda.dll" fullword ascii
$s2 = "nvmlSystemGetDriverVersion" fullword ascii
$s3 = "cuda-loader" fullword ascii
$s4 = "#define LOC_L3 (32 - 18)" fullword ascii
$s5 = "block_template" fullword ascii
$s6 = "[0m huge pages %s%3.0f%% %u/%u" fullword ascii
$s7 = "[0m huge pages %s%3.0f%%" fullword ascii
$s8 = "[0m huge pages %s%1.0f%% %zu/%zu" fullword ascii
$s9 = "[0m huge pages %s%1.0f%% %u/%u" fullword ascii
$s10 = "[%s] incompatible/disabled algorithm \"%s\" detected, reconnect" fullword ascii
$s11 = "[%s] unsupported algorithm \"%s\" detected, reconnect" fullword ascii
$s12 = "nvmlDeviceGetFanSpeed_v2" fullword ascii
$s13 = "[%s] unknown algorithm, make sure you set \"algo\" or \"coin\" option" fullword ascii
$s14 = "[1;37m thread%s)" fullword ascii
$s15 = "max-threads-hint" fullword ascii
$s16 = "[1;32mdataset ready" fullword ascii
$s17 = "[%s] required field " fullword ascii
$s18 = "cpu-max-threads-hint" fullword ascii
$s19 = "[0m for health report" fullword ascii
$s20 = "[0;31m (failed to load CUDA plugin)" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 19000KB and ( 8 of them )
) or ( all of them )
}
rule _match_134 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 6cfc530100079ac1f1ed0cf61bed2ca8, acd5942fee24e5bc6769bb2fb529b695, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, 0086748f3a7854b3a35f69b5285c534f, e28e3404155556ecafff204356fcc5f0, 4d6dff8b2def91e85a09faa27899d9d5, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, af408f884178b56843b9f7324bcdefb4, 51f0f95501d456804707bd997c56b416, fc481ae3e90d67283ce944cefb433d25, a3b4afa503657e7a327934ddd231887e, b3c0545d8bdbd5cd9c4c5cbd4d070d2a, b9280790ed58987ab2af68537ad18d6d, b1b0580af0e8fa730486561255426f38, 26fc98d7481f9b494ecbfebacdcbeab3, ae33c5c9544d63463cca74c42a556983, ee3f5f355249823f286f389ce0567002, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 9b3518901fb21e67bfd3986cdcded31c, 99fe45ec1a50c0413a6dcb1d23b754f9, e97524afde7b751f6b024fa4798bdf51, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "438784b7594602da1a92d67890953b527ef6cb045e0c64ccaa4e78448576fff5"
hash3 = "0083066406394696a0e6f26928d71785bf9fcdecdd6dcf52731a93b78f2cca0c"
hash4 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash5 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash6 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash7 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash8 = "0693cfd2a09f5358cdec077df4cf049c88fe5fcdc606a228e389c9b2e517f965"
hash9 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash10 = "dbc26374af31e9c81b8bc3a6c3063387f587a2596510e2a3be24aea6e025294f"
hash11 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash12 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash13 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash14 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash15 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash16 = "c92d9638c8fb2b0556802ea87082be829f50dd7d29579a1a893ade35bd7a9256"
hash17 = "a8efd58c2f819b96742b10bad9aa76494731295f32ccc9897d3694944017b2a4"
hash18 = "201b177ab0fe48289ac660b899b7813ed6f276a9ea1246574c28ebacb943905d"
hash19 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash20 = "7bf303baebaec1c10be08273dd3d1ce503c4a7e1edaefc6092778b2926ebb278"
hash21 = "0a51f478127b8bcf5dcee926e76bf75ff9f3647c361a23a6683a45778a0594ea"
hash22 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash23 = "b95f40cce47499183ef95d6d56b8b5deed0d99a413a8bd7067200c5b1ae752a9"
hash24 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash25 = "ade656b212a4bef11d70720679ec7fd91586a9507448634cd716178ed908e509"
hash26 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash27 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash28 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash29 = "ee7ab7d8bd4643e2f2d63bc0329b21c6d3437beea13fc379ee7fbfc0e326d0f5"
hash30 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash31 = "b81e7c41d4c6cec4c6f99f9e577c8335c685bf09351af664d82c2a97bc12b89c"
hash32 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash33 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = "Could not read dumped cpuid file %s, ignoring cpuiddump." fullword ascii
$s2 = "* hwloc %s received invalid information from the operating system." fullword ascii
$s3 = "Couldn't find %x,%x,%x,%x in dumped cpuid, returning 0s." fullword ascii
$s4 = "Ignoring dumped cpuid directory." fullword ascii
$s5 = "* hwloc %s was given invalid distances by the user." fullword ascii
$s6 = "* hwloc will now ignore this invalid topology information and continue." fullword ascii
$s7 = "* do not contradict any other topology information." fullword ascii
$s8 = "Failed to allocate %u cpuiddump entries for PU #%u, ignoring cpuiddump." fullword ascii
$s9 = "failed to export hwloc topology." fullword ascii
$s10 = "topology.xml" fullword ascii
$s11 = "<!DOCTYPE topologydiff SYSTEM \"hwloc2-diff.dtd\">" fullword ascii
$s12 = "Co-Processor" fullword ascii
$s13 = "hwloc topology successfully exported to \"%s\"" fullword ascii
$s14 = "<!DOCTYPE topology SYSTEM \"%s\">" fullword ascii
$s15 = "%s: ignoring unknown tag `%s' after root object, expected `distances2'" fullword ascii
$s16 = "%s: %s object not-supported, will be ignored" fullword ascii
$s17 = "* Set HWLOC_DEBUG_CHECK=1 in the environment to detect further issues." fullword ascii
$s18 = "* Please make sure that distances given through the programming API" fullword ascii
$s19 = "--export-topology" fullword ascii
$s20 = "<topology version=\"%u.%u\">" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 25000KB and ( 8 of them )
) or ( all of them )
}
rule _match_142 {
meta:
description = "black - from files 905eeda0ddf717b45bb294b227e6d8ae, 6b97eabf2e7eef8ccfc36593771ebe12, 4396f6981923a6e702a9d18a3d76e482, 20addcaa91c6bc5c7cc665ddb2e8c52c, 97ee5c92d5c865ef6db67c35bc8a427a, 50b754688ea8b1994abc99ea58263ebb, d220d7b9023e6bd3717edc17765fbb25, 0f4acbb2acfaa97b146f4949729d0ec6, 5846aed02e23db1af696661606cf5bfd, cd7e6a6f2e3fc3cb1049efbbf235577f, a7e372d0982334302446756bf112d881, 3934d1adff337a3741fc308eb83daaba, 99bd2332ea3179db7a70a6e66d11e096, 0cf00d65acee7181d4679d2ad3da5301, f8a8bd5eb3b9328c007438070e0c3ca8, 2458b8fb100cb0d0c80a3f62aea0e080, 0742b7c20e14fc0b9390fd5aafef6442, cd9d53902ae60c8a9330b6b145cbe3bb, 80ba21786b71bb0dba959194fa1d3f63, a746e73da04945445e385850616990c9, 6a80142ac8cf4d5534d2eb9cb0e3e08d, ddafbf9406cc26df63a32702126e3fc9, b1a919e6fb009361b64d51b351a25e4c, 3ba79ba35b4b388fe9699e51d4c43fea, e74a8e9fbf1969888d78bfe6bf757759, 9a07ca40de9c85495231302023c6a74a, 2ae5db210e8c7c0c96e6bed93bce1da6, 6bd4123b8dc8281bfee4c09350545c7e, 233cb487009705a47f32a694558deca5, 0cccafcbc4d1a6d50ccd8fa1df89bc0f, 3a69511ef880ea841a6740357901ca61, 74f394c609338509e94d61091a70b6f5"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "a28878f5880b8a1c506258dd39b459cec616f79100afe006b4779525b8a937a3"
hash2 = "d2b4b16be498e2fbe782b6f0e73515f6fc74c7a661c44891a9860cbf2b690d02"
hash3 = "4fd49a0d1574549b4f8b64c9d474417600d6ede505c3997b3b07eb9e92bd440a"
hash4 = "c2389593cb340e9b682e457e6bf926abf1eee594d129c237f3f87852731dba7d"
hash5 = "e91e3d9138b2961bf0807b39ab1c0647e78ccf6985890246db1d698af498e43b"
hash6 = "2efbcf082019f2fe3b7b065842a6e99e0441e7166265d2021695fce00f0d4373"
hash7 = "8d887ba624e0e8f55be8deb805ec25c1a2a34e6fa137b6bc30025cfbc124dfb8"
hash8 = "4c9bf0426483d1f8f7943cb291345134964d237f1b8270f88f51cbdd1557a41e"
hash9 = "5d1ef3f5bc06e457945af001cad5e392eea47ae4486522ad3342f42b6e2b7436"
hash10 = "08e6eb5d64f01d4a982bf75e4ffbec7d0f61d7ece7b7fbfe2fade7ae39ad8884"
hash11 = "d204dc52cd7c86013aa224f66e5631efec50edff579c78d21310c49b05910018"
hash12 = "2fefce5634c8b6f9e334fd6b1c34b86f6cb8278dc07558034d1ead43d1467cbb"
hash13 = "2e999f22d7fa0d018342d235067b5bb879b4505bb0e42156f816d38ae61cd3fe"
hash14 = "a0e6799ed9cb59ac3aeab73f2c10015fbabbacc850b56148778f69cc38835d27"
hash15 = "2df4f0927f0f73ff7ca38a4edfe9406be229985fd5ae468d9b5aa19b9b0cd0ac"
hash16 = "ba3e5e8af6d21e5fa3a78b69a87ca1cd39afd4342795f514bd651af81e9b8e47"
hash17 = "3b38ac70eac888ba76ae3c5812179863a78b4e63ce92f5108f019bb00f96b35c"
hash18 = "9c62abcac2762be0e5abbb7f06ffb65c0b8fbea84d015944b6593453354303eb"
hash19 = "2e4b386aa820c4a1b294274d89652098e4a78921df83b1ed101213f558f704ea"
hash20 = "beae2bc4274deb42c452e6ad910853cfa1a60e05f0180ed43829e2a4f5281e04"
hash21 = "c8eb9182adc12b591cbdafe27759495487a53c0cd38f83f77f575edf21e5d4b3"
hash22 = "a35d47fde5d36de866ba7fbe638c7ea9f5860962b326484936a992cbba6fa22f"
hash23 = "72356978da0b156bae25c84189c01a47b7c8e8daf22e2be533f1e2733f8372f2"
hash24 = "d274427049b5e28fdd153a0bdbcb08445ffebd9031ed666dba23b62e44b3191a"
hash25 = "4c486b48b0524a9e3059f5dab86bffa9a0fa82787363c7784c624453344dc1d1"
hash26 = "ea9d91772dd86455d5bf25c080ed859faae39c7085abb5de0b3142a397e7f131"
hash27 = "3b1a32116390ef2a821cbeb15e214f937293ee39cfde2a2e97f2eb128474bce3"
hash28 = "12a37426a995ef84e905c85a531c2754d10926dfdec03125074f83b738fe40af"
hash29 = "1c6eeaf450250baad8b4bbdcb4539a5ec8ad9878d1ea4c96c493e01cca02f1d2"
hash30 = "4a49d867bbb4e4e36b55c77f0f514fdf18a78b18b701ae853075092ac2893e2e"
hash31 = "477ff70035e7438bbb414dcaf805d93a61dc39f75acf882134097fe3be105e48"
hash32 = "02bd77bfd0a50ae5ea7e8a6587187e84b5c4d0d5638c7559abe609fbebbacd38"
strings:
$s1 = "Hit process or system resource limit at %u connections, temporarily suspending accept(). Consider setting a lower MHD_OPTION_CON" ascii
$s2 = "Hit process or system resource limit at %u connections, temporarily suspending accept(). Consider setting a lower MHD_OPTION_CON" ascii
$s3 = "MHD HTTPS option %d passed to MHD compiled without HTTPS support" fullword ascii
$s4 = "MHD failed to initialize IP connection limit mutex" fullword ascii
$s5 = "<html><head><title>"Host:" header required</title></head><body>In HTTP 1.1, requests must include a "Host:" " ascii
$s6 = "<html><head><title>"Host:" header required</title></head><body>In HTTP 1.1, requests must include a "Host:" " ascii
$s7 = "Failed to bind to port %u: %s" fullword ascii
$s8 = "Hit process or system resource limit at FIRST connection. This is really bad as there is no sane way to proceed. Will try busy w" ascii
$s9 = "Closing connection (failed to create response header)" fullword ascii
$s10 = "Hit process or system resource limit at FIRST connection. This is really bad as there is no sane way to proceed. Will try busy w" ascii
$s11 = "Failed to create listen thread: %s" fullword ascii
$s12 = "Fatal error in GNU libmicrohttpd %s:%u: %s" fullword ascii
$s13 = "<html><head><title>Request too big</title></head><body>Your HTTP header was too big for the memory constraints of this webserver" ascii
$s14 = "header, and your HTTP 1.1 request lacked such a header.</body></html>" fullword ascii
$s15 = "<html><head><title>Request too big</title></head><body>Your HTTP header was too big for the memory constraints of this webserver" ascii
$s16 = "Failed to listen for connections: %s" fullword ascii
$s17 = "Failed to create a thread: %s" fullword ascii
$s18 = "Invalid QoS flow descriptor" fullword ascii
$s19 = "Error during select (%d): `%s'" fullword ascii
$s20 = "Failed to find previously-added IP address" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 27000KB and ( 8 of them )
) or ( all of them )
}
rule _match_161 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, e28e3404155556ecafff204356fcc5f0, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, af408f884178b56843b9f7324bcdefb4, a3b4afa503657e7a327934ddd231887e, b9280790ed58987ab2af68537ad18d6d, b1b0580af0e8fa730486561255426f38, 26fc98d7481f9b494ecbfebacdcbeab3, ae33c5c9544d63463cca74c42a556983, ee3f5f355249823f286f389ce0567002, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 9b3518901fb21e67bfd3986cdcded31c, 5e68b441f8c061285f596c5e0731514d, 99fe45ec1a50c0413a6dcb1d23b754f9, e97524afde7b751f6b024fa4798bdf51, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash3 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash4 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash5 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash6 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash7 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash8 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash9 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash10 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash11 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash12 = "c92d9638c8fb2b0556802ea87082be829f50dd7d29579a1a893ade35bd7a9256"
hash13 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash14 = "0a51f478127b8bcf5dcee926e76bf75ff9f3647c361a23a6683a45778a0594ea"
hash15 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash16 = "b95f40cce47499183ef95d6d56b8b5deed0d99a413a8bd7067200c5b1ae752a9"
hash17 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash18 = "ade656b212a4bef11d70720679ec7fd91586a9507448634cd716178ed908e509"
hash19 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash20 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash21 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash22 = "ee7ab7d8bd4643e2f2d63bc0329b21c6d3437beea13fc379ee7fbfc0e326d0f5"
hash23 = "f56df2b39807ac070aa06c977177aff8c79c48f399fc5b8c904df6c898bf431a"
hash24 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash25 = "b81e7c41d4c6cec4c6f99f9e577c8335c685bf09351af664d82c2a97bc12b89c"
hash26 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash27 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = "if(!get_local_id(1))" fullword ascii
$s2 = "AESExpandKey256(ExpandedKey1);" fullword ascii
$s3 = "((uint4 *)a)[0] ^= tmp;" fullword ascii
$s4 = "ulong tmp[5];" fullword ascii
$s5 = "uint4 tmp;" fullword ascii
$s6 = "ulong tmp[8];" fullword ascii
$s7 = "AESExpandKey256(ExpandedKey2);" fullword ascii
$s8 = "#pragma unroll 1" fullword ascii
$s9 = "h7h ^= input[6]; \\" fullword ascii
$s10 = "barrier(CLK_GLOBAL_MEM_FENCE);" fullword ascii
$s11 = "h3h ^= input[6]; \\" fullword ascii
$s12 = "h5l ^= input[3]; \\" fullword ascii
$s13 = "ulong input[8];" fullword ascii
$s14 = "unsigned int m[16];" fullword ascii
$s15 = "PERM_SMALL_P(State);" fullword ascii
$s16 = "h1l ^= input[3]; \\" fullword ascii
$s17 = "uint4 b_x;" fullword ascii
$s18 = "#pragma unroll 2" fullword ascii
$s19 = "h4l ^= input[1]; \\" fullword ascii
$s20 = "ulong c[2];" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 19000KB and ( 8 of them )
) or ( all of them )
}
rule _match_179 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, e28e3404155556ecafff204356fcc5f0, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, af408f884178b56843b9f7324bcdefb4, a3b4afa503657e7a327934ddd231887e, b1b0580af0e8fa730486561255426f38, 26fc98d7481f9b494ecbfebacdcbeab3, ae33c5c9544d63463cca74c42a556983, ee3f5f355249823f286f389ce0567002, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 9b3518901fb21e67bfd3986cdcded31c, 99fe45ec1a50c0413a6dcb1d23b754f9, e97524afde7b751f6b024fa4798bdf51, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash3 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash4 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash5 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash6 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash7 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash8 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash9 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash10 = "c92d9638c8fb2b0556802ea87082be829f50dd7d29579a1a893ade35bd7a9256"
hash11 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash12 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash13 = "b95f40cce47499183ef95d6d56b8b5deed0d99a413a8bd7067200c5b1ae752a9"
hash14 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash15 = "ade656b212a4bef11d70720679ec7fd91586a9507448634cd716178ed908e509"
hash16 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash17 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash18 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash19 = "ee7ab7d8bd4643e2f2d63bc0329b21c6d3437beea13fc379ee7fbfc0e326d0f5"
hash20 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash21 = "b81e7c41d4c6cec4c6f99f9e577c8335c685bf09351af664d82c2a97bc12b89c"
hash22 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash23 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = "for (int pass=0; pass<2; ++pass)" fullword ascii
$s2 = "*(p++)=0x860e0010u|(dst<<1)|(conditionMaskReg<<8);" fullword ascii
$s3 = "const uint64_t mantissa_mask=(1UL<<mantissa_size)-1;" fullword ascii
$s4 = "*(p++)=0xbf8c0f70u|(vmcnt&15)|((vmcnt>>4)<<14);" fullword ascii
$s5 = "*(p++)=0xbea000ffu;" fullword ascii
$s6 = "const uint32_t sign_b=as_uint2(b).y>>31;" fullword ascii
$s7 = "const uint64_t mantissa_high_bit=1UL<<mantissa_size;" fullword ascii
$s8 = "const uint64_t mantissa_b=(as_ulong(b)&mantissa_mask)|mantissa_high_bit;" fullword ascii
$s9 = "const uint32_t sign_a=as_uint2(a).y>>31;" fullword ascii
$s10 = "const uint32_t exponent_b=(as_uint2(b).y>>20)&exponent_mask;" fullword ascii
$s11 = "if(fma_result[1]==mantissa_high_bit)" fullword ascii
$s12 = "*(p++)=0xbebe00ffu;" fullword ascii
$s13 = "const uint32_t exponent_c=(as_uint2(c).y>>20)&exponent_mask;" fullword ascii
$s14 = "*(p++)=0x8ea28010u|(dst<<1)|((64-shift)<<8);" fullword ascii
$s15 = "const uint64_t mantissa_a=(as_ulong(a)&mantissa_mask)|mantissa_high_bit;" fullword ascii
$s16 = "const uint64_t mantissa_c=(as_ulong(c)&mantissa_mask)|mantissa_high_bit;" fullword ascii
$s17 = "*(p++)=0x8e8e8010u|(src<<1)|(shift<<8);" fullword ascii
$s18 = "*(p++)=0x8fa08010u|(dst<<1)|(shift<<8);" fullword ascii
$s19 = "const uint32_t exponent_a=(as_uint2(a).y>>20)&exponent_mask;" fullword ascii
$s20 = "uint32_t ScratchpadLatency=0;" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 19000KB and ( 8 of them )
) or ( all of them )
}
rule _match_183 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, e28e3404155556ecafff204356fcc5f0, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, a3b4afa503657e7a327934ddd231887e, b9280790ed58987ab2af68537ad18d6d, b1b0580af0e8fa730486561255426f38, ae33c5c9544d63463cca74c42a556983, ee3f5f355249823f286f389ce0567002, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 9b3518901fb21e67bfd3986cdcded31c, 99fe45ec1a50c0413a6dcb1d23b754f9, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash3 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash4 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash5 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash6 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash7 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"
hash8 = "d1882410ced24e9d59a7030d5f6fb1e6b10770f76a949b49050017cbef791bb1"
hash9 = "c57ef432bbd52ce46a57969378d2e60823a4fbeef91184c18f65ace42c4afa03"
hash10 = "8cd3296624a8d68374514831ec48e50833bb74674daa1c774320f158347e6e7b"
hash11 = "702385ae971271eb8402b916152741a9fe15a06f4e221bf2b7b42db69c10ffb5"
hash12 = "ac7bfed9fa8f834cbb5c7c5ab1ddb322887ca8d70527938f2b27cb0dab42906b"
hash13 = "0a51f478127b8bcf5dcee926e76bf75ff9f3647c361a23a6683a45778a0594ea"
hash14 = "aaa916440af3cef8808d70c299328379d7186d7590689e5613f24c3da29e9a1c"
hash15 = "71d448f276e9ec612c908db68bba33c753404e507694900ab48dcb402f62e365"
hash16 = "ade656b212a4bef11d70720679ec7fd91586a9507448634cd716178ed908e509"
hash17 = "48d14096f82f837c4fd18fcff6a9d7947b45e8d092ff99a959cf9d2571205c37"
hash18 = "98d5651f2aea6682d0723074228b3a33c7d71dcabf52fd3e254fc4fd777f5804"
hash19 = "bab19ccd766acbc66644fdd4a2ad6f91c6c0cd850d6bd57c66f86d6e2e99322c"
hash20 = "ee7ab7d8bd4643e2f2d63bc0329b21c6d3437beea13fc379ee7fbfc0e326d0f5"
hash21 = "15bb87399fcfab98e8c527d08882e1c643dd3b99c4213a266b8b0e92bf0c9ade"
hash22 = "3a8f5d98115a3c88eb63ba0cc368dba4e81adae9e72a34b5c714b656211e3f60"
hash23 = "e060fba2f2b159cf1464e76eb995d1443cab68b2f99aa376681a091d3051aaa8"
strings:
$s1 = ".?AVExecuteVmKernel@xmrig@@" fullword ascii
$s2 = ".?AVBlake2bInitialHashKernel@xmrig@@" fullword ascii
$s3 = ".?AVRxRunKernel@xmrig@@" fullword ascii
$s4 = ".?AVHashAesKernel@xmrig@@" fullword ascii
$s5 = ".?AVBlake2bHashRegistersKernel@xmrig@@" fullword ascii
$s6 = ".?AVFindSharesKernel@xmrig@@" fullword ascii
$s7 = ".?AVCn0Kernel@xmrig@@" fullword ascii
$s8 = ".?AVFillAesKernel@xmrig@@" fullword ascii
$s9 = ".?AVOclKernel@xmrig@@" fullword ascii
$s10 = ".?AVCn1Kernel@xmrig@@" fullword ascii
$s11 = ".?AVRxJitKernel@xmrig@@" fullword ascii
$s12 = ".?AVInitVmKernel@xmrig@@" fullword ascii
$s13 = ".?AVCn2Kernel@xmrig@@" fullword ascii
$s14 = ".?AVCnBranchKernel@xmrig@@" fullword ascii
$s15 = ".?AVCudaCnRunner@xmrig@@" fullword ascii
$s16 = ".?AVOclBaseRunner@xmrig@@" fullword ascii
$s17 = ".?AVOclRxJitRunner@xmrig@@" fullword ascii
$s18 = ".?AVCudaBaseRunner@xmrig@@" fullword ascii
$s19 = ".?AVOclRxVmRunner@xmrig@@" fullword ascii
$s20 = ".?AVIRxListener@xmrig@@" fullword ascii
condition:
( uint16(0) == 0x5a4d and filesize < 13000KB and ( 8 of them )
) or ( all of them )
}
rule _match_197 {
meta:
description = "black - from files 0f9eddc5e740edcd96e2f32d6acc3bb3, 8a490aa2517646411b6ea1383f17bbd1, 162a7b063003403841e98dc02aaa6b76, b0bba51294493c6aa40adeba3c70a371, 5f52a27f400818807d2693e1a52260ad, 0086748f3a7854b3a35f69b5285c534f, e28e3404155556ecafff204356fcc5f0, df28944c7a1569a49e64529cbd739aac, b02c64a2e6f556a3088281bed53180a5, 2c4bcb03ce02b34dcaccf12f768e0e55, 503abad89154afa5dc155168c423a404, ef760347014ebf86b83a544b32997fe4, af408f884178b56843b9f7324bcdefb4, 51f0f95501d456804707bd997c56b416, a3b4afa503657e7a327934ddd231887e, b9280790ed58987ab2af68537ad18d6d, b1b0580af0e8fa730486561255426f38, 26fc98d7481f9b494ecbfebacdcbeab3, ae33c5c9544d63463cca74c42a556983, ee3f5f355249823f286f389ce0567002, 62092d967bf0ef931ee7206b3a54b2b8, b85ce83adb5b61a8fb353509f945ec3b, 86d7666073561a5d0ca494d80eae3e5e, 9b3518901fb21e67bfd3986cdcded31c, 99fe45ec1a50c0413a6dcb1d23b754f9, e97524afde7b751f6b024fa4798bdf51, 7a4a5e709646970e205e40f33b1eeecf, aa70ae1a4464eebee96dda065ebdf41e"
author = "yarGen Rule Generator"
reference = "https://github.com/Neo23x0/yarGen"
date = "2020-08-08"
hash1 = "0b3bb29a7523a5ad6a80504d305a7e2b2219089d7c7884fd447d09fe665e456f"
hash2 = "1205b6420a940016fbbf2848a7e53b3840780d943d5e1cf5ac7c1df46f0cac49"
hash3 = "49882a647d1ea3d91880e879b582d9f71b5c4c146f957d76c7e38f2089ddd415"
hash4 = "9b56871e8d0366c5c53283d5f75d6ad69245548a2ba963011002401a51b8fcd9"
hash5 = "9f989edd442d4e2167c35e5eb7d94b82bd537ab0af7dc3c4e38dccbe32c8f7ea"
hash6 = "0693cfd2a09f5358cdec077df4cf049c88fe5fcdc606a228e389c9b2e517f965"
hash7 = "45979695a2ae3d4376849ee004ee5fd7f61e04b2cf7f417fb06d9b5cfc7c46e4"
hash8 = "d0aba3f1fad79fad7f6cf85b87d62b248f8e364c327d8c307aa494cf7358c830"