-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathdata.js
4384 lines (3766 loc) · 154 KB
/
data.js
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
var tabledata = [
{name: "3DS-Code-Loader",
url: "https://github.com/SinaMegapolis/3DS-Code-Loader",
src: "c++",
cats: "loader",
last: "20220801",
vers: "7.6",
desc: "IDA Pro 7.6 Plugin to load ExeFS and CRO code from CXI files."},
{name: "3ds_ida",
url: "https://github.com/kynex7510/3ds_ida",
src: "py",
cats: "loader",
last: "20241110",
desc: "IDA Pro resources for reverse engineering Nintendo 3DS binaries."},
{name: "3DSX Loader",
url: "https://github.com/0xEBFE/3DSX-IDA-PRO-Loader",
src: "py",
cats: "loader",
last: "20211226",
desc: "IDA PRO Loader for 3DSX files"},
{name: "aarch64-sysreg-ida",
url: "https://github.com/TrungNguyen1909/aarch64-sysreg-ida",
src: "py",
last: "20230104",
desc: "IDA plugin to show ARM MSRs nicely."},
{name: "abyss",
url: "https://github.com/patois/abyss",
src: "py",
cats: "decomp",
last: "20221026",
desc: "Postprocess Hexrays Decompiler Output"},
{name: "ActionScript 3",
url: "https://github.com/KasperskyLab/ActionScript3",
src: "py",
cats: "debug, loader, proc",
last: "20181005",
vers: "7.1",
desc: "An ActionScript 3 processor module and Flash debugger plugin."},
{name: "Adobe Flash disassembler",
url: "https://hex-rays.com/contests/2009/SWF/ReadMe.txt",
src: "c++",
cats: "loader, proc",
desc: "The 2 plugins present in this archive will enable IDA to parse SWF files, load all SWF tags as segments for fast search and retrieval, parse all tags that can potentially contain ActionScript2 code, discover all such code(a dedicated processor module has been written for it) and even name the event functions acording to event handled in it (eg. OnInitialize). [Download](https://hex-rays.com/contests/2009/SWF/swf.zip)"},
{name: "aidapal",
url: "https://github.com/atredispartners/aidapal",
src: "py",
cats: "int",
last: "20241118",
desc: "aiDAPal is an IDA Pro plugin that uses a locally running LLM that has been fine-tuned for Hex-Rays pseudocode to assist with code analysis."},
{name: "alleycat",
url: "https://github.com/devttys0/ida/tree/master/plugins/alleycat",
src: "py",
last: "20210602",
desc: "* Finds paths to a given code block inside a function\n* Finds paths between two or more functions\n* Generates interactive call graphs\n* Fully scriptable"},
{name: "ALLirt",
url: "https://github.com/push0ebp/ALLirt",
src: "py",
last: "20190209",
desc: "Converts All of libc to signatures for IDA Pro FLIRT Plugin. and utility make sig with FLAIR easily."},
{name: "AlphaGolang",
url: "https://github.com/SentineLabs/AlphaGolang",
src: "py",
last: "20240201",
vers: "7.6",
desc: "IDApython Scripts for Analyzing Golang Binaries."},
{name: "AMIE",
url: "https://github.com/NeatMonster/AMIE",
src: "py",
last: "20230329",
vers: "7.4",
desc: "A Minimalist Instruction Extender. AMIE is a Python rework of FRIEND that focuses solely on the ARM architecture (only AArch32 and AArch64 are supported). It is both lightweight and dependency-free, and provides the most relevant and up-to-date information about the ARM system registers and instructions."},
{name: "Amnesia",
url: "https://github.com/duo-labs/idapython",
src: "py",
last: "20180426",
desc: "Amnesia is an IDAPython module designed to use byte level heuristics to find ARM thumb instructions in undefined bytes in an IDA Pro database. Currently, the heuristics in this module find code in a few different ways. Some instructions identify and define new code by looking for comon byte sequences that correspond to particular ARM opcodes. Other functions in this module define new functions based on sequences of defined instructions."},
{name: "Android/Linux vmlinux Loader",
url: "https://github.com/nforest/droidimg",
src: "py",
cats: "loader",
last: "20231118",
vers: "7.0",
desc: "vmlinux.py is a python script which can load vmlinux image in both IDA Pro"},
{name: "Android Debugging",
url: "https://github.com/techbliss/ADB_Helper_QT_Super_version",
src: "py",
cats: "debug",
last: "20150405",
desc: "This version have both support for native arm debugging via usb and sdk ADV manager."},
{name: "Android Scripts Collection",
url: "https://github.com/strazzere/android-scripts",
src: "py",
last: "20200503",
desc: "Collection of Android reverse engineering scripts that make my life easier"},
{name: "Andromeda-payload",
url: "https://github.com/0xEBFE/Andromeda-payload",
src: "py",
last: "20130330",
vers: "6.4",
desc: "IDAPython script for decryption payload of Andromeda malware."},
{name: "AntiDebugSeeker",
url: "https://github.com/LAC-Japan/IDA_Plugin_AntiDebugSeeker",
src: "py",
last: "20241113",
desc: "Automatically identify and extract potential anti-debugging techniques used by malware."},
{name: "antiVM",
url: "https://github.com/Hipepper/antiVM",
src: "py",
last: "20220902",
vers: "7.0",
desc: "antiVM aims to quickly identify anti-virtual machine and anti-sandbox behavior. This can speed up malware analysis."},
{name: "AntiXorstr",
url: "https://github.com/lstaroth/AntiXorstr",
src: "py",
cats: "deobf",
last: "20230514",
vers: "7.0",
desc: "Enumerate and automatically decrypt encrypted strings implemented using C++ template techniques without concerning about the algorithmic implementation of the encrypted strings."},
{name: "AphroditeF5",
url: "https://github.com/leommxj/AphroditeF5",
src: "py",
last: "20230726",
desc: "IDA Pro collapse plugin"},
{name: "Apihashes v2",
url: "https://github.com/KasperskyLab/Apihashes",
src: "py",
last: "20220512",
desc: "Automatically identify and mark known hash values for API function names."},
{name: "api_palette",
url: "https://github.com/0xKira/api_palette",
src: "py",
cats: "dev",
last: "20220824",
vers: "7.5",
desc: "A code-searching/completion tool, for IDA APIs. It will be useful for those who write scripts for IDA (in the CLI or the script snippets window)."},
{name: "APIScout",
url: "https://github.com/danielplohmann/apiscout",
src: "py",
last: "20230327",
vers: "7.5",
desc: "This project aims at simplifying Windows API import recovery. As input, arbitrary memory dumps for a known environment can be processed (please note: a reference DB has to be built first, using apiscout/db_builder). The output is an ordered list of identified Windows API references with some meta information, and an ApiVector fingerprint. Includes a convenience GUI wrapper for use in IDA."},
{name: "Appcut",
url: "https://github.com/desperadosec/appcut",
src: "py",
last: "20220906",
desc: "A helper tool to grab binary blobs from IDA-analyzed binaries and wrap them via Python."},
{name: "AutoLibcFlags",
url: "https://github.com/0xMirasio/IDALibcAutoFlags",
src: "py",
cats: "decomp",
last: "20240311",
desc: "Simple plugin to replace decimals flags with enums on standard libc functions."},
{name: "AutoRE",
url: "https://github.com/a1ext/auto_re",
src: "py",
last: "20240905",
desc: "Auto-renaming plugin with tagging support."},
{name: "AutoRename",
url: "https://github.com/crifan/AutoRename",
src: "py",
last: "20240126",
desc: "Automatically rename very simple functions."},
{name: "AutoResolv",
url: "https://github.com/0xMirasio/AutoResolv",
src: "py",
last: "20221015",
vers: "7.0",
desc: "Resolve custom libraries in main project. Refactor call type and code."},
{name: "Away_From_Sub_Function_IN_IDA",
url: "https://github.com/H4lo/Away_From_Sub_Function_IN_IDA",
src: "py",
cats: "int",
last: "20240701",
vers: "7.5",
desc: "Use OpenAI to help you better translate function meanings and restore symbol tables from sub_xxxx functions in IDA Pro."},
{name: "Back 2 The Future",
url: "https://github.com/SafeBreach-Labs/Back2TheFuture",
src: "py",
cats: "deobf",
last: "20210809",
desc: "Find patterns of vulnerabilities on Windows in order to find 0-day and write exploits of 1-days. We use Microsoft security updates in order to find the patterns."},
{name: "bankswitch",
url: "https://github.com/patois/bankswitch",
src: "c++",
last: "20181218",
vers: "4.9",
desc: "Nintendo Entertainment System (NES) bank switcher: plugin for NES ROMs, simulates bank switching/paging."},
{name: "BAP IDA Python",
url: "https://github.com/binaryanalysisplatform/bap-ida-python",
src: "py",
cats: "int",
last: "20200212",
vers: "7.3",
desc: "Integrate BAP (Binary Analysis Platform) with IDA, providing functionality such as function info augmentation, taint propagation, BIR attribute tagging, and more."},
{name: "Batch-IDA",
url: "https://github.com/chnzzh/batch-ida",
src: "py",
cats: "int",
last: "20240919",
vers: "7.7",
desc: "A python library for generating IDA Pro files in batch mode & comparing executable files use bindiff in batch mode."},
{name: "BDSDevHelper",
url: "https://github.com/Redbeanw44602/BDSDevHelper",
src: "py",
last: "20230609",
desc: "An IDA plugin to help you develop bedrock dedicated server."},
{name: "Beautify",
url: "https://github.com/P4nda0s/IDABeautify",
src: "py",
cats: "decomp",
last: "20220201",
vers: "7.7",
desc: "An IDA plugin for making pseudocode better."},
{name: "BetterCallStack",
url: "https://github.com/AntonKukoba1/BetterCallStack",
src: "c++",
cats: "debug",
last: "20230814",
vers: "7.7",
desc: "Improve call stack in Windows x64 debugger."},
{name: "bextr-helper",
url: "https://github.com/Goatman13/bextr-helper",
src: "py",
last: "20221130",
vers: "7.5",
desc: "Create comment for bextr opcode with easy to read operation."},
{name: "Binary2Name IDA Client",
url: "https://github.com/snirgreen-debug/binary2name",
src: "py",
cats: "int",
last: "20230404",
desc: "IDA client to Binary2Name which predicts common functions names in binary files."},
{name: "BinaryAI Plugin",
url: "https://github.com/binaryai/plugins",
src: "py",
cats: "int",
last: "20230411",
vers: "7.7",
desc: "Ghidra/IDA Pro plugins to load similarity result from binaryai.net."},
{name: "BinAuthor",
url: "https://github.com/g4hsean/BinAuthor",
src: "py",
last: "20200504",
desc: "Match an author to an unknown binary."},
{name: "BinCAT",
url: "https://github.com/airbus-seclab/bincat",
src: "py",
last: "20241002",
vers: "7.4",
desc: "BinCAT is a static Binary Code Analysis Toolkit, designed to help reverse engineers, directly from IDA."},
{name: "BinClone",
url: "https://github.com/BinSigma/BinClone",
src: "c++",
last: "20150404",
desc: "BinClone: detecting code clones in malware [SERE 2014]"},
{name: "BinDiff",
url: "http://www.zynamics.com/bindiff.html",
last: "20210607",
desc: "BinDiff by Zynamics (now Google) is a comparison tool for binary files, that assists vulnerability researchers and engineers to quickly find differences and similarities in disassembled code."},
{name: "BinExport",
url: "https://github.com/google/binexport",
src: "c++",
cats: "int",
last: "20241101",
vers: "7.6",
desc: "Export disassemblies into Protocol Buffers. BinExport is the exporter component of BinDiff. It is a plugin/extension for IDA that exports disassembly data into the Protocol Buffer format that BinDiff requires."},
{name: "Binkit",
url: "https://github.com/ohjeongwook/binkit/tree/master/src/plugin",
src: "py",
cats: "int",
last: "20201005",
desc: "Binkit Plugin For IDA. Use this plugin to load diffing result files (*.json)..."},
{name: "BinNavi",
url: "https://github.com/google/binnavi",
cats: "trace",
last: "20201023",
desc: "BinNavi is a binary analysis IDE - an environment that allows users to inspect, navigate, edit, and annotate control-flow-graphs of disassembled code, do the same for the callgraph of the executable, collect and combine execution traces, and generally keep track of analysis results among a group of analysts."},
{name: "Binoculars",
url: "https://github.com/Vis-Wing/Binoculars",
src: "py",
cats: "int",
last: "20240823",
desc: "Binoculars is an IDA PRO plugin with an integrated AI interface."},
{name: "Bin Sourcerer",
url: "https://github.com/BinSigma/BinSourcerer",
src: "py",
last: "20150204",
desc: "BinSourcerer (a.k.a RE-Source Online) is an assembly to source code matching framework for binary auditing and malware analysis."},
{name: "BinSync",
url: "https://github.com/angr/binsync",
src: "py",
cats: "collab",
last: "20241105",
vers: "7.3",
desc: "Decompiler collaboration tool built on the Git versioning system to enable fined grained reverse engineering collaboration regardless of decompiler."},
{name: "Bip",
url: "https://github.com/synacktiv/bip",
src: "py",
last: "20200909",
desc: "Bip is a project which aims to simplify the usage of python for interacting with IDA. Its main goals are to facilitate the usage of python in the interactive console of IDA and the writing of plugins."},
{name: "blc: Binary Lifting Contraption",
url: "https://github.com/cseagle/blc",
src: "c++",
cats: "decomp, int",
last: "20240604",
vers: "7.5",
desc: "Integrate Ghidra's decompiler as an Ida plugin."},
{name: "Bootroom Analysis Library",
url: "https://github.com/digitalbond/IBAL",
src: "py",
last: "20150212",
desc: "IBAL is the IDA Pro Bootrom Analysis Library, which contains a number of useful functions for analyzing embedded ROMs."},
{name: "Bosch ME7",
url: "https://github.com/AndyWhittaker/IDAProBoschMe7x",
src: "c++",
last: "20180122",
desc: "Siemens Bosch ME7.x Disassembler Helper for IDA Pro"},
{name: "BRUTAL IDA",
url: "https://github.com/tmr232/BRUTAL-IDA",
src: "py",
last: "20190801",
vers: "7.3",
desc: "Block Redo & Undo To Achieve Legacy IDA."},
{name: "caesar",
url: "https://github.com/head47/caesar",
src: "py",
last: "20230217",
desc: "IDA plugin that uses called function lists to recognize functions. (Archived)."},
{name: "Capa Explorer",
url: "https://github.com/fireeye/capa/tree/master/capa/ida/plugin",
src: "py",
cats: "int",
last: "20241115",
vers: "7.7",
desc: "Capa explorer is an IDAPython plugin that integrates the FLARE team's open-source framework, capa, with IDA Pro. capa is a framework that uses a well-defined collection of rules to identify capabilities in a program."},
{name: "CGC Loader",
url: "https://github.com/cseagle/cgc_ldr",
src: "c++",
cats: "loader",
last: "20180409",
vers: "7.0",
desc: "IDA Loader for DARPA CGC binaries."},
{name: "CGEN",
url: "https://github.com/yifanlu/cgen",
src: "scm",
last: "20151228",
desc: "CGEN with support for generating IDA Pro IDP modules."},
{name: "Chuchu",
url: "https://github.com/hazzaaclark/chuchu",
src: "c++",
cats: "decomp, loader",
last: "20231111",
desc: "SEGA Dreamcast Binary Decompiler for IDA Pro."},
{name: "Class Informer",
url: "http://sourceforge.net/projects/classinformer/",
src: "c++",
last: "20180714",
vers: "7.1",
desc: "Scans an MSVC 32bit target IDB for vftables with C++ RTTI, and MFC RTCI type data. Places structure defs, names, labels, and comments to make more sense of class vftables (\"Virtual Function Table\") and make them read easier as an aid to reverse engineering. Creates a list window with found vftables for browsing."},
{name: "classinformer-ida8",
url: "https://github.com/herosi/classinformer-ida8",
src: "c++",
last: "20241112",
vers: "8.2",
desc: "IDA Class Informer plugin for IDA 8.x (see Class Informer)."},
{name: "Classy",
url: "https://github.com/RicBent/Classy",
src: "py",
last: "20240912",
desc: "Helps users easily manage classes in IDA Pro. Vtables can be generated by selecting a range, functions can be assigned to classes, their signatures can be easily editing and mangled, IDA structs can be assigned, C headers can be generated, probably more."},
{name: "cmake-ida",
url: "https://github.com/Elemecca/cmake-ida",
cats: "dev",
last: "20180102",
vers: "7.0",
desc: "Build IDA Pro modules with CMake"},
{name: "codatify",
url: "https://github.com/devttys0/ida/tree/master/plugins/codatify",
src: "py",
last: "20210602",
desc: "* Defines ASCII strings that IDA's auto analysis missed\n* Defines functions/code that IDA's auto analysis missed\n* Converts all undefined bytes in the data segment into DWORDs (thus allowing IDA to resolve function and jump table pointers)"},
{name: "Codatify (IDC)",
url: "https://github.com/tin-z/codatify",
src: "idc",
last: "20240111",
desc: "IDC version of codatify IDAPython script."},
{name: "CodeCut",
url: "https://github.com/JHUAPL/CodeCut",
src: "py",
last: "20240925",
vers: "7.0",
desc: "Locating Object File Boundaries in IDA Pro with LFA and MaxCut algorithms. Datasets for testing CodeCut solutions."},
{name: "Codemap",
url: "https://github.com/c0demap/codemap",
src: "py",
cats: "trace",
last: "20160701",
vers: "6.6",
desc: "Codemap is a binary analysis tool for \"run-trace visualization\" provided as IDA plugin."},
{name: "collabREate",
url: "https://github.com/cseagle/collabREate",
src: "c++",
cats: "collab",
last: "20210901",
vers: "7.5",
desc: "collabREate is a plugin for IDA Pro that is designed to provide a collaborative reverse engineering capability for multiple IDA users working on the same binary file."},
{name: "CollaRE",
url: "https://github.com/Martyx00/CollaRE",
src: "py",
cats: "collab",
last: "20240327",
desc: "Multi-tool reverse engineering collaboration solution. CollaRE is a tool for collaborative reverse engineering that aims to allow teams that do need to use more then one tool during a project to collaborate without the need to share the files on a separate locations."},
{name: "COMFinder",
url: "https://github.com/howmp/comfinder",
src: "py",
last: "20220930",
desc: "IDA plugin for COM."},
{name: "COMFinder",
url: "https://github.com/howmp/COMFinder",
src: "c++",
last: "20220930",
vers: "7.6",
desc: "IDA plugin for COM (Chinese)."},
{name: "Comida",
url: "https://github.com/airbus-cert/comida",
src: "py",
cats: "decomp",
last: "20230727",
desc: "Comida is a plugin which searches all the references of the GUID COM object (Common Object Model) and deduce the associated type using the Hexrays plugin to improve the readability of the code."},
{name: "Condstanta",
url: "https://github.com/Accenture/Condstanta",
src: "py",
last: "20220329",
vers: "7.5",
desc: "Search for constant values that are used in conditional statements such as if and switch-case or for functions that contain multiple specific constants."},
{name: "ConfuserEx Unflattening",
url: "https://github.com/govcert-ch/ConfuserEx_IDAPython",
src: "py",
cats: "deobf",
last: "20220915",
desc: "IDA Python deobfuscation script for ConfuserEx binaries."},
{name: "Continuum",
url: "https://github.com/zyantific/continuum",
src: "py",
last: "20160913",
vers: "6.9",
desc: "Continuum is an IDA Pro plugin adding multi-binary project support, allowing fast navigation in applications involving many shared libraries."},
{name: "Copy_RVA",
url: "https://github.com/RomanRybachek/Copy_RVA",
src: "py",
last: "20230728",
desc: "Copy RVA under cursor to clipboard."},
{name: "Cortex M Firmware",
url: "https://github.com/duo-labs/idapython",
src: "py",
last: "20180426",
desc: "The Cortex M Firmware module grooms an IDA Pro database containing firmware from an ARM Cortex M microcontroller. This module will annotate the firmware vector table, which contains a number of function pointers. This vector table annotation will cause IDA Pro to perform auto analysis against the functions these pointers point to. "},
{name: "cranalyzer",
url: "https://github.com/ep1h/cranalyzer",
src: "py",
last: "20230517",
desc: "IDA plugin for searching functions by specific filters."},
{name: "CrowdDetox",
url: "https://github.com/CrowdStrike/CrowdDetox",
src: "c++",
cats: "decomp",
last: "20210503",
vers: "6.4",
desc: "The CrowdDetox plugin for Hex-Rays automatically removes junk code and variables from Hex-Rays function decompilations."},
{name: "CTO: Call Tree Overviewer",
url: "https://github.com/herosi/CTO",
src: "py",
last: "20241007",
vers: "7.4",
desc: "IDA plugin for creating a simple and efficient function call tree graph. It can also summarize function information such as internal function calls, API calls, static linked library function calls, unresolved indirect function calls, string references, structure member accesses, specific comments."},
{name: "D-810",
url: "https://gitlab.com/eshard/d810",
src: "py",
cats: "decomp, deobf",
last: "20220805",
vers: "8.0",
desc: "D-810 is an IDA Pro plugin which can be used to deobfuscate code at decompilation time by modifying IDA Pro microcode."},
{name: "Dalvik Header",
url: "https://github.com/strazzere/dalvik-header-plugin",
src: "c++",
cats: "decomp",
last: "20130122",
desc: "This is a simple Dalvik header plugin for IDA Pro"},
{name: "DataFlowAnalysis-miasm",
url: "https://github.com/Learner0x5a/DataFlowAnalysis-miasm",
src: "py",
last: "20220517",
vers: "7.6",
desc: "Generate data-flow graph and def-use graph for a function based on miasm and IDA Pro."},
{name: "Data Xref Counter",
url: "https://github.com/onethawt/idapyscripts",
src: "py",
last: "20150917",
desc: "Enumerates all of the the x-references in a specific segment and counts the frequency of usage. The plugin displays the data in QtTableWidget and lets the user filter and sort the references. You can also export the data to a CSV file."},
{name: "DBGHider",
url: "https://github.com/iweizime/DBGHider",
src: "py",
cats: "debug",
last: "20180619",
vers: "7.0",
desc: "An IDA plugin aims to hide debugger from processes (Windows)."},
{name: "DebugAutoPatch",
url: "https://github.com/scottmudge/debugautopatch",
src: "py",
last: "20190906",
desc: "Patching system improvement plugin for IDA."},
{name: "Debugger",
url: "https://github.com/cseagle/sk3wldbg",
src: "c++",
cats: "debug",
last: "20230417",
vers: "6.6",
desc: "Debugger plugin for IDA Pro backed by the Unicorn Engine"},
{name: "Debugger_Timer",
url: "https://github.com/Mohamed-Adil-Cyber/Debugger_Timer",
src: "py",
cats: "debug",
last: "20231107",
desc: "Simple timer plugin for IDA, use Ctrl+Shift+D to start and end the timer."},
{name: "dec2struct",
url: "https://github.com/krystalgamer/dec2struct",
src: "py",
last: "20170906",
desc: "Easily setup vtables in IDA using declaration files."},
{name: "decomp2dbg",
url: "https://github.com/mahaloz/decomp2dbg",
src: "py",
cats: "decomp, debug, int",
last: "20240908",
vers: "7.0",
desc: "Plugin to introduce interactive symbols into your debugger from your decompiler."},
{name: "Deep Winter",
url: "https://github.com/evil33333333/deep-winter",
cats: "ui",
last: "20221013",
vers: "7.0",
desc: "Black IDA pro theme for darkness enthusiasts."},
{name: "DemangledStructNaming",
url: "https://github.com/AntonKukoba1/DemangledStructNaming",
src: "c++",
last: "20230814",
vers: "7.7",
desc: "Ida plugin to improve Create structure from selection naming."},
{name: "deREferencing",
url: "https://github.com/danigargu/deREferencing",
src: "py",
cats: "debug",
last: "20241015",
vers: "7.1",
desc: "IDA Pro plugin that implements more user-friendly register and stack views."},
{name: "Describe Key",
url: "https://github.com/vmallet/ida-describekey",
src: "py",
last: "20220408",
vers: "7.5",
desc: "Quickly learn what a shortcut does. Describe Key is a very simple IDA Pro plugin: invoke it, press a shortcut, and instantly see what actions are associated with the shortcut. Quick and easy, call it from anywhere in IDA."},
{name: "Diaphora",
url: "https://github.com/joxeankoret/diaphora",
src: "py",
last: "20240917",
vers: "7.4",
desc: "Diaphora (διαφορά, Greek for 'difference') is a program diffing plugin for IDA Pro, similar to Zynamics Bindiff or the FOSS counterparts DarunGrim, TurboDiff, etc... It was released during SyScan 2015."},
{name: "Docker IDA",
url: "https://github.com/intezer/docker-ida",
src: "py",
last: "20171119",
vers: "6.9",
desc: "Run IDA Pro disassembler in Docker containers for automating, scaling and distributing the use of IDAPython scripts."},
{name: "docker-idapro",
url: "https://github.com/blacktop/docker-idapro",
last: "20240702",
vers: "7.7",
desc: "IDA Pro Docker Image (For use as an ipsw pipeline)."},
{name: "doelf",
url: "https://github.com/antonpasm/doelf",
src: "py",
last: "20220531",
vers: "7.5",
desc: "A plugin for IDA Pro to export the symbols recognized to the ELF symbol table. It can create an ELF with debug information from any dump file."},
{name: "dotNIET",
url: "https://github.com/synacktiv/dotNIET",
src: "py",
last: "20210630",
vers: "7.5",
desc: "Import missing symbols (usually few thousands) which are resolved at runtime by .NET Native compiled binaries. These symbols lie in SharedLibrary.dll and are not exported by this one."},
{name: "DOXBox Debugger",
url: "https://github.com/wjp/idados",
src: "c++",
cats: "debug",
last: "20160228",
vers: "6.9",
desc: "Eric Fry's IDA/DOSBox debugger plugin"},
{name: "dp701",
url: "https://github.com/pr701/dp701",
cats: "ui",
last: "20230104",
vers: "7.3",
desc: "Dark theme for IDA Pro."},
{name: "Dracula",
url: "https://github.com/dracula/ida",
cats: "ui",
last: "20220630",
desc: "Dark theme for IDA Pro."},
{name: "Dragodis",
url: "https://github.com/dod-cyber-crime-center/Dragodis",
src: "py",
cats: "dev, int",
last: "20240523",
vers: "7.0",
desc: "Python framework which allows for the creation of universal disassembler scripts. Supports IDA and Ghidra."},
{name: "DrGadget",
url: "https://github.com/patois/DrGadget",
src: "py",
last: "20170202",
desc: "This is an IDAPython plugin for the Interactive Disassembler for all your ROP experimentation needs."},
{name: "DriverBuddy",
url: "https://github.com/nccgroup/DriverBuddy",
src: "py",
last: "20181122",
desc: "DriverBuddy is an IDA Python script to assist with the reverse engineering of Windows kernel drivers."},
{name: "DriverBuddyReloaded",
url: "https://github.com/VoidSec/DriverBuddyReloaded",
src: "py",
last: "20241025",
desc: "Driver Buddy Reloaded is an IDA Pro Python plugin that helps automate some tedious Windows Kernel Drivers reverse engineering tasks."},
{name: "Drop",
url: "https://github.com/Riscure/DROP-IDA-plugin",
src: "py",
last: "20240828",
vers: "6.95",
desc: "An experimental IDA Pro plugin capable of detecting several types of opaque predicates in obfuscated binaries. It leverages the power of the symbolic execution engine angr and its components to reason about the opaqueness of predicates based on their symbolic context."},
{name: "dsync",
url: "https://github.com/patois/dsync",
src: "py",
cats: "decomp",
last: "20210120",
vers: "7.3",
desc: "IDAPython plugin that synchronizes decompiled and disassembled code views."},
{name: "dubRE",
url: "https://github.com/michal-kapala/dubRE",
src: "py",
last: "20230905",
vers: "7.0",
desc: "ML-driven function symbol extraction plugin for IDA Pro."},
{name: "dumpDyn",
url: "https://github.com/secrary/IDA-scripts/tree/master/dumpDyn",
src: "py",
last: "20190226",
desc: "Script which saves comments, names, breakpoints, functions from one execution to another, f a process allocates a dynamic memory using VirtualAlloc, HeapAlloc, new, etc. and continues execution from that address."},
{name: "dwarfexport",
url: "https://github.com/ALSchwalm/dwarfexport",
src: "c++",
last: "20201118",
vers: "7.2",
desc: "dwarfexport is an IDA Pro plugin that allows the user to export dwarf debug information. This can then be imported in to gdb and other tools, allowing you to debug using info you have recovered in IDA even when you cannot connect the IDA debugger."},
{name: "DWARF Plugin",
url: "https://github.com/vrasneur/idadwarf",
src: "c++",
last: "20091115",
vers: "5.5",
desc: "IDADWARF is an IDA plugin that imports DWARF debugging symbols into an IDA database. [Download](https://hex-rays.com/contests/2009/IDADwarf-0.2/idadwarf-0.2.zip)"},
{name: "Dynamic Data Resolver",
url: "https://github.com/Cisco-Talos/DynDataResolver",
src: "py",
cats: "trace",
last: "20201217",
vers: "7.5",
desc: "A plugin for IDA that aims to make the reverse-engineering of malware easier. Features: Code Flow Trace, Searchable API call logging, Searchable string logging, Resolving dynamic values and auto-commenting."},
{name: "Dynamic IDA Enrichment",
url: "https://github.com/ynvb/DIE",
src: "py",
cats: "debug, trace",
last: "20210513",
vers: "7.2",
desc: "DIE is an IDA python plugin designed to enrich IDA`s static analysis with dynamic data. This is done using the IDA Debugger API, by placing breakpoints in key locations and saving the current system context once those breakpoints are hit."},
{name: "Dynapstalker",
url: "https://github.com/joswr1ght/dynapstalker",
src: "py",
cats: "int, ui",
last: "20221124",
vers: "7.0",
desc: "Colorize Reached Blocks in IDA Pro using DynamoRIO drcov Output."},
{name: "Dynlib",
url: "https://github.com/aerosoul94/dynlib",
src: "c++",
last: "20171216",
vers: "7.0",
desc: "This is an IDA Pro plugin to aid in reverse engineering PS4 user mode elf's by loading the PS4 specific DYNLIBDATA segment."},
{name: "EasyRE",
url: "https://github.com/AntoineBlaud/EasyRe",
src: "py",
cats: "trace",
last: "20240305",
desc: "Plugin to make your RE life easier. Trace execution and save code/memory for detailed exploration."},
{name: "E-Decompiler",
url: "https://github.com/fjqisba/E-Decompiler",
src: "c++",
cats: "decomp",
last: "20220905",
vers: "7.5",
desc: "IDA 7.5 plug-in used to assist in the analysis of decompiled programs, experimental project (Chinese)."},
{name: "EFI Scripts (efitools)",
url: "https://github.com/danse-macabre/ida-efitools",
src: "py",
last: "20150713",
desc: "Some IDA scripts and tools to assist with reverse engineering EFI executables."},
{name: "EFI Scripts (efitools2)",
url: "https://github.com/p-state/ida-efitools2",
src: "py",
last: "20201019",
desc: "Plugin for extending UEFI reverse engineering capabilities. Based on ida-efitools (EFI Scripts) with a bunch of fixes and new features."},
{name: "EFI Scripts (efiutils)",
url: "https://github.com/snare/ida-efiutils",
src: "py",
cats: "loader",
last: "20140617",
vers: "6.3",
desc: "Some IDA scripts to assist with reverse engineering EFI executables."},
{name: "EFI Swiss Knife",
url: "https://github.com/gdbinit/EFISwissKnife",
src: "c++",
last: "20170613",
vers: "6.95",
desc: "An IDA plugin to improve (U)EFI reversing."},
{name: "efiXplorer",
url: "https://github.com/binarly-io/efiXplorer",
src: "c++",
last: "20241107",
vers: "7.7",
desc: "IDA plugin for UEFI firmware analysis and reverse engineering automation."},
{name: "Eject IDB",
url: "https://github.com/allthingsida/eject_idb",
src: "c++",
last: "20240813",
desc: "Eject_idb is a last ditch effort to flush and save your IDB when IDA hangs or a plugin causes an exception, etc."},
{name: "ElfDumper",
url: "https://github.com/WPeace-HcH/ElfDumper",
src: "py",
last: "20230403",
vers: "7.4",
desc: "A plugin for IDA that can dump the ELF file easily."},
{name: "EmuIt",
url: "https://github.com/AzzOnFire/emuit",
src: "py",
last: "20240320",
desc: "Easy-to-use IDA plugin for code emulation."},
{name: "Enhanced PDB Plugin",
url: "https://github.com/sonyps5201314/pdb",
src: "c++",
last: "20241116",
vers: "8.0",
desc: "IDA PDB plugin with enhancements and bugfixes (Chinese)."},
{name: "epanos",
url: "https://github.com/drvink/epanos",
src: "py",
cats: "decomp",
last: "20140505",
vers: "6.6",
desc: "ElectroPaint Automatic No-source Object reaSsembler (a MIPS to C decompiler). This is a very dumb MIPS to C static translator."},
{name: "EtherAnnotate",
url: "https://github.com/inositle/etherannotate_ida",
src: "c++",
cats: "trace",
last: "20100504",
desc: "Parses the specialized instruction trace files that are generated using the EtherAnnotate Xen modification (https://github.com/inositle/etherannotate_xen). From the instruction trace, register values and code coverage of the run-time information are visualized in IDA Pro through instruction comments and line colorations."},
{name: "EtherAnnotate IDA Plugin",
url: "https://github.com/jeads-sec/etherannotate_ida",
src: "py",
cats: "int, trace",
last: "20100504",
desc: "Parse EtherAnnotate trace files and markup IDA disassemblies with runtime values."},
{name: "etm_displayer",
url: "https://github.com/honeybadger1613/etm_displayer",
src: "py",
cats: "int, trace",
last: "20180904",
vers: "7.0",
desc: "Display the result of perf Coresight ETM tracing."},
{name: "etwbreaker",
url: "https://github.com/airbus-cert/etwbreaker",
src: "py",
cats: "debug",
last: "20220708",
vers: "7.4",
desc: "Deal with Event Tracing for Windows (ETW). Statically find ETW events in a PE file and generate a Conditional Breakpoint to facilitate Security Research."},
{name: "EWS",
url: "https://github.com/deadeert/EWS",
src: "py",
cats: "debug, int",
last: "20230525",
desc: "Emulation Wrapper Solution is a IDA Pro plugin that brings emulator to provide features such as debugging an mocking."},
{name: "ExportQml",
url: "https://github.com/Redbeanw44602/ExportQml",
src: "py",
last: "20220910",
desc: "Export all Qml from the Qt program. (IDA script)."},
{name: "Exports+",
url: "https://github.com/ax330d/exports-plus",
src: "py",
last: "20180921",
desc: "View Exports. The problem is that IDA for some reason sometimes does not show certain names in Exports or does not demangle them. This plugin fixes this problem."},
{name: "export_source_path",
url: "https://github.com/Humenger/export_source_path",
src: "py",
last: "20230106",
desc: "Export source path to dir for IDA plugin."},
{name: "Extract.Hvcall",
url: "https://github.com/gerhart01/Hyper-V-Tools/tree/main/Extract.Hvcalls",
src: "c#",
cats: "int",
last: "20240603",
desc: "Utility for automatically extracting Hyper-V hypercalls names and codes from Hyper-V core binaries."},
{name: "Extract Macho-O",
url: "https://github.com/gdbinit/ExtractMachO",
src: "c++",
last: "20190509",
vers: "6.3",
desc: "This is a very simple IDA plugin to extract all Mach-O binaries contained anywhere in the disassembly."},
{name: "FA",
url: "https://github.com/doronz88/fa",
src: "py",
last: "20240915",
vers: "7.0",
desc: "FA stands for Firmware Analysis and intended For Humans. FA allows one to easily perform code exploration, symbol searching and other functionality with ease."},
{name: "FakePDB",
url: "https://github.com/Mixaill/FakePDB",
src: "py",
last: "20241028",
vers: "7.4",
desc: "Tool for PDB generation from IDA Pro database."},
{name: "FCatalog",
url: "https://github.com/xorpd/fcatalog_client",
src: "py",
last: "20160819",
desc: "FCatalog (The functions catalog) is a mechanism for finding similarities between different binary blobs in an efficient manner. It is mostly useful for identifying a new binary blob is somewhat similar to a binary blob that have been encountered before. The client side of FCatalog is an IDA plugin that allows a group of reverse engineers to manage a pool of reversed functions. Whenever a new binary function is encountered, FCatalog can compare it to all the known and previously reversed binary functions."},
{name: "Fentanyl",
url: "https://github.com/osirislab/Fentanyl",
src: "py",
last: "20221012",
vers: "7.0",
desc: "IDAPython script that makes patching significantly easier."},
{name: "FindCrypt2",
url: "https://hex-rays.com/blog/findcrypt2/",
src: "c++",
last: "20060130",
vers: "4.9",
desc: "Search for constants known to be associated with cryptographic algorithms."},
{name: "Findcrypt-yara",
url: "https://github.com/polymorf/findcrypt-yara",
src: "py",
last: "20241111",