forked from MISP/misp-galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtool.json
1164 lines (1164 loc) · 33.1 KB
/
tool.json
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
{
"values": [
{
"value": "PlugX",
"description": "Malware"
},
{
"value": "MSUpdater"
},
{
"value": "Lazagne",
"description": "A password recovery tool regularly used by attackers"
},
{
"value": "Poison Ivy",
"description": "Poison Ivy is a RAT which was freely available and first released in 2005.",
"meta": {
"refs": [
"https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/rpt-poison-ivy.pdf"
]
}
},
{
"value": "SPIVY",
"description": "In March 2016, Unit 42 observed this new Poison Ivy variant we’ve named SPIVY being deployed via weaponized documents leveraging CVE-2015-2545.",
"meta": {
"refs": [
"http://researchcenter.paloaltonetworks.com/2016/04/unit42-new-poison-ivy-rat-variant-targets-hong-kong-pro-democracy-activists/"
]
}
},
{
"value": "Torn RAT"
},
{
"value": "OzoneRAT",
"meta": {
"refs": [
"https://blog.fortinet.com/2016/08/29/german-speakers-targeted-by-spam-leading-to-ozone-rat"
],
"synonyms": [
"Ozone RAT",
"ozonercp"
]
}
},
{
"value": "ZeGhost"
},
{
"value": "Backdoor.Dripion",
"description": "Backdoor.Dripion was custom developed, deployed in a highly targeted fashion, and used command and control servers disguised as antivirus company websites.",
"meta": {
"refs": [
"http://www.symantec.com/connect/blogs/taiwan-targeted-new-cyberespionage-back-door-trojan"
],
"synonyms": [
"Dripion"
]
}
},
{
"value": "Elise Backdoor",
"synonyms": [
"Elise"
]
},
{
"value": "Trojan.Laziok",
"meta": {
"synonyms": [
"Laziok"
],
"refs": [
"http://www.symantec.com/connect/blogs/new-reconnaissance-threat-trojanlaziok-targets-energy-sector"
]
},
"description": "A new information stealer, Trojan.Laziok, acts as a reconnaissance tool allowing attackers to gather information and tailor their attack methods for each compromised computer."
},
{
"value": "Slempo",
"description": "Android-based malware",
"meta": {
"synonyms": [
"GM-Bot",
"Acecard"
]
}
},
{
"value": "PWOBot",
"description": "We have discovered a malware family named ‘PWOBot’ that is fairly unique because it is written entirely in Python, and compiled via PyInstaller to generate a Microsoft Windows executable. The malware has been witnessed affecting a number of Europe-based organizations, particularly in Poland. Additionally, the malware is delivered via a popular Polish file-sharing web service.",
"meta": {
"refs": [
"http://researchcenter.paloaltonetworks.com/2016/04/unit42-python-based-pwobot-targets-european-organizations/"
]
}
},
{
"value": "Lstudio"
},
{
"value": "Joy RAT"
},
{
"value": "Lost Door RAT",
"descriptions": "We recently came across a cyber attack that used a remote access Trojan (RAT) called Lost Door, a tool currently offered on social media sites. What also struck us the most about this RAT (detected as BKDR_LODORAT.A) is how it abuses the Port Forward feature in routers.",
"meta": {
"synonyms": [
"LostDoor RAT"
],
"refs": [
"http://blog.trendmicro.com/trendlabs-security-intelligence/lost-door-rat-accessible-customizable-attack-tool/"
]
}
},
{
"value": "njRAT",
"meta": {
"synonyms": [
"Bladabindi"
],
"refs": [
"http://www.fidelissecurity.com/files/files/FTA_1009-njRAT_Uncovered_rev2.pdf"
]
}
},
{
"value": "NanoCoreRAT",
"meta": {
"synonyms": [
"NanoCore"
],
"refs": [
"http://www.symantec.com/connect/blogs/nanocore-another-rat-tries-make-it-out-gutter"
]
}
},
{
"value": "Sakula",
"meta": {
"synonyms": [
"Sakurel"
]
}
},
{
"value": "Derusbi"
},
{
"value": "EvilGrab"
},
{
"value": "IEChecker"
},
{
"value": "Trojan.Naid"
},
{
"value": "Backdoor.Moudoor"
},
{
"value": "NetTraveler"
},
{
"value": "Winnti"
},
{
"value": "Mimikatz"
},
{
"value": "WEBC2"
},
{
"value": "Pirpi",
"meta": {
"refs": [
"http://www.symantec.com/connect/blogs/buckeye-cyberespionage-group-shifts-gaze-us-hong-kong"
]
}
},
{
"value": "RARSTONE"
},
{
"value": "BACKSPACe"
},
{
"value": "XSControl"
},
{
"value": "NETEAGLE"
},
{
"value": "Agent.BTZ",
"meta": {
"synonyms": [
"ComRat"
]
}
},
{
"value": "Heseber BOT",
"description": "RAT bundle with standard VNC (to avoid/limit A/V detection)."
},
{
"value": "Agent.dne"
},
{
"value": "Wipbot"
},
{
"value": "Turla"
},
{
"value": "Uroburos"
},
{
"value": "Winexe"
},
{
"value": "Dark Comet",
"description": "RAT initialy identified in 2011 and still actively used."
},
{
"value": "AlienSpy",
"description": "RAT for Apple OS X platforms"
},
{
"value": "Cadelspy",
"meta": {
"synonyms": [
"WinSpy"
]
}
},
{
"value": "CMStar",
"meta": {
"refs": [
"http://researchcenter.paloaltonetworks.com/2016/03/digital-quartermaster-scenario-demonstrated-in-attacks-against-the-mongolian-government/"
]
}
},
{
"value": "DHS2015",
"meta": {
"synonyms": [
"iRAT"
],
"refs": [
"https://securelist.com/files/2015/02/The-Desert-Falcons-targeted-attacks.pdf"
]
}
},
{
"value": "Gh0st Rat",
"description": "Gh0st Rat is a well-known Chinese remote access trojan which was originally made by C.Rufus Security Team several years ago.",
"meta": {
"synonyms": [
"Gh0stRat, GhostRat"
],
"refs": [
"http://download01.norman.no/documents/ThemanyfacesofGh0stRat.pdf"
]
}
},
{
"value": "Fakem RAT",
"description": "Fakem RAT makes their network traffic look like well-known protocols (e.g. Messenger traffic, HTML pages). ",
"meta": {
"synonyms": [
"FAKEM"
],
"refs": [
"http://www.trendmicro.com/cloud-content/us/pdfs/security-intelligence/white-papers/wp-fakem-rat.pdf"
]
}
},
{
"value": "MFC Huner",
"meta": {
"synonyms": [
"Hupigon",
"BKDR_HUPIGON"
],
"refs": [
"http://blog.trendmicro.com/trendlabs-security-intelligence/japan-us-defense-industries-among-targeted-entities-in-latest-attack/"
]
}
},
{
"value": "Blackshades",
"description": "Blackshades Remote Access Tool targets Microsoft Windows operating systems. Authors were arrested in 2012 and 2014.",
"meta": {
"refs": [
"https://www.justice.gov/usao-sdny/pr/manhattan-us-attorney-and-fbi-assistant-director-charge-announce-charges-connection",
"https://blog.malwarebytes.org/intelligence/2012/06/you-dirty-rat-part-2-blackshades-net/"
]
}
},
{
"value": "CORESHELL"
},
{
"value": "CHOPSTICK"
},
{
"value": "SOURFACE"
},
{
"value": "OLDBAIT"
},
{
"value": "Havex RAT",
"meta": {
"synonyms": [
"Havex"
]
}
},
{
"value": "KjW0rm",
"description": "RAT initially written in VB.",
"meta": {
"refs": [
"https://www.sentinelone.com/blog/understanding-kjw0rm-malware-we-dive-in-to-the-tv5-cyber-attack/"
]
}
},
{
"value": "TinyTyphon"
},
{
"value": "Badnews"
},
{
"value": "LURK"
},
{
"value": "Oldrea"
},
{
"value": "AmmyAdmin"
},
{
"value": "Matryoshka"
},
{
"value": "TinyZBot"
},
{
"value": "GHOLE"
},
{
"value": "CWoolger"
},
{
"value": "FireMalv"
},
{
"value": "Regin"
},
{
"value": "Duqu"
},
{
"value": "Flame"
},
{
"value": "Stuxnet"
},
{
"value": "EquationLaser"
},
{
"value": "EquationDrug"
},
{
"value": "DoubleFantasy"
},
{
"value": "TripleFantasy"
},
{
"value": "Fanny"
},
{
"value": "GrayFish"
},
{
"value": "Babar"
},
{
"value": "Bunny"
},
{
"value": "Casper"
},
{
"value": "NBot"
},
{
"value": "Tafacalou"
},
{
"value": "Tdrop"
},
{
"value": "Troy"
},
{
"value": "Tdrop2"
},
{
"value": "ZXShell",
"meta": {
"synonyms": [
"Sensode"
],
"refs": [
"http://www.fireeye.com/blog/uncategorized/2014/02/operation-snowman-deputydog-actor-compromises-us-veterans-of-foreign-wars-website.html"
]
}
},
{
"value": "T9000",
"meta": {
"refs": [
"http://researchcenter.paloaltonetworks.com/2016/02/t9000-advanced-modular-backdoor-uses-complex-anti-analysis-techniques/"
]
}
},
{
"value": "T5000",
"meta": {
"synonyms": [
"Plat1"
],
"refs": [
"http://www.cylance.com/techblog/Grand-Theft-Auto-Panda.shtml"
]
}
},
{
"value": "Taidoor",
"meta": {
"refs": [
"http://www.symantec.com/connect/blogs/trojantaidoor-takes-aim-policy-think-tanks"
]
}
},
{
"value": "Swisyn",
"meta": {
"refs": [
"http://labs.alienvault.com/labs/index.php/2013/latest-adobe-pdf-exploit-used-to-target-uyghur-and-tibetan-activists/"
]
}
},
{
"value": "Rekaf",
"meta": {
"refs": [
"https://www.proofpoint.com/us/exploring-bergard-old-malware-new-tricks"
]
}
},
{
"value": "Scieron"
},
{
"value": "SkeletonKey",
"meta": {
"refs": [
"http://www.secureworks.com/cyber-threat-intelligence/threats/skeleton-key-malware-analysis/"
]
}
},
{
"value": "Skyipot",
"meta": {
"refs": [
"http://labs.alienvault.com/labs/index.php/2011/another-sykipot-sample-likely-targeting-us-federal-agencies/"
]
}
},
{
"value": "Spindest",
"meta": {
"refs": [
"http://www.threatconnect.com/news/threatconnect-enables-healthy-networking-biomed-life-sciences-industry/"
]
}
},
{
"value": "Preshin"
},
{
"value": "Oficla"
},
{
"value": "PCClient RAT",
"meta": {
"refs": [
"http://researchcenter.paloaltonetworks.com/2014/10/new-indicators-compromise-apt-group-nitro-uncovered/"
]
}
},
{
"value": "Plexor"
},
{
"value": "Mongall",
"meta": {
"refs": [
"https://www.fireeye.com/blog/threat-research/2014/09/the-path-to-mass-producing-cyber-attacks.html"
]
}
},
{
"value": "NeD Worm",
"meta": {
"refs": [
"http://www.clearskysec.com/dustysky/"
]
}
},
{
"value": "NewCT",
"meta": {
"refs": [
"https://www.fireeye.com/blog/threat-research/2014/09/the-path-to-mass-producing-cyber-attacks.html"
]
}
},
{
"value": "Nflog",
"meta": {
"refs": [
"https://www.fireeye.com/blog/threat-research/2014/09/the-path-to-mass-producing-cyber-attacks.html"
]
}
},
{
"value": "Janicab",
"meta": {
"refs": [
"http://blog.avast.com/2013/07/22/multisystem-trojan-janicab-attacks-windows-and-macosx-via-scripts/"
]
}
},
{
"value": "Jripbot",
"meta": {
"synonyms": [
"Jiripbot"
],
"refs": [
"http://www.symantec.com/content/en/us/enterprise/media/security_response/whitepapers/butterfly-corporate-spies-out-for-financial-gain.pdf"
]
}
},
{
"value": "Jolob",
"meta": {
"refs": [
"http://pwc.blogs.com/cyber_security_updates/2014/10/scanbox-framework-whos-affected-and-whos-using-it-1.html"
]
}
},
{
"value": "IsSpace",
"meta": {
"refs": [
"https://www.fireeye.com/blog/threat-research/2014/09/the-path-to-mass-producing-cyber-attacks.html"
]
}
},
{
"value": "Hoardy",
"meta": {
"synonyms": [
"Hoarde",
"Phindolp",
"BS2005"
]
}
},
{
"value": "Htran",
"meta": {
"refs": [
"http://www.secureworks.com/research/threats/htran/"
]
}
},
{
"value": "HTTPBrowser",
"meta": {
"synonyms": [
"TokenControl"
],
"refs": [
"https://www.threatstream.com/blog/evasive-maneuvers-the-wekby-group-attempts-to-evade-analysis-via-custom-rop"
]
}
},
{
"value": "Disgufa"
},
{
"value": "Elirks"
},
{
"value": "Snifula",
"meta": {
"synonyms": [
"Ursnif"
],
"refs": [
"https://www.circl.lu/pub/tr-13/"
]
}
},
{
"value": "Aumlib",
"meta": {
"synonyms": [
"Yayih",
"mswab",
"Graftor"
],
"refs": [
"http://www.cybersquared.com/killing-with-a-borrowed-knife-chaining-core-cloud-service-profile-infrastructure-for-cyber-attacks"
]
}
},
{
"value": "CTRat",
"meta": {
"refs": [
"http://www.fireeye.com/blog/technical/threat-intelligence/2014/07/spy-of-the-tiger.html"
]
}
},
{
"value": "Emdivi",
"meta": {
"synonyms": [
"Newsripper"
],
"refs": [
"http://www.symantec.com/connect/blogs/operation-cloudyomega-ichitaro-zero-day-and-ongoing-cyberespionage-campaign-targeting-japan"
]
}
},
{
"value": "Etumbot",
"meta": {
"synonyms": [
"Exploz",
"Specfix",
"RIPTIDE"
],
"refs": [
"www.arbornetworks.com/asert/wp-content/uploads/2014/06/ASERT-Threat-Intelligence-Brief-2014-07-Illuminating-Etumbot-APT.pdf"
]
}
},
{
"value": "Fexel",
"meta": {
"synonyms": [
"Loneagent"
]
}
},
{
"value": "Fysbis",
"meta": {
"refs": [
"http://researchcenter.paloaltonetworks.com/2016/02/a-look-into-fysbis-sofacys-linux-backdoor/"
]
}
},
{
"value": "Hikit",
"meta": {
"refs": [
"https://blog.bit9.com/2013/02/25/bit9-security-incident-update/"
]
}
},
{
"value": "Hancitor",
"meta": {
"refs": [
"https://www.proofpoint.com/us/threat-insight/post/hancitor-ruckguv-reappear"
],
"synonyms": [
"Tordal",
"Chanitor"
]
}
},
{
"value": "Ruckguv",
"meta": {
"refs": [
"https://www.proofpoint.com/us/threat-insight/post/hancitor-ruckguv-reappear"
]
}
},
{
"value": "HerHer Trojan",
"meta": {
"refs": [
"http://researchcenter.paloaltonetworks.com/2016/05/the-oilrig-campaign-attacks-on-saudi-arabian-organizations-deliver-helminth-backdoor/"
]
}
},
{
"value": "Helminth backdoor",
"meta": {
"refs": [
"http://researchcenter.paloaltonetworks.com/2016/05/the-oilrig-campaign-attacks-on-saudi-arabian-organizations-deliver-helminth-backdoor/"
]
}
},
{
"value": "HDRoot",
"meta": {
"refs": [
"http://williamshowalter.com/a-universal-windows-bootkit/"
]
}
},
{
"value": "IRONGATE",
"meta": {
"refs": [
"https://www.fireeye.com/blog/threat-research/2016/06/irongate_ics_malware.html"
]
}
},
{
"value": "ShimRAT",
"meta": {
"refs": [
"https://foxitsecurity.files.wordpress.com/2016/06/fox-it_mofang_threatreport_tlp-white.pdf"
]
}
},
{
"value": "X-Agent",
"meta": {
"refs": [
"http://blog.trendmicro.com/trendlabs-security-intelligence/pawn-storm-update-ios-espionage-app-found/"
],
"synonyms": [
"XAgent"
]
}
},
{
"value": "X-Tunnel",
"meta": {
"synonyms": [
"XTunnel"
]
}
},
{
"value": "Foozer",
"meta": {
"refs": [
"https://www.crowdstrike.com/blog/bears-midst-intrusion-democratic-national-committee/"
]
}
},
{
"value": "WinIDS",
"meta": {
"refs": [
"https://www.crowdstrike.com/blog/bears-midst-intrusion-democratic-national-committee/"
]
}
},
{
"value": "DownRange",
"meta": {
"refs": [
"https://www.crowdstrike.com/blog/bears-midst-intrusion-democratic-national-committee/"
]
}
},
{
"value": "Mad Max",
"meta": {
"refs": [
"https://www.arbornetworks.com/blog/asert/mad-max-dga/"
]
}
},
{
"value": "Crimson",
"description": "Crimson is malware used as part of a campaign known as Operation Transparent Tribe that targeted Indian diplomatic and military victims",
"meta": {
"refs": [
"https://www.proofpoint.com/sites/default/files/proofpoint-operation-transparent-tribe-threat-insight-en.pdf"
]
}
},
{
"value": "Prikormka",
"description": "Operation Groundbait based on our research into the Prikormka malware family. This includes detailed technical analysis of the Prikormka malware family and its spreading mechanisms, and a description of the most noteworthy attack campaigns.",
"meta": {
"refs": [
"http://www.welivesecurity.com/wp-content/uploads/2016/05/Operation-Groundbait.pdf"
]
}
},
{
"value": "NanHaiShu",
"description": "This whitepaper details a malicious program we identify as NanHaiShu. Based on our analysis, the threat actor behind this malware targets government and private-sector organizations.",
"meta": {
"refs": [
"https://www.f-secure.com/documents/996508/1030745/nanhaishu_whitepaper.pdf"
]
}
},
{
"value": "Umbreon",
"description": "Umbreon (sharing the same name as the Pokémon) targets Linux systems, including systems running both Intel and ARM processors, expanding the scope of this threat to include embedded devices as well.",
"meta": {
"refs": [
"http://blog.trendmicro.com/trendlabs-security-intelligence/pokemon-themed-umbreon-linux-rootkit-hits-x86-arm-systems/"
]
}
},
{
"value": "Odinaff",
"description": "Odinaff is typically deployed in the first stage of an attack, to gain a foothold onto the network, providing a persistent presence and the ability to install additional tools onto the target network. These additional tools bear the hallmarks of a sophisticated attacker which has plagued the financial industry since at least 2013–Carbanak. This new wave of attacks has also used some infrastructure that has previously been used in Carbanak campaigns.",
"refs": [
"https://www.symantec.com/connect/blogs/odinaff-new-trojan-used-high-level-financial-attacks"
]
},
{
"value": "Hworm",
"description": "Unit 42 has observed a new version of Hworm (or Houdini) being used within multiple attacks. This blog outlines technical details of this new Hworm version and documents an attack campaign making use of the backdoor. Of the samples used in this attack, the first we observed were June 2016, while as-of publication we were still seeing attacks as recently as mid-October, suggesting that this is likely an active, ongoing campaign.",
"meta": {
"refs": [
"http://researchcenter.paloaltonetworks.com/2016/10/unit42-houdinis-magic-reappearance/"
],
"synonyms": [
"Houdini"
]
}
},
{
"value": "Backdoor.Dripion",
"description": "Backdoor.Dripion was custom developed, deployed in a highly targeted fashion, and used command and control servers disguised as antivirus company websites.",
"meta": {
"refs": [
"http://www.symantec.com/connect/blogs/taiwan-targeted-new-cyberespionage-back-door-trojan"
],
"synonyms": [
"Dripion"
]
}
},
{
"value": "Adwind",
"description": "Adwind is a backdoor written purely in Java that targets system supporting the Java runtime environment. Commands that can be used, among other things, to display messages on the system, open URLs, update the malware, download/execute files, and download/load plugins. A significant amount of additional functionality can be provided through downloadable plugins, including such things as remote control options and shell command execution.",
"meta": {
"refs": [
"https://securelist.com/blog/research/73660/adwind-faq/"
],
"synonyms": [
"AlienSpy",
"Frutas",
"Unrecom",
"Sockrat",
"JSocket",
"jRat",
"Backdoor:Java/Adwind"
]
}
},
{
"value": "Angler EK",
"description": "Angler Exploit Kit is a hacking tool that is produced to search for Java and Flash Player vulnerabilities on the attacked PC and use them with the aim to distribute malware infections. Angler Exploit Kit commonly checks to see if the PC it is proliferating to has Java or Flash.",
"meta": {
"refs": [
"http://researchcenter.paloaltonetworks.com/2016/06/unit42-understanding-angler-exploit-kit-part-1-exploit-kit-fundamentals/",
"https://blogs.sophos.com/2015/07/21/a-closer-look-at-the-angler-exploit-kit/"
]
}
},
{
"value": "Bedep"
},
{
"value": "Cromptui"
},
{
"value": "Cryptowall",
"description": "CryptoWall is a new and highly destructive variant of ransomware. Ransomware is malicious software (malware) that infects your computer and holds hostage something of value to you in exchange for money. Older ransomware used to block access to computers. Newer ransomware, such as CryptoWall, takes your data hostage."
},
{
"value": "CTB-Locker"
},
{
"value": "Dridex",
"description": "Dridex is a strain of banking malware that leverages macros in Microsoft Office to infect systems. Once a computer has been infected, Dridex attackers can steal banking credentials and other personal information on the system to gain access to the financial records of a user.",
"meta": {
"refs": [
"http://www.symantec.com/content/en/us/enterprise/media/security_response/whitepapers/dridex-financial-trojan.pdf"
],
"synonyms": [
"Cridex"
]
}
},
{
"value": "Fareit"
},
{
"value": "Gafgyt"
},
{
"value": "Gamarue",
"meta": {
"refs": [
"https://blog.gdatasoftware.com/2015/03/24274-the-andromeda-gamarue-botnet-is-on-the-rise-again"
],
"synonyms": [
"Andromeda"
]
}
},
{
"value": "Locky",
"description": "Ransomware"
},
{
"value": "Necurs",
"description": "The Necurs botnet is a distributor of many pieces of malware, most notably Locky.",
"meta": {
"refs": [
"https://en.wikipedia.org/wiki/Necurs_botnet"
]
}
},
{
"value": "Nuclear Pack",
"meta": {
"synonyms": [
"Nuclear EK"
]
}
},
{
"value": "Palevo"
},
{
"value": "Akbot",
"meta": {
"refs": [
"https://en.wikipedia.org/wiki/Akbot"
],
"synonyms": [
"Qbot",
"Qakbot",
"PinkSlipBot"
]
}
},
{
"value": "Rig EK"
},
{
"value": "Teslacrypt"
},
{
"value": "Upatre",
"description": "Upatre is a Trojan downloader that is used to set up other threats on the victim's PC. Upatre has been used recently in several high profile Trojan attacks involving the Gameover Trojan. "
},
{
"value": "Vawtrak",
"description": "Vawtrak is an information stealing malware family that is primarily used to gain unauthorised access to bank accounts through online banking websites.",
"meta": {
"refs": [
"https://www.sophos.com/medialibrary/PDFs/technical%20papers/sophos-vawtrak-international-crimeware-as-a-service-tpna.pdf"
]
}
},
{
"value": "Empire",