forked from hahwul/MobileHackersWeapons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
1090 lines (1090 loc) · 39.4 KB
/
data.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
{
"A-Bypass": {
"Data": "| iOS | Bypass Jailbreak | [A-Bypass](https://www.ios-repo-updates.com/repository/baw-repo/package/com.rpgfarm.a-bypass/) | Super Jailbreak detection bypass!|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)",
"Description": "Super Jailbreak detection bypass!",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Bypass Jailbreak",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"Apktool": {
"Data": "| Android | RE | [Apktool](https://github.com/iBotPeaches/Apktool) | A tool for reverse engineering Android apk files | ![](https://img.shields.io/github/stars/iBotPeaches/Apktool) | ![](https://img.shields.io/github/languages/top/iBotPeaches/Apktool) |",
"Description": "A tool for reverse engineering Android apk files",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"BurpSuite": {
"Data": "| All | Proxy | [BurpSuite](https://portswigger.net/burp) | The BurpSuite|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)",
"Description": "The BurpSuite",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Proxy",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"Clutch": {
"Data": "| iOS | RE | [Clutch](https://github.com/KJCracks/Clutch) | Fast iOS executable dumper | ![](https://img.shields.io/github/stars/KJCracks/Clutch) | ![](https://img.shields.io/github/languages/top/KJCracks/Clutch) |",
"Description": "Fast iOS executable dumper",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"FlyJB-X": {
"Data": "| iOS | Bypass Jailbreak | [FlyJB-X](https://github.com/XsF1re/FlyJB-X) | You can HIDE Doing jailbreak your iDevice. | ![](https://img.shields.io/github/stars/XsF1re/FlyJB-X) | ![](https://img.shields.io/github/languages/top/XsF1re/FlyJB-X) |",
"Description": "You can HIDE Doing jailbreak your iDevice.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Bypass Jailbreak",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"HideJB": {
"Data": "| iOS | Bypass Jailbreak | [HideJB](http://cydia.saurik.com/package/com.thuthuatjb.hidejb/) | a tweak has the ability to skip jailbreak detection on iOS apps.|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)",
"Description": "a tweak has the ability to skip jailbreak detection on iOS apps.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Bypass Jailbreak",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"Hijacker": {
"Data": "| Android | Monitor | [Hijacker](https://github.com/chrisk44/Hijacker) | Aircrack, Airodump, Aireplay, MDK3 and Reaver GUI Application for Android | ![](https://img.shields.io/github/stars/chrisk44/Hijacker) | ![](https://img.shields.io/github/languages/top/chrisk44/Hijacker) |",
"Description": "Aircrack, Airodump, Aireplay, MDK3 and Reaver GUI Application for Android",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Hijack",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"JEB": {
"Data": "| Android | RE | [JEB](https://www.pnfsoftware.com/jeb/) | reverse-engineering platform to perform disassembly, decompilation, debugging, and analysis of code and document files, manually or as part of an analysis pipeline.|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)",
"Description": "reverse-engineering platform to perform disassembly, decompilation, debugging, and analysis of code and document files, manually or as part of an analysis pipeline.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"Kali NetHunter": {
"Data": "| Android | Pentest | [Kali NetHunter](https://gitlab.com/kalilinux/nethunter/build-scripts/kali-nethunter-project) | Mobile Penetration Testing Platform|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)",
"Description": "Mobile Penetration Testing Platform",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Pentest",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"Liberty": {
"Data": "| iOS | Bypass Jailbreak | [Liberty](https://yalujailbreak.net/liberty/) | Bypass Jailbreak and SSL Pinning|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)",
"Description": "Bypass Jailbreak and SSL Pinning",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Bypass Jailbreak",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"MEDUZA": {
"Data": "| iOS | Unpinning | [MEDUZA](https://github.com/kov4l3nko/MEDUZA) | A more or less universal SSL unpinning tool for iOS | ![](https://img.shields.io/github/stars/kov4l3nko/MEDUZA) | ![](https://img.shields.io/github/languages/top/kov4l3nko/MEDUZA) |",
"Description": "A more or less universal SSL unpinning tool for iOS",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Unpinning",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"Magisk": {
"Data": "| Android | Utils | [Magisk](https://github.com/topjohnwu/Magisk) | The Magic Mask for Android | ![](https://img.shields.io/github/stars/topjohnwu/Magisk) | ![](https://img.shields.io/github/languages/top/topjohnwu/Magisk) |",
"Description": "The Magic Mask for Android",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Utils",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"Mobile-Security-Framework-MobSF": {
"Data": "| All | Scanner | [Mobile-Security-Framework-MobSF](https://github.com/MobSF/Mobile-Security-Framework-MobSF) | Mobile Security Framework (MobSF) is an automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework capable of performing static and dynamic analysis. | ![](https://img.shields.io/github/stars/MobSF/Mobile-Security-Framework-MobSF) | ![](https://img.shields.io/github/languages/top/MobSF/Mobile-Security-Framework-MobSF) |",
"Description": "Mobile Security Framework (MobSF) is an automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework capable of performing static and dynamic analysis.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Scanner",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"PCAPdroid": {
"Data": "| Android | Monitor | [PCAPdroid](https://github.com/emanuele-f/PCAPdroid) | No-root network monitor, firewall and PCAP dumper for Android | ![](https://img.shields.io/github/stars/emanuele-f/PCAPdroid) | ![](https://img.shields.io/github/languages/top/emanuele-f/PCAPdroid) |",
"Description": "No-root network monitor, firewall and PCAP dumper for Android",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Monitor",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"PlaystoreDownloader": {
"Data": "| Android | Target | [PlaystoreDownloader](https://github.com/ClaudiuGeorgiu/PlaystoreDownloader) | A command line tool to download Android applications directly from the Google Play Store by specifying their package name (an initial one-time configuration is required) | ![](https://img.shields.io/github/stars/ClaudiuGeorgiu/PlaystoreDownloader) | ![](https://img.shields.io/github/languages/top/ClaudiuGeorgiu/PlaystoreDownloader) |",
"Description": "A command line tool to download Android applications directly from the Google Play Store by specifying their package name (an initial one-time configuration is required)",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Target",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"PortAuthority": {
"Data": "| Android | Discovery | [PortAuthority](https://github.com/aaronjwood/PortAuthority) | A handy systems and security-focused tool, Port Authority is a very fast Android port scanner. Port Authority also allows you to quickly discover hosts on your network and will display useful network information about your device and other hosts. | ![](https://img.shields.io/github/stars/aaronjwood/PortAuthority) | ![](https://img.shields.io/github/languages/top/aaronjwood/PortAuthority) |",
"Description": "A handy systems and security-focused tool, Port Authority is a very fast Android port scanner. Port Authority also allows you to quickly discover hosts on your network and will display useful network information about your device and other hosts.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Discovery",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"RMS-Runtime-Mobile-Security": {
"Data": "| All | Analysis | [RMS-Runtime-Mobile-Security](https://github.com/m0bilesecurity/RMS-Runtime-Mobile-Security) | Runtime Mobile Security (RMS) 📱🔥 - is a powerful web interface that helps you to manipulate Android and iOS Apps at Runtime | ![](https://img.shields.io/github/stars/m0bilesecurity/RMS-Runtime-Mobile-Security) | ![](https://img.shields.io/github/languages/top/m0bilesecurity/RMS-Runtime-Mobile-Security) |",
"Description": "Runtime Mobile Security (RMS) 📱🔥 - is a powerful web interface that helps you to manipulate Android and iOS Apps at Runtime",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Analysis",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"Smali-CFGs": {
"Data": "| Android | RE | [Smali-CFGs](https://github.com/EugenioDelfa/Smali-CFGs) | Smali Control Flow Graph's | ![](https://img.shields.io/github/stars/EugenioDelfa/Smali-CFGs) | ![](https://img.shields.io/github/languages/top/EugenioDelfa/Smali-CFGs) |",
"Description": "Smali Control Flow Graph's",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"StaCoAn": {
"Data": "| All | Scanner | [StaCoAn](https://github.com/vincentcox/StaCoAn) | StaCoAn is a crossplatform tool which aids developers, bugbounty hunters and ethical hackers performing static code analysis on mobile applications. | ![](https://img.shields.io/github/stars/vincentcox/StaCoAn) | ![](https://img.shields.io/github/languages/top/vincentcox/StaCoAn) |",
"Description": "StaCoAn is a crossplatform tool which aids developers, bugbounty hunters and ethical hackers performing static code analysis on mobile applications.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Scanner",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"androguard": {
"Data": "| Android | RE | [androguard](https://github.com/androguard/androguard) | Reverse engineering, Malware and goodware analysis of Android applications ... and more (ninja !) | ![](https://img.shields.io/github/stars/androguard/androguard) | ![](https://img.shields.io/github/languages/top/androguard/androguard) |",
"Description": "Reverse engineering, Malware and goodware analysis of Android applications ... and more (ninja !)",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"apkleaks": {
"Data": "| Android | Analysis | [apkleaks](https://github.com/dwisiswant0/apkleaks) | Scanning APK file for URIs, endpoints \u0026 secrets. | ![](https://img.shields.io/github/stars/dwisiswant0/apkleaks) | ![](https://img.shields.io/github/languages/top/dwisiswant0/apkleaks) |",
"Description": "Scanning APK file for URIs, endpoints \u0026 secrets.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Analysis",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"apkx": {
"Data": "| Android | RE | [apkx](https://github.com/b-mueller/apkx) | One-Step APK Decompilation With Multiple Backends | ![](https://img.shields.io/github/stars/b-mueller/apkx) | ![](https://img.shields.io/github/languages/top/b-mueller/apkx) |",
"Description": "One-Step APK Decompilation With Multiple Backends",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"behe-keyboard": {
"Data": "| Android | Utils | [behe-keyboard](https://github.com/VladThodo/behe-keyboard) | A lightweight hacking \u0026 programming keyboard with material design | ![](https://img.shields.io/github/stars/VladThodo/behe-keyboard) | ![](https://img.shields.io/github/languages/top/VladThodo/behe-keyboard) |",
"Description": "A lightweight hacking \u0026 programming keyboard with material design",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Utils",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"bfinject": {
"Data": "| iOS | Inject | [bfinject](https://github.com/BishopFox/bfinject) | Dylib injection for iOS 11.0 - 11.1.2 with LiberiOS and Electra jailbreaks | ![](https://img.shields.io/github/stars/BishopFox/bfinject) | ![](https://img.shields.io/github/languages/top/BishopFox/bfinject) |",
"Description": "Dylib injection for iOS 11.0 - 11.1.2 with LiberiOS and Electra jailbreaks",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Inject",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"btrace": {
"Data": "| Android | RE | [btrace](https://github.com/bytedance/btrace) | 🔥🔥 btrace(AKA RheaTrace) is a high performance Android trace tool which is based on Systrace, it support to define custom events automatically during building apk and using bhook to provider more native events like IO. | ![](https://img.shields.io/github/stars/bytedance/btrace) | ![](https://img.shields.io/github/languages/top/bytedance/btrace) |",
"Description": "🔥🔥 btrace(AKA RheaTrace) is a high performance Android trace tool which is based on Systrace, it support to define custom events automatically during building apk and using bhook to provider more native events like IO.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"bytecode-viewer": {
"Data": "| Android | RE | [bytecode-viewer](https://github.com/Konloch/bytecode-viewer/) | A Java 8+ Jar \u0026 Android APK Reverse Engineering Suite (Decompiler, Editor, Debugger \u0026 More) | ![](https://img.shields.io/github/stars/Konloch/bytecode-viewer/) | ![](https://img.shields.io/github/languages/top/Konloch/bytecode-viewer/) |",
"Description": "A Java 8+ Jar \u0026 Android APK Reverse Engineering Suite (Decompiler, Editor, Debugger \u0026 More)",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"class-dump": {
"Data": "| iOS | RE | [class-dump](https://github.com/nygard/class-dump) | Generate Objective-C headers from Mach-O files. | ![](https://img.shields.io/github/stars/nygard/class-dump) | ![](https://img.shields.io/github/languages/top/nygard/class-dump) |",
"Description": "Generate Objective-C headers from Mach-O files.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"dex-oracle": {
"Data": "| Android | RE | [dex-oracle](https://github.com/CalebFenton/dex-oracle) | A pattern based Dalvik deobfuscator which uses limited execution to improve semantic analysis | ![](https://img.shields.io/github/stars/CalebFenton/dex-oracle) | ![](https://img.shields.io/github/languages/top/CalebFenton/dex-oracle) |",
"Description": "A pattern based Dalvik deobfuscator which uses limited execution to improve semantic analysis",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"dex2jar": {
"Data": "| Android | RE | [dex2jar](https://github.com/pxb1988/dex2jar) | Tools to work with android .dex and java .class files | ![](https://img.shields.io/github/stars/pxb1988/dex2jar) | ![](https://img.shields.io/github/languages/top/pxb1988/dex2jar) |",
"Description": "Tools to work with android .dex and java .class files",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"diff-gui": {
"Data": "| All | RE | [diff-gui](https://github.com/antojoseph/diff-gui) | GUI for Frida -Scripts | ![](https://img.shields.io/github/stars/antojoseph/diff-gui) | ![](https://img.shields.io/github/languages/top/antojoseph/diff-gui) |",
"Description": "GUI for Frida -Scripts",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"drozer": {
"Data": "| Android | Analysis | [drozer](https://github.com/FSecureLABS/drozer) | The Leading Security Assessment Framework for Android. | ![](https://img.shields.io/github/stars/FSecureLABS/drozer) | ![](https://img.shields.io/github/languages/top/FSecureLABS/drozer) |",
"Description": "The Leading Security Assessment Framework for Android.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Analysis",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"enjarify": {
"Data": "| Android | RE | [enjarify](https://github.com/Storyyeller/enjarify) | Enjarify is a tool for translating Dalvik bytecode to equivalent Java bytecode. This allows Java analysis tools to analyze Android applications. | ![](https://img.shields.io/github/stars/Storyyeller/enjarify) | ![](https://img.shields.io/github/languages/top/Storyyeller/enjarify) |",
"Description": "Enjarify is a tool for translating Dalvik bytecode to equivalent Java bytecode. This allows Java analysis tools to analyze Android applications.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"flipper": {
"Data": "| All | Analysis | [flipper](https://github.com/facebook/flipper) | A desktop debugging platform for mobile developers. | ![](https://img.shields.io/github/stars/facebook/flipper) | ![](https://img.shields.io/github/languages/top/facebook/flipper) |",
"Description": "A desktop debugging platform for mobile developers.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Analysis",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"frida": {
"Data": "| All | RE | [frida](https://github.com/frida/frida) | Clone this repo to build Frida | ![](https://img.shields.io/github/stars/frida/frida) | ![](https://img.shields.io/github/languages/top/frida/frida) |",
"Description": "Clone this repo to build Frida",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"frida-gadget": {
"Type": "All",
"Data": "| All | SCRIPTS | [frida-gadget](https://github.com/ksg97031/frida-gadget) | frida-gadget is a tool that can be used to patch APKs in order to utilize the Frida gadget. | ![](https://img.shields.io/github/stars/ksg97031/frida-gadget) | ![](https://img.shields.io/github/languages/top/ksg97031/frida-gadget) |",
"Method": "SCRIPTS",
"Description": "frida-gadget is a tool that can be used to patch APKs in order to utilize the Frida gadget.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"frida-ios-dump": {
"Data": "| iOS | RE | [frida-ios-dump](https://github.com/AloneMonkey/frida-ios-dump) | pull decrypted ipa from jailbreak device | ![](https://img.shields.io/github/stars/AloneMonkey/frida-ios-dump) | ![](https://img.shields.io/github/languages/top/AloneMonkey/frida-ios-dump) |",
"Description": "pull decrypted ipa from jailbreak device",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"frida-scripts": {
"Data": "| All | SCRIPTS | [frida-scripts](https://github.com/0xdea/frida-scripts) | A collection of my Frida.re instrumentation scripts to facilitate reverse engineering of mobile apps. | ![](https://img.shields.io/github/stars/0xdea/frida-scripts) | ![](https://img.shields.io/github/languages/top/0xdea/frida-scripts) |",
"Description": "A collection of my Frida.re instrumentation scripts to facilitate reverse engineering of mobile apps.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "SCRIPTS",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"frida-tools": {
"Data": "| All | RE | [frida-tools](https://github.com/frida/frida-tools) | Frida CLI tools | ![](https://img.shields.io/github/stars/frida/frida-tools) | ![](https://img.shields.io/github/languages/top/frida/frida-tools) |",
"Description": "Frida CLI tools",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"fridump": {
"Data": "| All | RE | [fridump](https://github.com/Nightbringer21/fridump) | A universal memory dumper using Frida | ![](https://img.shields.io/github/stars/Nightbringer21/fridump) | ![](https://img.shields.io/github/languages/top/Nightbringer21/fridump) |",
"Description": "A universal memory dumper using Frida",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"ghidra": {
"Data": "| All | RE | [ghidra](https://github.com/NationalSecurityAgency/ghidra) | Ghidra is a software reverse engineering (SRE) framework | ![](https://img.shields.io/github/stars/NationalSecurityAgency/ghidra) | ![](https://img.shields.io/github/languages/top/NationalSecurityAgency/ghidra) |",
"Description": "Ghidra is a software reverse engineering (SRE) framework",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"googleplay": {
"Data": "| Android | Target | [googleplay](https://github.com/89z/googleplay) | Download APK from Google Play or send API requests | ![](https://img.shields.io/github/stars/89z/googleplay) | ![](https://img.shields.io/github/languages/top/89z/googleplay) |",
"Description": "Download APK from Google Play or send API requests",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Target",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"gplaycli": {
"Data": "| Android | Target | [gplaycli](https://github.com/matlink/gplaycli) | Google Play Downloader via Command line | ![](https://img.shields.io/github/stars/matlink/gplaycli) | ![](https://img.shields.io/github/languages/top/matlink/gplaycli) |",
"Description": "Google Play Downloader via Command line",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Target",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"gplaydl": {
"Data": "| Android | Target | [gplaydl](https://github.com/rehmatworks/gplaydl) | Command Line Google Play APK downloader. Download APK files to your PC directly from Google Play Store. | ![](https://img.shields.io/github/stars/rehmatworks/gplaydl) | ![](https://img.shields.io/github/languages/top/rehmatworks/gplaydl) |",
"Description": "Command Line Google Play APK downloader. Download APK files to your PC directly from Google Play Store.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Target",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"hetty": {
"Data": "| All | Proxy | [hetty](https://github.com/dstotijn/hetty) | Hetty is an HTTP toolkit for security research. | ![](https://img.shields.io/github/stars/dstotijn/hetty) | ![](https://img.shields.io/github/languages/top/dstotijn/hetty) |",
"Description": "Hetty is an HTTP toolkit for security research.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Proxy",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"httptoolkit": {
"Data": "| All | Proxy | [httptoolkit](https://github.com/httptoolkit/httptoolkit) | HTTP Toolkit is a beautiful \u0026 open-source tool for debugging, testing and building with HTTP(S) on Windows, Linux \u0026 Mac | ![](https://img.shields.io/github/stars/httptoolkit/httptoolkit) | ![](https://img.shields.io/github/languages/top/httptoolkit/httptoolkit) |",
"Description": "HTTP Toolkit is a beautiful \u0026 open-source tool for debugging, testing and building with HTTP(S) on Windows, Linux \u0026 Mac",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Proxy",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"iFunBox": {
"Data": "| iOS | Analysis | [iFunBox](http://www.i-funbox.com/) | General file management software for iPhone and other Apple products|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)|![](https://img.shields.io/static/v1?label=\u0026message=it's%20not%20github\u0026color=gray)",
"Description": "General file management software for iPhone and other Apple products",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Analysis",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"iRET": {
"Data": "| iOS | RE | [iRET](https://github.com/S3Jensen/iRET) | iOS Reverse Engineering Toolkit. | ![](https://img.shields.io/github/stars/S3Jensen/iRET) | ![](https://img.shields.io/github/languages/top/S3Jensen/iRET) |",
"Description": "iOS Reverse Engineering Toolkit.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"iSpy": {
"Data": "| iOS | RE | [iSpy](https://github.com/BishopFox/iSpy) | A reverse engineering framework for iOS | ![](https://img.shields.io/github/stars/BishopFox/iSpy) | ![](https://img.shields.io/github/languages/top/BishopFox/iSpy) |",
"Description": "A reverse engineering framework for iOS",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"iblessing": {
"Data": "| iOS | Analysis | [iblessing](https://github.com/Soulghost/iblessing) | iblessing is an iOS security exploiting toolkit, it mainly includes application information collection, static analysis and dynamic analysis. It can be used for reverse engineering, binary analysis and vulnerability mining. | ![](https://img.shields.io/github/stars/Soulghost/iblessing) | ![](https://img.shields.io/github/languages/top/Soulghost/iblessing) |",
"Description": "iblessing is an iOS security exploiting toolkit, it mainly includes application information collection, static analysis and dynamic analysis. It can be used for reverse engineering, binary analysis and vulnerability mining.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Analysis",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"idb": {
"Data": "| iOS | Utils | [idb](https://github.com/facebook/idb) | idb is a flexible command line interface for automating iOS simulators and devices | ![](https://img.shields.io/github/stars/facebook/idb) | ![](https://img.shields.io/github/languages/top/facebook/idb) |",
"Description": "idb is a flexible command line interface for automating iOS simulators and devices",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Utils",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"ipainstaller": {
"Data": "| iOS | Target | [ipainstaller](https://github.com/autopear/ipainstaller) | Install IPA from command line | ![](https://img.shields.io/github/stars/autopear/ipainstaller) | ![](https://img.shields.io/github/languages/top/autopear/ipainstaller) |",
"Description": "Install IPA from command line",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Target",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"jadx": {
"Data": "| Android | RE | [jadx](https://github.com/skylot/jadx) | Dex to Java decompiler | ![](https://img.shields.io/github/stars/skylot/jadx) | ![](https://img.shields.io/github/languages/top/skylot/jadx) |",
"Description": "Dex to Java decompiler",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"jd-gui": {
"Data": "| Android | RE | [jd-gui](https://github.com/java-decompiler/jd-gui) | A standalone Java Decompiler GUI | ![](https://img.shields.io/github/stars/java-decompiler/jd-gui) | ![](https://img.shields.io/github/languages/top/java-decompiler/jd-gui) |",
"Description": "A standalone Java Decompiler GUI",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"metasploit-framework": {
"Data": "| All | Pentest | [metasploit-framework](https://github.com/rapid7/metasploit-framework) | Metasploit Framework | ![](https://img.shields.io/github/stars/rapid7/metasploit-framework) | ![](https://img.shields.io/github/languages/top/rapid7/metasploit-framework) |",
"Description": "Metasploit Framework",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Pentest",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"momdec": {
"Data": "| iOS | RE | [momdec](https://github.com/atomicbird/momdec) | Core Data Managed Object Model Decompiler | ![](https://img.shields.io/github/stars/atomicbird/momdec) | ![](https://img.shields.io/github/languages/top/atomicbird/momdec) |",
"Description": "Core Data Managed Object Model Decompiler",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"needle": {
"Data": "| iOS | Analysis | [needle](https://github.com/FSecureLABS/needle) | The iOS Security Testing Framework | ![](https://img.shields.io/github/stars/FSecureLABS/needle) | ![](https://img.shields.io/github/languages/top/FSecureLABS/needle) |",
"Description": "The iOS Security Testing Framework",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Analysis",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"nfcgate": {
"Data": "| Android | NFC | [nfcgate](https://github.com/nfcgate/nfcgate) | An NFC research toolkit application for Android | ![](https://img.shields.io/github/stars/nfcgate/nfcgate) | ![](https://img.shields.io/github/languages/top/nfcgate/nfcgate) |",
"Description": "An NFC research toolkit application for Android",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "NFC",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"objection": {
"Data": "| iOS | Analysis | [objection](https://github.com/sensepost/objection) | 📱 objection - runtime mobile exploration | ![](https://img.shields.io/github/stars/sensepost/objection) | ![](https://img.shields.io/github/languages/top/sensepost/objection) |",
"Description": "📱 objection - runtime mobile exploration",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Analysis",
"Type": "iOS",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"procyon": {
"Data": "| Android | RE | [procyon](https://github.com/mstrobel/procyon) | Procyon is a suite of Java metaprogramming tools, including a rich reflection API, a LINQ-inspired expression tree API for runtime code generation, and a Java decompiler. | ![](https://img.shields.io/github/stars/mstrobel/procyon) | ![](https://img.shields.io/github/languages/top/mstrobel/procyon) |",
"Description": "Procyon is a suite of Java metaprogramming tools, including a rich reflection API, a LINQ-inspired expression tree API for runtime code generation, and a Java decompiler.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "RE",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"proxify": {
"Data": "| All | Proxy | [proxify](https://github.com/projectdiscovery/proxify) | Swiss Army knife Proxy tool for HTTP/HTTPS traffic capture, manipulation, and replay on the go. | ![](https://img.shields.io/github/stars/projectdiscovery/proxify) | ![](https://img.shields.io/github/languages/top/projectdiscovery/proxify) |",
"Description": "Swiss Army knife Proxy tool for HTTP/HTTPS traffic capture, manipulation, and replay on the go.",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Proxy",
"Type": "All",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"qark": {
"Data": "| Android | Scanner | [qark](https://github.com/linkedin/qark) | Tool to look for several security related Android application vulnerabilities | ![](https://img.shields.io/github/stars/linkedin/qark) | ![](https://img.shields.io/github/languages/top/linkedin/qark) |",
"Description": "Tool to look for several security related Android application vulnerabilities",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Scanner",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"scrcpy": {
"Data": "| Android | Device | [scrcpy](https://github.com/Genymobile/scrcpy) | Display and control your Android device | ![](https://img.shields.io/github/stars/Genymobile/scrcpy) | ![](https://img.shields.io/github/languages/top/Genymobile/scrcpy) |",
"Description": "Display and control your Android device",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""
},
"Method": "Device",
"Type": "Android",
"Update": {
"Linux": "",
"MacOS": "",
"Windows": ""
}
},
"scrounger": {
"Data": "| All | Analysis | [scrounger](https://github.com/nettitude/scrounger) | Mobile application testing toolkit | ![](https://img.shields.io/github/stars/nettitude/scrounger) | ![](https://img.shields.io/github/languages/top/nettitude/scrounger) |",
"Description": "Mobile application testing toolkit",
"Install": {
"Linux": "",
"MacOS": "",
"Windows": ""