-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathapi-plugins.json
More file actions
8479 lines (8479 loc) · 383 KB
/
api-plugins.json
File metadata and controls
8479 lines (8479 loc) · 383 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"plugins": {
"hits": [
{
"slug": "revengai/plugin-ida",
"url": "https://github.com/RevEngAI/plugin-ida",
"updated_at": "2025-11-13T15:28:31.682",
"metadata": {
"tags": [
"recently_added",
"recently_updated"
],
"badges": [],
"license_type": "GNU General Public License v3.0",
"idaplugin_json": {
"plugin": {
"name": "RevEng.AI",
"version": "3.0.0",
"logoPath": "reai_toolkit/app/components/resources/reveng_ai_logo.jpg",
"categories": [
"decompilation",
"integration-with-third-parties-interoperability",
"malware-analysis",
"other"
],
"entryPoint": "reai_toolkit_entry.py",
"description": "The RevEng.AI plugin integrates AI-powered code analysis and decompilation features into IDA Pro, enhancing reverse engineering workflows with advanced machine learning capabilities.",
"idaVersions": ">=8.5",
"absoluteLogoUrl": "https://raw.githubusercontent.com/RevEngAI/plugin-ida/a54c1315db124d3edee239c091c523191458c738/reai_toolkit/app/components/resources/reveng_ai_logo.jpg"
},
"updatedAt": "2025-11-13T15:23:16Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "plugin-ida",
"dynamic_metadata": {
"forks": 9,
"stars": 112,
"release": {
"url": "https://github.com/RevEngAI/plugin-ida/releases/tag/v3.0.0",
"publishedAt": "2025-11-13T14:47:52Z",
"latestRelease": "v3.0.0"
},
"language": "Python",
"watchers": 2,
"open_issues": 0,
"latest_update": "2025-11-13T15:23:18.000Z",
"readme_updated_at": "2025-11-13T14:43:55Z"
},
"repository_owner": "revengai",
"repository_description": "RevEng.AI IDA Pro Plugin",
"compatible_versions": [
"8.5.0",
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"8.5.0",
"9.1.0"
]
},
"categories": [
{
"id": 3,
"icon": "WorkflowSquare09TwotoneRounded",
"name": "Decompilation",
"slug": "decompilation",
"description": "Explore our collection of decompilation plugins"
},
{
"id": 12,
"icon": "UfoIcon",
"name": "Other",
"slug": "other",
"description": "Explore our collection of uncategorized plugins"
},
{
"id": 7,
"icon": "PlugIcon",
"name": "Integration with third parties/interoperability",
"slug": "integration-with-third-parties-interoperability",
"description": "Explore our collection of integration with third parties/interoperability plugins"
},
{
"id": 10,
"icon": "SkullIcon",
"name": "Malware analysis",
"slug": "malware-analysis",
"description": "Explore our collection of malware analysis plugins"
}
]
},
{
"slug": "oliverstank/assemport-",
"url": "https://github.com/oliverstank/Assemport-",
"updated_at": "2025-10-29T08:48:09.71",
"metadata": {
"tags": [
"recently_added"
],
"badges": [],
"license_type": "MIT License",
"idaplugin_json": {
"plugin": {
"name": "assemport++",
"version": "1.0.0",
"logoPath": "Screenshots/Logo.png",
"categories": [
"disassembly-and-processor-modules",
"other",
"decompilation",
"api-scripting-and-automation",
"collaboration-and-productivity"
],
"entryPoint": "main.py",
"description": "Assembly-Export for IDA 9.0 Pro. Assemport exports all functions separately in an assembly file. This enables further processing by external tools such as an AI.",
"idaVersions": ">=9.0",
"absoluteLogoUrl": "https://raw.githubusercontent.com/oliverstank/Assemport-/95c6caa466283dafbc80846a29cbd132fe101745/Screenshots/Logo.png"
},
"updatedAt": "2025-10-23T20:32:51Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "Assemport-",
"dynamic_metadata": {
"forks": 1,
"stars": 0,
"release": null,
"language": "Python",
"watchers": 0,
"open_issues": 0,
"latest_update": "2025-11-11T16:38:02.000Z",
"readme_updated_at": "2025-11-11T16:38:02Z"
},
"repository_owner": "oliverstank",
"repository_description": "upgrade of Assemport IDA pro plugin, allowing function group exporting. ",
"compatible_versions": [
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"9.0.0",
"9.1.0"
]
},
"categories": [
{
"id": 3,
"icon": "WorkflowSquare09TwotoneRounded",
"name": "Decompilation",
"slug": "decompilation",
"description": "Explore our collection of decompilation plugins"
},
{
"id": 12,
"icon": "UfoIcon",
"name": "Other",
"slug": "other",
"description": "Explore our collection of uncategorized plugins"
},
{
"id": 1,
"icon": "InspectCodeIcon",
"name": "Disassembly and processor modules",
"slug": "disassembly-and-processor-modules",
"description": "Explore our collection of Disassembly and processor modules plugins"
},
{
"id": 6,
"icon": "UserMultiple02Icon",
"name": "Collaboration and productivity",
"slug": "collaboration-and-productivity",
"description": "Explore our collection of collaboration and productivity plugins"
}
]
},
{
"slug": "oliverstank/superpseudo",
"url": "https://github.com/oliverstank/SuperPseudo",
"updated_at": "2025-11-10T14:46:13.651",
"metadata": {
"tags": [
"recently_added"
],
"badges": [],
"license_type": "",
"idaplugin_json": {
"plugin": {
"name": "Super Pseudo",
"version": "1.0.0",
"logoPath": "logo.png",
"categories": [
"decompilation"
],
"entryPoint": "main.py",
"description": "Super Pseudo is a plugin that recursively inlines function calls in decompiled pseudocode to enhance code readability and analysis.",
"idaVersions": ">=9.0",
"absoluteLogoUrl": "https://raw.githubusercontent.com/oliverstank/SuperPseudo/240563194ccbe24965e82ae63e86e10f2cb2b3e4/logo.png"
},
"updatedAt": "2025-11-09T14:26:25Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "SuperPseudo",
"dynamic_metadata": {
"forks": 0,
"stars": 2,
"release": null,
"language": "Python",
"watchers": 0,
"open_issues": 2,
"latest_update": "2025-11-10T15:10:32.000Z",
"readme_updated_at": "2025-11-10T15:09:47Z"
},
"repository_owner": "oliverstank",
"repository_description": "IDA inliner Plugin",
"compatible_versions": [
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"9.0.0",
"9.1.0"
]
},
"categories": [
{
"id": 3,
"icon": "WorkflowSquare09TwotoneRounded",
"name": "Decompilation",
"slug": "decompilation",
"description": "Explore our collection of decompilation plugins"
}
]
},
{
"slug": "huku-/recover",
"url": "https://github.com/huku-/recover",
"updated_at": "2025-11-10T14:46:13.651",
"metadata": {
"tags": [
"recently_added"
],
"badges": [],
"license_type": "",
"idaplugin_json": {
"plugin": {
"name": "REcover",
"version": "1.0.0",
"logoPath": "logo/recover-icon.png",
"categories": [
"decompilation",
"deobfuscation",
"other"
],
"entryPoint": "plugins/ida_pro/recover.py",
"description": "Recover compile-units from stripped binary executables",
"idaVersions": "9.1",
"absoluteLogoUrl": "https://raw.githubusercontent.com/huku-/recover/d7ea0636bb7f0b58c761953894b776a094f49f3c/logo/recover-icon.png"
},
"updatedAt": "2025-11-09T18:05:08Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "recover",
"dynamic_metadata": {
"forks": 4,
"stars": 53,
"release": null,
"language": "Python",
"watchers": 5,
"open_issues": 0,
"latest_update": "2025-11-09T18:05:21.000Z",
"readme_updated_at": "2025-11-09T17:52:20Z"
},
"repository_owner": "huku-",
"repository_description": "Recover compile-units from stripped binary executables",
"compatible_versions": [
"9.1.0"
],
"prettified_versions": [
"9.1.0"
]
},
"categories": [
{
"id": 3,
"icon": "WorkflowSquare09TwotoneRounded",
"name": "Decompilation",
"slug": "decompilation",
"description": "Explore our collection of decompilation plugins"
},
{
"id": 5,
"icon": "LoginMethodIcon",
"name": "Deobfuscation",
"slug": "deobfuscation",
"description": "Explore our collection of deobfuscation plugins"
},
{
"id": 12,
"icon": "UfoIcon",
"name": "Other",
"slug": "other",
"description": "Explore our collection of uncategorized plugins"
}
]
},
{
"slug": "idkhidden/drawida",
"url": "https://github.com/idkhidden/DrawIDA",
"updated_at": "2025-11-04T14:38:01.357",
"metadata": {
"tags": [
"recently_added",
"recently_updated"
],
"badges": [],
"license_type": "MIT License",
"idaplugin_json": {
"plugin": {
"name": "DrawIDA",
"version": "1.0.0",
"logoPath": "logo.png",
"categories": [
"ui-ux-and-visualization",
"collaboration-and-productivity"
],
"entryPoint": "DrawIDA.py",
"description": "Lightweight whiteboard plugin for IDA that allows reverse engineers to sketch and brainstorm directly inside IDA.",
"idaVersions": ">=7.4",
"absoluteLogoUrl": "https://raw.githubusercontent.com/idkhidden/DrawIDA/cf294d05ba9510ce350e32662988d456f967b74d/logo.png"
},
"updatedAt": "2025-11-04T14:37:28Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "DrawIDA",
"dynamic_metadata": {
"forks": 2,
"stars": 12,
"release": null,
"language": "Python",
"watchers": 0,
"open_issues": 0,
"latest_update": "2025-11-05T16:07:09.000Z",
"readme_updated_at": "2025-11-05T16:07:09Z"
},
"repository_owner": "idkhidden",
"repository_description": "Lightweight whiteboard plugin for IDA Pro that allows reverse engineers to sketch and brainstorm directly inside IDA.",
"compatible_versions": [
"8.0.0",
"8.1.0",
"8.2.0",
"8.3.0",
"8.4.0",
"8.5.0",
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"8.0.0",
"9.1.0"
]
},
"categories": [
{
"id": 6,
"icon": "UserMultiple02Icon",
"name": "Collaboration and productivity",
"slug": "collaboration-and-productivity",
"description": "Explore our collection of collaboration and productivity plugins"
}
]
},
{
"slug": "jsacco/driverbuddyrevolutionsida",
"url": "https://github.com/jsacco/driverbuddyrevolutionsIDA",
"updated_at": "2025-10-30T09:27:20.841",
"metadata": {
"tags": [
"recently_added"
],
"badges": [],
"license_type": "",
"idaplugin_json": {
"plugin": {
"name": "Driver Buddy Revolutions",
"version": "1.0.0",
"logoPath": "driver_buddy_logo.png",
"categories": [
"vulnerability-research-and-exploit-development"
],
"entryPoint": "DriverBuddyRevolutions.py",
"description": "Driver Buddy Revolutions is an IDA Pro plugin for rapid Windows kernel driver triage. It automatically identifies IOCTL handlers, device names, pool tags, and dispatch routines; flags risky memory usage, IRQL issues, and privileged operations; maps taint-style call paths into dangerous sinks; and generates HTML/JSON reports plus an IOCTL PoC harness.",
"idaVersions": ">=7.5",
"absoluteLogoUrl": "https://raw.githubusercontent.com/jsacco/driverbuddyrevolutionsIDA/9e671936b3cebb4bdbdbced25377ab517f49b6ea/driver_buddy_logo.png"
},
"updatedAt": "2025-10-28T17:22:54Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "driverbuddyrevolutionsIDA",
"dynamic_metadata": {
"forks": 0,
"stars": 0,
"release": null,
"language": "Python",
"watchers": 0,
"open_issues": 0,
"latest_update": "2025-10-28T17:42:20.000Z",
"readme_updated_at": "2025-10-28T17:42:20Z"
},
"repository_owner": "jsacco",
"repository_description": "",
"compatible_versions": [
"8.0.0",
"8.1.0",
"8.2.0",
"8.3.0",
"8.4.0",
"8.5.0",
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"8.0.0",
"9.1.0"
]
},
"categories": [
{
"id": 11,
"icon": "PropertyViewIcon",
"name": "Vulnerability research and exploit development",
"slug": "vulnerability-research-and-exploit-development",
"description": "Explore our collection of vulnerability research and exploit development plugins"
}
]
},
{
"slug": "yoavst/ida-ios-helper",
"url": "https://github.com/yoavst/ida-ios-helper",
"updated_at": "2025-07-18T15:52:51.208",
"metadata": {
"tags": [
"recently_added"
],
"badges": [],
"license_type": "GNU General Public License v3.0",
"idaplugin_json": {
"plugin": {
"name": "iOS Helper",
"version": "1.0.0",
"logoPath": "res/logo.png",
"categories": [
"decompilation"
],
"entryPoint": "ida_plugin_stub.py",
"description": "A plugin for IDA Pro 9.0+ to help with iOS code analysis.",
"idaVersions": ">=9.0",
"absoluteLogoUrl": "https://raw.githubusercontent.com/yoavst/ida-ios-helper/133aafbd0d5a35f18f670596863995f172b4806c/res/logo.png"
},
"updatedAt": "2025-07-17T14:02:55Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "ida-ios-helper",
"dynamic_metadata": {
"forks": 10,
"stars": 82,
"release": {
"url": "https://github.com/yoavst/ida-ios-helper/releases/tag/1.0.17",
"publishedAt": "2025-10-24T19:26:04Z",
"latestRelease": "1.0.17"
},
"language": "Python",
"watchers": 4,
"open_issues": 0,
"latest_update": "2025-10-24T19:25:03.000Z",
"readme_updated_at": "2025-10-15T19:56:20Z"
},
"repository_owner": "yoavst",
"repository_description": "Plugin to ease reversing iOS projects",
"compatible_versions": [
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"9.0.0",
"9.1.0"
]
},
"categories": [
{
"id": 3,
"icon": "WorkflowSquare09TwotoneRounded",
"name": "Decompilation",
"slug": "decompilation",
"description": "Explore our collection of decompilation plugins"
}
]
},
{
"slug": "captain-ai-hub/ida-mcp",
"url": "https://github.com/Captain-AI-Hub/IDA-MCP",
"updated_at": "2025-10-31T12:06:21.784",
"metadata": {
"tags": [
"recently_added"
],
"badges": [],
"license_type": "GNU General Public License v3.0",
"idaplugin_json": {
"plugin": {
"name": "IDA-MCP",
"version": "0.1.3",
"logoPath": "ida-mcp.png",
"categories": [
"disassembly-and-processor-modules",
"decompilation",
"debugging-and-tracing",
"api-scripting-and-automation"
],
"entryPoint": "ida_mcp.py",
"description": "A mcp-server for ida pro.",
"idaVersions": ">=8.4",
"absoluteLogoUrl": "https://raw.githubusercontent.com/Captain-AI-Hub/IDA-MCP/f19ad6213a86d90ce38ef249d5a75d617bc419d8/ida-mcp.png"
},
"updatedAt": "2025-09-16T11:04:29Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "IDA-MCP",
"dynamic_metadata": {
"forks": 9,
"stars": 72,
"release": {
"url": "https://github.com/Captain-AI-Hub/IDA-MCP/releases/tag/v0.1.4",
"publishedAt": "2025-09-18T02:08:38Z",
"latestRelease": "v0.1.4"
},
"language": "Python",
"watchers": 2,
"open_issues": 0,
"latest_update": "2025-10-22T03:10:56.000Z",
"readme_updated_at": "2025-10-22T03:10:51Z"
},
"repository_owner": "captain-ai-hub",
"repository_description": "IDA MCP",
"compatible_versions": [
"8.4.0",
"8.5.0",
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"8.4.0",
"9.1.0"
]
},
"categories": [
{
"id": 3,
"icon": "WorkflowSquare09TwotoneRounded",
"name": "Decompilation",
"slug": "decompilation",
"description": "Explore our collection of decompilation plugins"
},
{
"id": 1,
"icon": "InspectCodeIcon",
"name": "Disassembly and processor modules",
"slug": "disassembly-and-processor-modules",
"description": "Explore our collection of Disassembly and processor modules plugins"
},
{
"id": 4,
"icon": "Bug02TwotoneRounded",
"name": "Debugging and tracing",
"slug": "debugging-and-tracing",
"description": "Explore our collection of debugging and tracing plugins"
}
]
},
{
"slug": "berk000x/binarylens",
"url": "https://github.com/Berk000x/BinaryLens",
"updated_at": "2025-10-18T20:24:04.311",
"metadata": {
"tags": [
"recently_added"
],
"badges": [],
"license_type": "MIT License",
"idaplugin_json": {
"plugin": {
"name": "BinaryLens",
"version": "1.0.1",
"logoPath": ".",
"categories": [
"api-scripting-and-automation",
"collaboration-and-productivity",
"malware-analysis"
],
"entryPoint": "BinaryLens",
"description": "An IDA plugin that uses language models to speed up binary analysis.",
"idaVersions": "9.1",
"absoluteLogoUrl": "https://raw.githubusercontent.com/Berk000x/BinaryLens/01eb3fa552d17615c194786f16e1ad37eb527699/."
},
"updatedAt": "2025-10-18T11:44:23Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "BinaryLens",
"dynamic_metadata": {
"forks": 4,
"stars": 20,
"release": {
"url": "https://github.com/Berk000x/BinaryLens/releases/tag/v1.0.1",
"publishedAt": "2025-10-17T19:10:31Z",
"latestRelease": "v1.0.1"
},
"language": "C++",
"watchers": 0,
"open_issues": 0,
"latest_update": "2025-10-18T11:44:23.000Z",
"readme_updated_at": "2025-10-18T09:51:25Z"
},
"repository_owner": "berk000x",
"repository_description": "An IDA plugin that uses language models to speed up binary analysis.",
"compatible_versions": [
"9.1.0"
],
"prettified_versions": [
"9.1.0"
]
},
"categories": [
{
"id": 6,
"icon": "UserMultiple02Icon",
"name": "Collaboration and productivity",
"slug": "collaboration-and-productivity",
"description": "Explore our collection of collaboration and productivity plugins"
},
{
"id": 10,
"icon": "SkullIcon",
"name": "Malware analysis",
"slug": "malware-analysis",
"description": "Explore our collection of malware analysis plugins"
}
]
},
{
"slug": "0xdea/augur",
"url": "https://github.com/0xdea/augur",
"updated_at": "2025-10-13T08:08:49.896",
"metadata": {
"tags": [
"recently_updated"
],
"badges": [],
"license_type": "MIT License",
"idaplugin_json": {
"plugin": {
"name": "augur",
"version": "0.7.2",
"logoPath": ".img/logo.png",
"categories": [
"vulnerability-research-and-exploit-development",
"decompilation"
],
"entryPoint": "augur",
"description": "Reverse engineering assistant that extracts strings and related pseudocode from a binary file.",
"idaVersions": ">=9.0",
"absoluteLogoUrl": "https://raw.githubusercontent.com/0xdea/augur/9e1a9e7955e7889bf06c16745356cd926e45afd1/.img/logo.png"
},
"updatedAt": "2025-10-13T07:55:01Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "augur",
"dynamic_metadata": {
"forks": 4,
"stars": 69,
"release": {
"url": "https://github.com/0xdea/augur/releases/tag/v0.7.2",
"publishedAt": "2025-10-13T07:59:38Z",
"latestRelease": "v0.7.2"
},
"language": "Rust",
"watchers": 2,
"open_issues": 0,
"latest_update": "2025-10-13T08:01:19.000Z",
"readme_updated_at": "2025-10-09T10:10:10Z"
},
"repository_owner": "0xdea",
"repository_description": "Reverse engineering assistant that extracts strings and related pseudo-code from a binary file.",
"compatible_versions": [
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"9.0.0",
"9.1.0"
]
},
"categories": [
{
"id": 3,
"icon": "WorkflowSquare09TwotoneRounded",
"name": "Decompilation",
"slug": "decompilation",
"description": "Explore our collection of decompilation plugins"
},
{
"id": 11,
"icon": "PropertyViewIcon",
"name": "Vulnerability research and exploit development",
"slug": "vulnerability-research-and-exploit-development",
"description": "Explore our collection of vulnerability research and exploit development plugins"
}
]
},
{
"slug": "0xdea/haruspex",
"url": "https://github.com/0xdea/haruspex",
"updated_at": "2025-10-13T08:08:49.897",
"metadata": {
"tags": [
"recently_updated"
],
"badges": [],
"license_type": "MIT License",
"idaplugin_json": {
"plugin": {
"name": "haruspex",
"version": "0.7.2",
"logoPath": ".img/logo.png",
"categories": [
"vulnerability-research-and-exploit-development",
"decompilation"
],
"entryPoint": "haruspex",
"description": "Vulnerability research assistant that extracts pseudocode from the IDA Hex-Rays decompiler.",
"idaVersions": ">=9.0",
"absoluteLogoUrl": "https://raw.githubusercontent.com/0xdea/haruspex/dc3db7de8a48fdcf6fcdbecd110ac71eb29f0f58/.img/logo.png"
},
"updatedAt": "2025-10-13T07:43:18Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "haruspex",
"dynamic_metadata": {
"forks": 7,
"stars": 72,
"release": {
"url": "https://github.com/0xdea/haruspex/releases/tag/v0.7.2",
"publishedAt": "2025-10-13T07:48:56Z",
"latestRelease": "v0.7.2"
},
"language": "Rust",
"watchers": 4,
"open_issues": 0,
"latest_update": "2025-10-13T07:50:41.000Z",
"readme_updated_at": "2025-10-09T10:09:04Z"
},
"repository_owner": "0xdea",
"repository_description": "Vulnerability research assistant that extracts pseudo-code from the IDA Hex-Rays decompiler.",
"compatible_versions": [
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"9.0.0",
"9.1.0"
]
},
"categories": [
{
"id": 3,
"icon": "WorkflowSquare09TwotoneRounded",
"name": "Decompilation",
"slug": "decompilation",
"description": "Explore our collection of decompilation plugins"
},
{
"id": 11,
"icon": "PropertyViewIcon",
"name": "Vulnerability research and exploit development",
"slug": "vulnerability-research-and-exploit-development",
"description": "Explore our collection of vulnerability research and exploit development plugins"
}
]
},
{
"slug": "0xdea/rhabdomancer",
"url": "https://github.com/0xdea/rhabdomancer",
"updated_at": "2025-10-13T08:08:49.897",
"metadata": {
"tags": [
"recently_updated"
],
"badges": [],
"license_type": "MIT License",
"idaplugin_json": {
"plugin": {
"name": "rhabdomancer",
"version": "0.7.2",
"logoPath": ".img/logo.png",
"categories": [
"vulnerability-research-and-exploit-development"
],
"entryPoint": "rhabdomancer",
"description": "Vulnerability research assistant that locates calls to potentially insecure API functions in a binary file.",
"idaVersions": ">=9.0",
"absoluteLogoUrl": "https://raw.githubusercontent.com/0xdea/rhabdomancer/2590332bba3a98a2d4cdfbe9bc4b9d3238d87e08/.img/logo.png"
},
"updatedAt": "2025-10-13T07:43:02Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "rhabdomancer",
"dynamic_metadata": {
"forks": 9,
"stars": 84,
"release": {
"url": "https://github.com/0xdea/rhabdomancer/releases/tag/v0.7.2",
"publishedAt": "2025-10-13T07:47:43Z",
"latestRelease": "v0.7.2"
},
"language": "Rust",
"watchers": 4,
"open_issues": 0,
"latest_update": "2025-10-13T07:49:47.000Z",
"readme_updated_at": "2025-10-09T10:08:00Z"
},
"repository_owner": "0xdea",
"repository_description": "Vulnerability research assistant that locates calls to potentially insecure API functions in a binary file.",
"compatible_versions": [
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"9.0.0",
"9.1.0"
]
},
"categories": [
{
"id": 11,
"icon": "PropertyViewIcon",
"name": "Vulnerability research and exploit development",
"slug": "vulnerability-research-and-exploit-development",
"description": "Explore our collection of vulnerability research and exploit development plugins"
}
]
},
{
"slug": "w00tzenheimer/d810-ng",
"url": "https://github.com/w00tzenheimer/d810-ng",
"updated_at": "2025-10-13T08:08:49.897",
"metadata": {
"tags": [
"recently_added"
],
"badges": [],
"license_type": "GNU Affero General Public License v3.0",
"idaplugin_json": {
"plugin": {
"name": "d810-ng",
"version": "0.1.0",
"logoPath": "resources/d810ng-logo.png",
"categories": [
"decompilation",
"debugging-and-tracing"
],
"entryPoint": "src/D810.py",
"description": "D810-ng (Next Generation) is an updated, tested, refactored, and optimized IDA Pro plugin that serves as a framework and deobfuscation harness used to deobfuscate code at decompilation time by modifying IDA Pro microcode.",
"idaVersions": ">=9.0",
"absoluteLogoUrl": "https://raw.githubusercontent.com/w00tzenheimer/d810-ng/7376e95efac435f49dee9ff2c547434502f9cb82/resources/d810ng-logo.png"
},
"updatedAt": "2025-10-11T16:18:09Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "d810-ng",
"dynamic_metadata": {
"forks": 5,
"stars": 46,
"release": null,
"language": "Python",
"watchers": 3,
"open_issues": 1,
"latest_update": "2025-10-11T16:18:10.000Z",
"readme_updated_at": "2025-08-20T21:39:57Z"
},
"repository_owner": "w00tzenheimer",
"repository_description": "D810-ng (Next Generation) is an updated, tested, refactored, and optimized IDA Pro plugin used to deobfuscate code at decompilation time by modifying IDA Pro microcode.",
"compatible_versions": [
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"9.0.0",
"9.1.0"
]
},
"categories": [
{
"id": 3,
"icon": "WorkflowSquare09TwotoneRounded",
"name": "Decompilation",
"slug": "decompilation",
"description": "Explore our collection of decompilation plugins"
},
{
"id": 4,
"icon": "Bug02TwotoneRounded",
"name": "Debugging and tracing",
"slug": "debugging-and-tracing",
"description": "Explore our collection of debugging and tracing plugins"
}
]
},
{
"slug": "mrexodia/ida-pro-mcp",
"url": "https://github.com/mrexodia/ida-pro-mcp",
"updated_at": "2025-10-13T08:08:49.896",
"metadata": {
"tags": [
"recently_updated"
],
"badges": [],
"license_type": "MIT License",
"idaplugin_json": {
"plugin": {
"name": "IDA Pro MCP",
"version": "1.6.0",
"logoPath": ".github/logo.png",
"categories": [
"api-scripting-and-automation",
"debugging-and-tracing",
"malware-analysis"
],
"entryPoint": "src/ida_pro_mcp/mcp-plugin.py",
"description": "AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.",
"idaVersions": ">=8.3",
"absoluteLogoUrl": "https://raw.githubusercontent.com/mrexodia/ida-pro-mcp/534d0be4bcb1aa0878e5b8c7437b8de3400f4105/.github/logo.png"
},
"updatedAt": "2025-10-10T11:34:52Z",
"IDAMetadataDescriptorVersion": 1
},
"repository_name": "ida-pro-mcp",
"dynamic_metadata": {
"forks": 388,
"stars": 3837,
"release": {
"url": "https://github.com/mrexodia/ida-pro-mcp/releases/tag/1.4.0",
"publishedAt": "2025-10-06T13:28:26Z",
"latestRelease": "1.4.0"
},
"language": "Python",
"watchers": 24,
"open_issues": 19,
"latest_update": "2025-10-10T11:35:00.000Z",
"readme_updated_at": "2025-10-06T13:25:06Z"
},
"repository_owner": "mrexodia",
"repository_description": "MCP Server for IDA Pro",
"compatible_versions": [
"8.3.0",
"8.4.0",
"8.5.0",
"9.0.0",
"9.1.0"
],
"prettified_versions": [
"8.3.0",
"9.1.0"
]
},
"categories": [
{
"id": 4,
"icon": "Bug02TwotoneRounded",
"name": "Debugging and tracing",
"slug": "debugging-and-tracing",
"description": "Explore our collection of debugging and tracing plugins"
},
{
"id": 10,
"icon": "SkullIcon",
"name": "Malware analysis",
"slug": "malware-analysis",
"description": "Explore our collection of malware analysis plugins"
}
]
},
{
"slug": "harding-stardust/community_base",
"url": "https://github.com/Harding-Stardust/community_base",
"updated_at": "2025-10-08T13:32:08.615",
"metadata": {
"tags": [
"recently_updated"
],
"badges": [],
"license_type": "GNU General Public License v3.0",
"idaplugin_json": {
"plugin": {