-
Notifications
You must be signed in to change notification settings - Fork 0
/
repository_vs2024.06.09.yaml
4932 lines (4932 loc) · 147 KB
/
repository_vs2024.06.09.yaml
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- 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
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
- binary_date: 1717883111.0
bytes: 6150751
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: 2903
sha256: 6ba57b9d24540a7a33523e234eb386663b77986e0351fb26dba9964a70800bfe
trace_generation_time: 1719521786.3781853
trace_name: adware.tencent
trace_uri: traces/virussign.com_3564517fcb49ab1824dbf703d3e73c4f.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 8
suspicious: 0
undetected: 63
vt_popular_threat_category:
- count: 3
value: adware
- binary_date: 1717865754.0
bytes: 2812
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: 34
sha256: 4b358f051e3017a53a4c6f72dc065a1ecf6e86dcdd367e30625a575179c1174a
trace_generation_time: 1719521743.5379555
trace_name: trojan.banload/abipe
trace_uri: traces/virussign.com_27a5a2395602672f765c43c520f83df6.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 63
suspicious: 0
undetected: 9
vt_popular_threat_category:
- count: 20
value: trojan
- count: 15
value: miner
- count: 4
value: downloader
- binary_date: 1717742439.0
bytes: 77723
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: 83
sha256: eddccc8d0b53589906defe730a8f30a2ccdc0da0b3c72d3eaef1c9d55687cbcc
trace_generation_time: 1719521782.434164
trace_name: trojan.zusy/injuke
trace_uri: traces/virussign.com_340763ec7471dbb7ea5f994b93ad9edc.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 47
suspicious: 0
undetected: 23
vt_popular_threat_category:
- count: 21
value: trojan
- binary_date: 1717793223.0
bytes: 238
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: 2
sha256: 4cb0116df33a0bfa34a9a0c291465affb39481887efc21a185e971a33e1dfe45
trace_generation_time: 1719522270.0846086
trace_name: trojan.vobfus/chinky
trace_uri: traces/virussign.com_e5e20aa549ec6ae2215bd2ee92ad8cb9.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 65
suspicious: 0
undetected: 7
vt_popular_threat_category:
- count: 20
value: trojan
- count: 15
value: worm
- binary_date: 1717930835.0
bytes: 9942
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: 82
sha256: 4d1808639dd088b4350e1985b228f1337519b1e484204023eec7bdfbe5a5f13f
trace_generation_time: 1719521715.261804
trace_name: trojan.dacic/deepscan
trace_uri: traces/virussign.com_1e4886aae29fdc8b4b3e2e393e2d1269.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 55
suspicious: 0
undetected: 17
vt_popular_threat_category:
- count: 21
value: trojan
- count: 8
value: dropper
- binary_date: 1717791650.0
bytes: 1235404
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: 3696
sha256: d61375b6def10107bb659c4b74e78b1ca6485d24c189c9c2c05bea7be9cbc4a1
trace_generation_time: 1719521692.3256812
trace_name: virus.expiro/moiva
trace_uri: traces/virussign.com_170ebec05c82650637724311dc2b3f65.vir.pcap
vt_last_analysis_stats:
harmless: 0
malicious: 50
suspicious: 0
undetected: 22
vt_popular_threat_category: