-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrepository_vs2024.06.09.yaml
More file actions
5607 lines (5607 loc) · 182 KB
/
repository_vs2024.06.09.yaml
File metadata and controls
5607 lines (5607 loc) · 182 KB
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
title: VirusSign Collection 2024.06.09
description: Traffic generated running VxUnderground VirusSign Collection 2024.06.09
on a Windows 11 machine
creation_date: 20/06/2024
version: 1.0
traces:
- binary_date: 1717898605.0
bytes: 528
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 4
trace_sha256: 5e94bc0a55461ee1d79dba038f7adf9641f7aa256ddb56078f734ef97e356111
binary_sha256: 6d5746d1b4fbe200c934bd901954c5101db7bc25c0103b5c6e8e278c4b69c755
trace_generation_time: 1719521749.6539884
trace_name: trojan.deepscan/dialer
trace_uri: traces/virussign.com_29ea099e484dd17234ab63098b5ba6d0.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 63
suspicious: 0
undetected: 8
vt_popular_threat_category:
- count: 19
value: trojan
- count: 16
value: downloader
first_packet_ts: 1719392331.612378
last_packet_ts: 1719392331.830508
- binary_date: 1717672661.0
bytes: 2422
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 22
trace_sha256: b4d36fbfbac1e3172dbd831ef88525a1c5db84dbb1fb492623575bb16782b419
binary_sha256: 4742c3049957270612624f673ce6a762cdaf012e694670a15f3c8d8e3d3abdca
trace_generation_time: 1719521634.9653735
trace_name: trojan.zusy/pmnlv
trace_uri: traces/virussign.com_037ee64116d8244e4b7399e5f5fe8b8b.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 54
suspicious: 0
undetected: 20
vt_popular_threat_category:
- count: 20
value: trojan
- count: 17
value: downloader
first_packet_ts: 1719444494.210586
last_packet_ts: 1719444749.855918
- binary_date: 1717964567.0
bytes: 2313
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 21
trace_sha256: aff8d34e879c3737b3de55144a1ff7e3d517b55b69cfc407885d051c7cc9c9fb
binary_sha256: f5149f0adb0fd5cc6e30a7dc686932c45d1368dff69b76f8650a0cfaf851f44c
trace_generation_time: 1719521781.886161
trace_name: trojan.zusy/r03bc0df724
trace_uri: traces/virussign.com_33c9864a1d2dafcdd86a956ac52bd3d8.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 38
suspicious: 0
undetected: 34
vt_popular_threat_category:
- count: 12
value: trojan
- count: 7
value: downloader
first_packet_ts: 1719307981.503175
last_packet_ts: 1719308237.419722
- binary_date: 1717964929.0
bytes: 2095
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 19
trace_sha256: 430e084a4b56718a04fbfe766d73eb5d0204efc543317c1ebbdc4b98f38c55f3
binary_sha256: 06571421ff41c0bc99fc43099a87cc8d850230b4b2b97634cb4efb448a2b1eeb
trace_generation_time: 1719521649.4374511
trace_name: trojan.zusy/nfccq
trace_uri: traces/virussign.com_0865da2e9d3e3c1dafc759ea2a6ce29f.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 43
suspicious: 0
undetected: 29
vt_popular_threat_category:
- count: 15
value: trojan
- count: 8
value: downloader
first_packet_ts: 1719304852.05195
last_packet_ts: 1719305107.754811
- binary_date: 1717699613.0
bytes: 2422
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.56
infected_mac_address: 00:50:56:8c:a6:4b
packets: 22
trace_sha256: 3d93a2a1bace5630f61d9f648380aac50d655708c2edc38c8a3b4a8367585fb9
binary_sha256: 4cf7885646e6012152a6623fb3001ff2cfb0a606852c19ed5327d513b283d4f3
trace_generation_time: 1719522088.7278054
trace_name: trojan.zusy
trace_uri: traces/virussign.com_795ef69ec9b747935edc46bacd7f9687.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 27
suspicious: 0
undetected: 44
vt_popular_threat_category:
- count: 5
value: trojan
- count: 4
value: downloader
first_packet_ts: 1719251490.166758
last_packet_ts: 1719251746.21206
- binary_date: 1717738287.0
bytes: 2422
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 22
trace_sha256: 74d5a967d68ec57fb82020ab187809a6a1e12bb266fe4de2b3f15298e4c392ce
binary_sha256: c41b98abda1c6999de8617d8c27bba776eab1605a9c165f16fab9ed6e97dcc03
trace_generation_time: 1719521712.1417873
trace_name: trojan.zusy
trace_uri: traces/virussign.com_1d6b73e99eb8875676e4a45237f3bf4a.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 29
suspicious: 0
undetected: 44
vt_popular_threat_category:
- count: 7
value: trojan
- count: 5
value: downloader
first_packet_ts: 1719457592.28461
last_packet_ts: 1719457848.217169
- binary_date: 1717976740.0
bytes: 10603
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 77
trace_sha256: 5136a5cfff97a083e7e1dcab7913bd34cd4fa07d480c1b68efbc64669c59c758
binary_sha256: 14daae75012746ca72becc987821133ed70eb8924c905ea8150650daed3b1fe2
trace_generation_time: 1719521750.7379942
trace_name: trojan.dacic/deepscan
trace_uri: traces/virussign.com_2a07603cff28464f703049dbf2fe8bb9.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 55
suspicious: 0
undetected: 17
vt_popular_threat_category:
- count: 20
value: trojan
- count: 7
value: dropper
first_packet_ts: 1719291698.412568
last_packet_ts: 1719291730.964881
- binary_date: 1717793151.0
bytes: 14144
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 75
trace_sha256: c181053b15a1e3854b954d11b33d0e7a280c9d1071d19e86da926b3c0fbaa28d
binary_sha256: 6a1ce8af18b7cff31c92399bc4125cb5a0b24e80855390564c3a9a1e58e63ed2
trace_generation_time: 1719521665.9735398
trace_name: trojan.snojan/corewarrior
trace_uri: traces/virussign.com_0d8cd9b0c3da02d535664646b7ea478a.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 56
suspicious: 0
undetected: 16
vt_popular_threat_category:
- count: 14
value: trojan
- count: 3
value: downloader
- count: 2
value: banker
first_packet_ts: 1719484609.855748
last_packet_ts: 1719484860.655983
- binary_date: 1717789391.0
bytes: 628
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 7
trace_sha256: ab2ae15c4bf513deacd8f2da7127e45c927cd03b1d18f503bb60784145d21382
binary_sha256: d74ab321a5c31a816749c2a041b43e5e13fb210aaff3f68d50ee994bedf55e2c
trace_generation_time: 1719521687.653656
trace_name: trojan.pornoasset/qqpass
trace_uri: traces/virussign.com_1573522cedaa4d648a63f5d4b4626ea5.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 59
suspicious: 0
undetected: 12
vt_popular_threat_category:
- count: 28
value: trojan
- count: 2
value: ransomware
first_packet_ts: 1719361294.029839
last_packet_ts: 1719361309.371473
- binary_date: 1717794652.0
bytes: 22967
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.56
infected_mac_address: 00:50:56:8c:a6:4b
packets: 111
trace_sha256: 5b3536d93c6e8a21d07957a0e8d00f681b19c464ffc290d6b2696c866ddffa0d
binary_sha256: 2ec5049f268789afb2c350939c0f9aadf69bf609d39ba36620bb3d0b39ada31d
trace_generation_time: 1719522069.1557004
trace_name: trojan.snojan/corewarrior
trace_uri: traces/virussign.com_706de487fc2178693bbfcc57b4f57c93.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 54
suspicious: 0
undetected: 18
vt_popular_threat_category:
- count: 13
value: trojan
- count: 2
value: banker
- count: 2
value: downloader
first_packet_ts: 1719243119.178769
last_packet_ts: 1719243378.156605
- binary_date: 1717895412.0
bytes: 2422
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 22
trace_sha256: 0493d87c9c0787f04b8f488b08b20f962da0a197f39e0741ecedd7d784657375
binary_sha256: 0c9e0468b6049bd27b72a5e62f87c93796dea1a6ddc6bda07f41089926b79304
trace_generation_time: 1719521757.754032
trace_name: trojan.zusy/jfwja
trace_uri: traces/virussign.com_2c35ee35a39fd84976fe7db3f70e4788.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 43
suspicious: 0
undetected: 29
vt_popular_threat_category:
- count: 15
value: trojan
- count: 9
value: downloader
first_packet_ts: 1719445328.993231
last_packet_ts: 1719445584.505803
- binary_date: 1717738565.0
bytes: 844
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 10
trace_sha256: d4c17567488fc73ceefd05f9441b6d984a5fc48f86bff7737935b640f8722c27
binary_sha256: d4963ddce27f06654195e4a988b5d2c4adc2d483e05c5c7345c1bd92a1033d3b
trace_generation_time: 1719521745.2099645
trace_name: trojan.agentb/bvip
trace_uri: traces/virussign.com_27e231d4af0cb1e59fb167a64fdf3377.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 63
suspicious: 0
undetected: 10
vt_popular_threat_category:
- count: 32
value: trojan
first_packet_ts: 1719506904.033238
last_packet_ts: 1719507120.127401
- binary_date: 1717681845.0
bytes: 2204
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 20
trace_sha256: 5e16ebfb77ffdbed9f95443d9887909a78c50c24587602f99d914db234d8bd71
binary_sha256: e92ec3f9243648f66ea9168b7e0e599022a198ec7cf98f13220f5c304a6363ed
trace_generation_time: 1719521661.8095176
trace_name: downloader.zusy
trace_uri: traces/virussign.com_0bba56537258e112d8ddef6c9a8a793b.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 26
suspicious: 0
undetected: 43
vt_popular_threat_category:
- count: 4
value: downloader
- count: 3
value: trojan
first_packet_ts: 1719504185.220993
last_packet_ts: 1719504441.061639
- binary_date: 1717907216.0
bytes: 3072375
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 1895
trace_sha256: e09721c07494fdc1f7c3bf0224bcadcefe078d67b0677ef2407145af4e01be68
binary_sha256: 97025cd153103205959012a39620cb9c96d5c6ea7e7a15025e9a0d45233450d3
trace_generation_time: 1719521735.385912
trace_name: miner.xmrminer
trace_uri: traces/virussign.com_24832e6534334dd5317b97a1e34d83e0.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 55
suspicious: 0
undetected: 16
vt_popular_threat_category:
- count: 24
value: miner
- count: 21
value: trojan
- count: 2
value: hacktool
first_packet_ts: 1719491801.327182
last_packet_ts: 1719492098.886115
- binary_date: 1717693622.0
bytes: 2313
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 21
trace_sha256: dbd5d6321f3967c99a7c49823253d6cb2b66a316c9fb517d20b9dd53565cab09
binary_sha256: 50737112dd02a5b86d457404e15fbcc87bfb7c5ba76cfb1da46c35ecf6ae3bf0
trace_generation_time: 1719521786.7421873
trace_name: trojan.zusy
trace_uri: traces/virussign.com_35d5ff0e50af879b500e694c9ba57073.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 30
suspicious: 0
undetected: 43
vt_popular_threat_category:
- count: 6
value: trojan
- count: 4
value: downloader
first_packet_ts: 1719396251.973633
last_packet_ts: 1719396507.716432
- binary_date: 1717738714.0
bytes: 2640
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 24
trace_sha256: a2e2d0b447eaf720f7cbb34c5b1ebf7f9451dc98c7ab98778bac7555cb5381b2
binary_sha256: 1e0a669fa3530773a5072fb74f4b340ca4135407261aa4f09a3ba0b73d67a435
trace_generation_time: 1719521762.5260575
trace_name: trojan.zusy
trace_uri: traces/virussign.com_2d5bbcff9e1e70404faed388b96216c3.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 29
suspicious: 0
undetected: 44
vt_popular_threat_category:
- count: 7
value: trojan
- count: 5
value: downloader
first_packet_ts: 1719464127.024288
last_packet_ts: 1719464383.041162
- binary_date: 1717969985.0
bytes: 2204
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.56
infected_mac_address: 00:50:56:8c:a6:4b
packets: 20
trace_sha256: a7aab3bf4a2765c98e92c5c851a125e8ba6fe799dff095c80d00e6a4ec447098
binary_sha256: 514016e222ed2167705cfe30968d5428f8e2eaaf58046f123795c956ad7ed092
trace_generation_time: 1719522064.0796733
trace_name: trojan.zusy/r03bc0df724
trace_uri: traces/virussign.com_6e8e7be9c377ee4ad02d7e516fc0fed5.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 36
suspicious: 0
undetected: 34
vt_popular_threat_category:
- count: 10
value: trojan
- count: 7
value: downloader
first_packet_ts: 1719325769.679716
last_packet_ts: 1719326031.082348
- binary_date: 1717905964.0
bytes: 2077767
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.55
infected_mac_address: 00:50:56:8c:9d:9e
packets: 4458
trace_sha256: 20d934251c876164ef3dc6b0354619f447ba96f9e638a2715bada0c37c5f8c63
binary_sha256: 382ff534e7776f85f0f272bd1d080e74104a00b021ca46775a7e5cdcd1798967
trace_generation_time: 1719522018.115427
trace_name: virus.expiro/moiva
trace_uri: traces/virussign.com_5cdaefe8c260ed4139671e70369ca6ed.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 55
suspicious: 0
undetected: 15
vt_popular_threat_category:
- count: 16
value: virus
- count: 3
value: trojan
first_packet_ts: 1719257757.703131
last_packet_ts: 1719258055.286625
- binary_date: 1717791914.0
bytes: 3590528
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 2496
trace_sha256: ed9af4b55db3b667fa44d66d461fe1d2536167804002aeb163b5b53b6c802831
binary_sha256: 5d2e8d3e7f193e6fc27aed4a0ec1cbc0e21e1eddfa79ab44184a174677403211
trace_generation_time: 1719521657.9134967
trace_name: miner.xmrminer
trace_uri: traces/virussign.com_0af9e6a85a5808d05f1f545ae0672399.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 55
suspicious: 0
undetected: 15
vt_popular_threat_category:
- count: 26
value: miner
- count: 21
value: trojan
- count: 2
value: hacktool
first_packet_ts: 1719462492.974861
last_packet_ts: 1719462788.809506
- binary_date: 1717618509.0
bytes: 2313
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 21
trace_sha256: 8ba85229d155a9b15f78b6834a92606692846176798be420e7c8bbb330ad1aa0
binary_sha256: adb23281b20a7fbff36f700baa97cb3aad656ce76b7f5854ab0d6c48a20ec723
trace_generation_time: 1719521639.6813989
trace_name: trojan.zusy
trace_uri: traces/virussign.com_050fede3d4f3472e4e526db50efb6593.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 28
suspicious: 0
undetected: 45
vt_popular_threat_category:
- count: 7
value: trojan
- count: 3
value: downloader
first_packet_ts: 1719409721.153771
last_packet_ts: 1719409977.309076
- binary_date: 1717997449.0
bytes: 18016659
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.57
infected_mac_address: 00:50:56:8c:6f:c9
packets: 11972
trace_sha256: d37259eec9b0d0824b2d8f45c21ad33b62f33e33a3a5e1bdde0938de52b07c97
binary_sha256: 49831086fa8ad8d3f9f97aa8eea8d23900c13f4b74715f881c9b3e69b9829a50
trace_generation_time: 1719522224.668409
trace_name: trojan.flystudio/startpage1
trace_uri: traces/virussign.com_c75234cc73e771b204fdde321d2a40bf.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 51
suspicious: 0
undetected: 20
vt_popular_threat_category:
- count: 19
value: trojan
- count: 6
value: downloader
- count: 2
value: pua
first_packet_ts: 1719248857.096707
last_packet_ts: 1719248983.307772
- binary_date: 1718022125.0
bytes: 3298785
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 2089
trace_sha256: dbfb3acd035e9cae38bdb72b852162c928400a9ee9cecad7fbfb6714e95b3461
binary_sha256: 57b12a743856878c4d421d2752825d8e90b79856b020f12eec9b409ccf6ce52c
trace_generation_time: 1719521746.6419723
trace_name: miner.xmrminer
trace_uri: traces/virussign.com_28bbf8c3b2b1a6a82008314706c4540e.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 55
suspicious: 0
undetected: 16
vt_popular_threat_category:
- count: 23
value: miner
- count: 21
value: trojan
- count: 2
value: hacktool
first_packet_ts: 1719237846.095265
last_packet_ts: 1719238142.401888
- binary_date: 1717793283.0
bytes: 21789
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 99
trace_sha256: 4b8bac826f67022df159c238f3ddda87a1faf4a50c3d24a296c5b66a6b191ef6
binary_sha256: 6cb3445c810ba95bfa7cc1fb02f6d59ef30835a72edf244a42a7cb1eec3e25b6
trace_generation_time: 1719521691.3136756
trace_name: trojan.snojan/corewarrior
trace_uri: traces/virussign.com_1643117be0fd92ff4667b0517cc557e6.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 53
suspicious: 0
undetected: 18
vt_popular_threat_category:
- count: 13
value: trojan
- count: 2
value: banker
- count: 2
value: downloader
first_packet_ts: 1719281850.500264
last_packet_ts: 1719282094.696822
- binary_date: 1717708022.0
bytes: 2531
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 23
trace_sha256: f27d57e21c8eef3ffbcaf0b6299f4cb8e7feaac0ca4cc9e1eb01971d6d46c792
binary_sha256: 46c11156e0c87fb37489d8da47e768c49e4873508e21857ed2d774b2a81ddde1
trace_generation_time: 1719521703.673742
trace_name: trojan.zusy/sdum
trace_uri: traces/virussign.com_1b006891e0ac0d4a85d6f91245cfc69b.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 31
suspicious: 0
undetected: 42
vt_popular_threat_category:
- count: 8
value: trojan
- count: 4
value: downloader
first_packet_ts: 1719238632.488942
last_packet_ts: 1719238888.174675
- binary_date: 1717687024.0
bytes: 2313
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 21
trace_sha256: 9b2b38ef5302a9041d4243dd9ec89c1c1cabb9e385f91f214960e43694cbb988
binary_sha256: fe1731592b5636a7ef0bf4a4f38f656a07ec6cad24d0d87d5de550e247526a16
trace_generation_time: 1719521671.59757
trace_name: trojan.zusy/sdum
trace_uri: traces/virussign.com_0fd15e9db88ae1dfbb0236bbfa6153b6.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 28
suspicious: 0
undetected: 45
vt_popular_threat_category:
- count: 6
value: trojan
- count: 4
value: downloader
first_packet_ts: 1719285253.167951
last_packet_ts: 1719285508.703241
- binary_date: 1717736617.0
bytes: 2313
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.55
infected_mac_address: 00:50:56:8c:9d:9e
packets: 21
trace_sha256: fdd9ff60bb1caee1fbf01a81472038474b8b2d70afec7bb69141a70c719fdcaf
binary_sha256: 3f7d6c77a69a96b00d45275a4aeee545d7e9f533e1552105b55d8873f682698b
trace_generation_time: 1719521946.1830416
trace_name: trojan.zusy
trace_uri: traces/virussign.com_440fdec8c4908784fcec5382096e68b2.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 30
suspicious: 0
undetected: 43
vt_popular_threat_category:
- count: 6
value: trojan
- count: 5
value: downloader
first_packet_ts: 1719338191.873284
last_packet_ts: 1719338447.65683
- binary_date: 1717966054.0
bytes: 3649296
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 2073
trace_sha256: bb0b4563a11d2f03971f0093332e955555bec66b4ea30f2fc64608a22889ab9e
binary_sha256: 78fa5bce3a902cc0d226d78f61d38ba9d08dc1f9327b9f9c3831825c4baa154a
trace_generation_time: 1719521733.8179035
trace_name: miner.dacic/deepscan
trace_uri: traces/virussign.com_242281bf0994ad7fb87c0dbc3ac2bc5f.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 60
suspicious: 0
undetected: 12
vt_popular_threat_category:
- count: 29
value: miner
- count: 14
value: trojan
- count: 5
value: pua
first_packet_ts: 1719388530.058297
last_packet_ts: 1719388826.946238
- binary_date: 1717742926.0
bytes: 2422
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 22
trace_sha256: 1230ac09ca938aa61dff14a816f52668c7d669317d67c053a2f5c76e601cb6a3
binary_sha256: 2f00ad5b9c3cedc3c91c032fdff83fcd02bf76912aecbead882900c14da7ec3f
trace_generation_time: 1719521755.2460184
trace_name: trojan.zusy/r002c0df724
trace_uri: traces/virussign.com_2b97ab0416f75412ffccea64e1f3bc30.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 44
suspicious: 0
undetected: 24
vt_popular_threat_category:
- count: 17
value: trojan
- count: 13
value: downloader
first_packet_ts: 1719356055.592469
last_packet_ts: 1719356311.470871
- binary_date: 1717733768.0
bytes: 2313
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 21
trace_sha256: 665596f454adbd8e93bd6a2235eec7ca703157539a4370836d91a4c4b006eef4
binary_sha256: 5f1f017c9fd215577b5399c691d8559ccf56606780de2772887ac49ef58fbdce
trace_generation_time: 1719521643.241418
trace_name: trojan.zusy/juajs
trace_uri: traces/virussign.com_066cb3dc07ed917ab9918dd18fe27870.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 48
suspicious: 0
undetected: 23
vt_popular_threat_category:
- count: 18
value: trojan
- count: 14
value: downloader
first_packet_ts: 1719404617.918803
last_packet_ts: 1719404873.853965
- binary_date: 1498313161.0
bytes: 316
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 2
trace_sha256: 9faf3821b971730d6f8c0583293e7c8215f6309094f70db1eb5118d07c6dda5d
binary_sha256: 549f268e06a84a0e176a7ddc30cd85892fecebd4497812ff64ffc2188f1e6375
trace_generation_time: 1719521638.1213906
trace_name: trojan.webtoolbar/snobar
trace_uri: traces/virussign.com_049e153e113acb6ca3a1bf150accb09f.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 34
suspicious: 0
undetected: 38
vt_popular_threat_category:
- count: 13
value: trojan
- count: 2
value: pua
- count: 2
value: virus
first_packet_ts: 1719488969.091377
last_packet_ts: 1719488969.12574
- binary_date: 1717690861.0
bytes: 2749
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 25
trace_sha256: ff4cdcc59c1c9512e10d5af001d446ab3ee8bb1c9198a9d8975bc413a5fe48e3
binary_sha256: 331f69e54854a1fe41f328f21c1007c39a2baf1f49420d5f502006febb322e36
trace_generation_time: 1719521774.8701236
trace_name: trojan.zusy
trace_uri: traces/virussign.com_3123d6ea786195f0069effce061c3236.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 26
suspicious: 0
undetected: 47
vt_popular_threat_category:
- count: 5
value: trojan
- count: 4
value: downloader
first_packet_ts: 1719295437.80261
last_packet_ts: 1719295693.940221
- binary_date: 1717808237.0
bytes: 108753
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.57
infected_mac_address: 00:50:56:8c:6f:c9
packets: 780
trace_sha256: 69c8740cac87bc8a6d3d8fded8a80f301f89be727f2dc019421d485631ad0b8c
binary_sha256: 63ae048ca0c3b037699539580d4a091980179a89543171b9df183afa233776b4
trace_generation_time: 1719522259.3565614
trace_name: trojan.hematite/agentb
trace_uri: traces/virussign.com_dddff1d936ea9ff3a31f433cda405fba.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 59
suspicious: 0
undetected: 12
vt_popular_threat_category:
- count: 23
value: trojan
- count: 12
value: miner
- count: 2
value: banker
first_packet_ts: 1719239701.578638
last_packet_ts: 1719239996.261964
- binary_date: 1717613490.0
bytes: 2531
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 23
trace_sha256: 0150227ec5696775e1018d82912c10ec1ed02de713169f01817c7573f4ee8268
binary_sha256: 033185e6df627252e5c6dc07583e347c6c6cc921dd06c2edb8dfd9da78f8bf41
trace_generation_time: 1719521777.3341367
trace_name: trojan.zusy
trace_uri: traces/virussign.com_31b8490cbaccff921ed95a9f86b74245.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 30
suspicious: 0
undetected: 43
vt_popular_threat_category:
- count: 7
value: trojan
- count: 4
value: downloader
first_packet_ts: 1719379206.218901
last_packet_ts: 1719379462.037416
- binary_date: 1717966650.0
bytes: 2422
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 22
trace_sha256: 8307f63e0fa58ab4550ea6e628dfb5c2588da3f9272be9d3688fb3cb1edacba8
binary_sha256: dcf66bdb11f1e6bd7d9876a8d4d733bad47875499ab4731111de50e7b1e37c4d
trace_generation_time: 1719521732.7018976
trace_name: trojan.zusy/r03bc0df724
trace_uri: traces/virussign.com_23d0adf40f57d2623e65bdd61acb724c.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 60
suspicious: 0
undetected: 14
vt_popular_threat_category:
- count: 21
value: trojan
- count: 19
value: downloader
first_packet_ts: 1719366368.871021
last_packet_ts: 1719366624.621233
- binary_date: 1717789280.0
bytes: 14368
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 88
trace_sha256: 3838e46ae7b1d8d0a96a37047a1056409e574d5233ec665e34161a4406abec30
binary_sha256: baf6b6dddb6c8c9c811feff2072a56eb140f3a9ee2e52ba19642818d22fd9834
trace_generation_time: 1719521632.1573586
trace_name: trojan.xworm/msil
trace_uri: traces/virussign.com_027990b544d8a2576a9c2f6345907dc5.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 59
suspicious: 0
undetected: 14
vt_popular_threat_category:
- count: 27
value: trojan
first_packet_ts: 1719340588.282472
last_packet_ts: 1719340867.216951
- binary_date: 1717987875.0
bytes: 2749
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 25
trace_sha256: 4196ca1f2c253732efbe40990e7419929fa9d6dd487016814799e670fbfa054f
binary_sha256: 230dbc7315c33c02304ec46b3ae81961f79d24f6ee04fa3cd1322db5ec9fa666
trace_generation_time: 1719521653.9454753
trace_name: trojan.zusy/icknh
trace_uri: traces/virussign.com_0a7f05e1cecab9aa0b9c6824732f564d.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 40
suspicious: 0
undetected: 32
vt_popular_threat_category:
- count: 13
value: trojan
- count: 7
value: downloader
first_packet_ts: 1719277919.414527
last_packet_ts: 1719278175.935483
- binary_date: 1717704186.0
bytes: 844
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.59
infected_mac_address: 00:50:56:8c:6e:c0
packets: 10
trace_sha256: be92cb1ffe671afd7b72be6ebccfb415cdc672baf392f9b736ed1c42492751fb
binary_sha256: db12ac847bc2d8080aa5c3f671b2b1780653f22ea58659f886c950e05115ddd7
trace_generation_time: 1719521631.869357
trace_name: trojan.agentb/bvip
trace_uri: traces/virussign.com_0270d43ec938cfa11e1196309de91947.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 62
suspicious: 0
undetected: 11
vt_popular_threat_category:
- count: 31
value: trojan
first_packet_ts: 1719411885.653858
last_packet_ts: 1719412101.718337
- binary_date: 1717993650.0
bytes: 18039
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.55
infected_mac_address: 00:50:56:8c:9d:9e
packets: 43
trace_sha256: fd15a30d107f50834b30b0cbb6a9b9baf1eeefb52f41202d3ca985c8cd7235f3
binary_sha256: 552088f784162ce9d45c84e10938b54864d043879d98e370f3ec9b73cdaadf0f
trace_generation_time: 1719521982.5712366
trace_name: trojan.hlgxomb/drop
trace_uri: traces/virussign.com_5253a66f795374b762cc77716b022d47.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 60
suspicious: 0
undetected: 11
vt_popular_threat_category:
- count: 28
value: trojan
- count: 10
value: downloader
- count: 6
value: dropper
first_packet_ts: 1719284021.542035
last_packet_ts: 1719284022.204005
- binary_date: 1717789334.0
bytes: 2640
description: VirusSign Collection 2024.06.09
gateway_ip_address: 192.168.1.1
gateway_mac_address: 00:50:56:8c:16:64
infected_ip_address: 192.168.1.55
infected_mac_address: 00:50:56:8c:9d:9e
packets: 24
trace_sha256: 3cd72044842205bc5a3a8e3710dfa36d090f6536066d661b27a1d674b7bf6c40
binary_sha256: d4398ccf206c1b85980a9168be618b6dcd4bb1c8c58eacf9c88fc9a8c8b47167
trace_generation_time: 1719521985.463252
trace_name: trojan.zusy/hfpiq
trace_uri: traces/virussign.com_53d1eb9f3a17576184a8ebdc8b07dbd2.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 46
suspicious: 0
undetected: 24
vt_popular_threat_category:
- count: 18
value: trojan
- count: 14
value: downloader
first_packet_ts: 1719259513.26345
last_packet_ts: 1719259769.225502
- binary_date: 1717883111.0
bytes: 6150751
description: VirusSign Collection 2024.06.09