-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.json
1808 lines (1808 loc) · 71.8 KB
/
tools.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
{
"Large Language Model Security": [
{
"name": "garak",
"repo": "https://github.com/leondz/garak",
"description": "LLM vulnerability scanner for various weaknesses"
},
{
"name": "rebuff",
"repo": "https://github.com/protectai/rebuff",
"description": "Protect AI applications from prompt injection attacks"
},
{
"name": "LLMFuzzer",
"repo": "https://github.com/mnns/LLMFuzzer",
"description": "Fuzzing Framework for Large Language Models"
}
],
"Smart Contracts Security": [
{
"name": "mythril",
"repo": "https://github.com/ConsenSys/mythril",
"description": "Security analysis tool for EVM bytecode"
},
{
"name": "oyente",
"repo": "https://github.com/enzymefinance/oyente",
"description": "Analysis Tool for Smart Contracts"
},
{
"name": "securify2",
"repo": "https://github.com/eth-sri/securify2",
"description": "Official security scanner for Ethereum smart contracts"
},
{
"name": "smartcheck",
"repo": "https://github.com/smartdec/smartcheck",
"description": "Static analysis tool for Solidity programs"
},
{
"name": "MAIAN",
"repo": "https://github.com/ivicanikolicsg/MAIAN",
"description": "Tool for finding trace vulnerabilities in Ethereum smart contracts"
}
],
"Red Team vs Blue Team": [
{
"name": "CDK",
"repo": "https://github.com/cdk-team/CDK",
"description": "Tool to gather information inside container/cluster and exploit them"
},
{
"name": "dockerscan",
"repo": "https://github.com/cr0hn/dockerscan",
"description": "Docker security analysis & hacking tools"
},
{
"name": "kubescape",
"repo": "https://github.com/armosec/kubescape",
"description": "Tool for testing if Kubernetes is deployed securely"
},
{
"name": "veinmind-tools",
"repo": "https://github.com/chaitin/veinmind-tools",
"description": "Container security scanner for backdoor, malicious, weak pass and sensitive data"
},
{
"name": "ThreatMapper",
"repo": "https://github.com/deepfence/ThreatMapper",
"description": "Scan for in-production vulnerabilities and exposed secrets"
},
{
"name": "SecretScanner",
"repo": "https://github.com/deepfence/SecretScanner",
"description": "Scan containers and host filesystems for unprotected keys, API tokens and passwords"
},
{
"name": "KubiScan",
"repo": "https://github.com/cyberark/KubiScan",
"description": "Tool to scan Kubernetes cluster for risky permissions"
},
{
"name": "vesta",
"repo": "https://github.com/kvesta/vesta",
"description": "Static analysis of vulnerabilities, Docker and Kubernetes cluster configuration detection toolkit"
},
{
"name": "grype",
"repo": "https://github.com/anchore/grype",
"description": "Vulnerability scanner for container images and filesystems"
}
],
"Services fingerprint detection": [
{
"name": "EHole",
"repo": "https://github.com/EdgeSecurityTeam/EHole",
"description": "Core system fingerprint detection tool for Red team"
},
{
"name": "mass-bruter",
"repo": "https://github.com/opabravo/mass-bruter",
"description": "Mass bruteforce network protocols and default credentials for ports"
}
],
"Man-In-The-Middle": [
{
"name": "nili",
"repo": "https://github.com/niloofarkheirkhah/nili",
"description": "Tool for Network Scan, Man in the Middle, Protocol Reverse Engineering and Fuzzing"
}
],
"The framework": [
{
"name": "PytheM",
"repo": "https://github.com/m4n3dw0lf/PytheM",
"description": "Multi-purpose network pentest framework"
},
{
"name": "Viper",
"repo": "https://github.com/FunnyWolf/Viper",
"description": "Graphical, Modularization and weaponization intranet penetration tool"
},
{
"name": "AlliN",
"repo": "https://github.com/P1-Team/AlliN",
"description": "Used for asset collection before penetration and lateral movement of intranet"
},
{
"name": "LadonGo",
"repo": "https://github.com/k8gege/LadonGo",
"description": "Pentest framework for Windows/Linux/Mac intranet networks"
},
{
"name": "netspy",
"repo": "https://github.com/shmilylty/netspy",
"description": "Quickly scan the reachable network segmentation of the intranet"
},
{
"name": "CrackMapExec",
"repo": "https://github.com/byt3bl33d3r/CrackMapExec",
"description": "Swiss army knife for pentesting Windows/Active Directory environments"
},
{
"name": "nacs",
"repo": "https://github.com/u21h2/nacs",
"description": "Event-driven intranet pentest scanner"
},
{
"name": "SCMKit",
"repo": "https://github.com/h4wkst3r/SCMKit",
"description": "Source Code Management Attack Toolkit for GitHub Enterprise, GitLab Enterprise and Bitbucket Server"
},
{
"name": "MisConfig_HTTP_Proxy_Scanner",
"repo": "https://github.com/lijiejie/MisConfig_HTTP_Proxy_Scanner",
"description": "Helps to scan misconfigured reverse and forward proxy servers"
},
{
"name": "gogo",
"repo": "https://github.com/chainreactors/gogo",
"description": "A highly controllable and scalable automation engine for red teams"
},
{
"name": "k",
"repo": "e",
"description": "e"
}
],
"Wireless Pentest": [
{
"name": "fern-wifi-cracker",
"repo": "https://github.com/savio-code/fern-wifi-cracker",
"description": "Testing and discovering flaws in one's own network"
},
{
"name": "WiFi-Pumpkin",
"repo": "https://github.com/P0cL4bs/WiFi-Pumpkin",
"description": "Framework for Rogue Wi-Fi Access Point Attack"
},
{
"name": "BoopSuite",
"repo": "https://github.com/MisterBianco/BoopSuite",
"description": "Suite of Tools written in Python for wireless auditing and security testing"
},
{
"name": "PiFinger",
"repo": "https://github.com/besimaltnok/PiFinger",
"description": "Searches for wifi-pineapple traces and calculates wireless network security score"
},
{
"name": "wifite2",
"repo": "https://github.com/derv82/wifite2",
"description": "Automated Wireless Attack Tool"
},
{
"name": "WEF",
"repo": "https://github.com/D3Ext/WEF",
"description": "Wi-Fi Exploitation Framework for 2.4 and 5 GHz attacks"
},
{
"name": "pinecone",
"repo": "https://github.com/pinecone-wifi/pinecone",
"description": "WLAN red team framework"
}
],
"Mobile Apps Packages Analysis": [
{
"name": "apkleaks",
"repo": "https://github.com/dwisiswant0/apkleaks",
"description": "Scanning APK file for URIs, endpoints & secrets"
},
{
"name": "AppInfoScanner",
"repo": "https://github.com/kelvinBen/AppInfoScanner",
"description": "Collecting information from APK file, support self-defined rules"
},
{
"name": "androwarn",
"repo": "https://github.com/maaaaz/androwarn",
"description": "Static code analyzer for malicious Android applications"
},
{
"name": "quark-engine",
"repo": "https://github.com/quark-engine/quark-engine",
"description": "Android Malware (Analysis | Scoring) System"
},
{
"name": "engine",
"repo": "https://github.com/droidefense/engine",
"description": "Advance Android malware analysis framework"
},
{
"name": "Adhrit",
"repo": "https://github.com/abhi-r3v0/Adhrit",
"description": "Android Security Suite for in-depth reconnaissance and static bytecode analysis based on Ghera benchmarks"
},
{
"name": "Tai-e",
"repo": "https://github.com/pascal-lab/Tai-e",
"description": "Easy-to-learn/use static analysis framework for Java, especially for Android"
},
{
"name": "APKHunt",
"repo": "https://github.com/Cyber-Buddy/APKHunt",
"description": "Comprehensive static code analysis tool for Android apps based on OWASP MASVS framework"
},
{
"name": "droidlysis",
"repo": "https://github.com/cryptax/droidlysis",
"description": "Pre-analysis tool for Android apps: performs repetitive and boring tasks we'd typically do at the beginning of any reverse engineering"
}
],
"Binary Executables Analysis": [
{
"name": "dorothy2",
"repo": "https://github.com/m4rco-/dorothy2",
"description": "Malware/botnet analysis framework written in Ruby"
},
{
"name": "HaboMalHunter",
"repo": "https://github.com/Tencent/HaboMalHunter",
"description": "Automated malware analysis and security assessment on the Linux system"
},
{
"name": "BinAbsInspector",
"repo": "https://github.com/KeenSecurityLab/BinAbsInspector",
"description": "Static analyzer for automated reverse engineering and scanning vulnerabilities in binaries"
},
{
"name": "cwe_checker",
"repo": "https://github.com/fkie-cad/cwe_checker",
"description": "Static analyzer for detecting common bug classes such as buffer overflows in binaries"
},
{
"name": "bincat",
"repo": "https://github.com/airbus-seclab/bincat",
"description": "Binary code static analyser, with IDA integration. Performs value and taint analysis"
}
],
"Privacy Compliance": [
{
"name": "riskscanner",
"repo": "https://github.com/riskscanner/riskscanner",
"description": "Multi-cloud privacy compliance scanning platform, through Cloud Custodian's YAML DSL to define scanning rules"
},
{
"name": "bombus",
"repo": "https://github.com/momosecurity/bombus",
"description": "Enterprise security and privacy compliance platform"
}
],
"Subdomain Enumeration or Takeover": [
{
"name": "subDomainsBrute",
"repo": "https://github.com/lijiejie/subDomainsBrute",
"description": "A classical subdomain enumeration Tool by lijiejie"
},
{
"name": "wydomain",
"repo": "https://github.com/ring04h/wydomain",
"description": "A Speed and Precision subdomain enumeration Tool by ringzero"
},
{
"name": "dnsmaper",
"repo": "https://github.com/le4f/dnsmaper",
"description": "Subdomain enumeration tool with map record"
},
{
"name": "subbrute",
"repo": "https://github.com/TheRook/subbrute",
"description": "DNS meta-query spider that enumerates DNS records, and subdomains, supported API"
},
{
"name": "GSDF",
"repo": "https://github.com/We5ter/GSDF",
"description": "Subdomain enumeration via Google certificate transparency"
},
{
"name": "cloudflare_enum",
"repo": "https://github.com/mandatoryprogrammer/cloudflare_enum",
"description": "Subdomain enumeration via CloudFlare"
},
{
"name": "knock",
"repo": "https://github.com/guelfoweb/knock",
"description": "Knock subdomain scan"
},
{
"name": "DomainSeeker",
"repo": "https://github.com/exp-db/PythonPool/tree/master/Tools/DomainSeeker",
"description": "An integrated Python subdomain enumeration tool"
},
{
"name": "BroDomain",
"repo": "https://github.com/code-scan/BroDomain",
"description": "Find brother domain"
},
{
"name": "dnsbrute",
"repo": "https://github.com/chuhades/dnsbrute",
"description": "A fast domain brute tool"
},
{
"name": "subdomain3",
"repo": "https://github.com/yanxiu0614/subdomain3",
"description": "A simple and fast tool for bruting subdomains"
},
{
"name": "aquatone",
"repo": "https://github.com/michenriksen/aquatone",
"description": "Powerful subdomain tool and domain takeovers finding tools"
},
{
"name": "dnssearch",
"repo": "https://github.com/evilsocket/dnssearch",
"description": "Subdomain enumeration tool"
},
{
"name": "domained",
"repo": "https://github.com/reconned/domained",
"description": "Subdomain enumeration tools for bug hunting"
},
{
"name": "Teemo",
"repo": "https://github.com/bit4woo/Teemo",
"description": "Domain name & Email address collection tool"
},
{
"name": "theHarvester",
"repo": "https://github.com/laramies/theHarvester",
"description": "E-mail, subdomain and people names harvester"
},
{
"name": "Inventus",
"repo": "https://github.com/nmalcolm/Inventus",
"description": "Spider designed to find subdomains of a specific domain by crawling it"
},
{
"name": "Sublist3r",
"repo": "https://github.com/aboul3la/Sublist3r",
"description": "Fast subdomains enumeration tool for penetration testers"
},
{
"name": "Anubis",
"repo": "https://github.com/jonluca/Anubis",
"description": "Subdomain enumeration and information gathering tool"
},
{
"name": "N4xD0rk",
"repo": "https://github.com/n4xh4ck5/N4xD0rk",
"description": "Listing subdomains about a main domain"
},
{
"name": "altdns",
"repo": "https://github.com/infosec-au/altdns",
"description": "Subdomain discovery through alterations and permutations"
},
{
"name": "ESD",
"repo": "https://github.com/FeeiCN/ESD",
"description": "Enumeration subdomains tool, based on AsyncIO and non-repeating dict"
},
{
"name": "ctfr",
"repo": "https://github.com/UnaPibaGeek/ctfr",
"description": "Abusing certificate transparency logs for getting HTTPS websites subdomains"
},
{
"name": "Dumb",
"repo": "https://github.com/giovanifss/Dumb",
"description": "Domain Bruteforcer, a fast and flexible domain bruteforcer"
},
{
"name": "Amass",
"repo": "https://github.com/OWASP/Amass",
"description": "In-depth Attack Surface Mapping and Asset Discovery"
},
{
"name": "subfinder",
"repo": "https://github.com/Ice3man543/subfinder",
"description": "Subdomain discovery tool with a simple modular architecture, successor to sublist3r project"
},
{
"name": "SubOver",
"repo": "https://github.com/Ice3man543/SubOver",
"description": "Powerful subdomain takeover tool"
},
{
"name": "horn3t",
"repo": "https://github.com/janniskirschner/horn3t",
"description": "Powerful Visual Subdomain Enumeration"
},
{
"name": "dnsub",
"repo": "https://github.com/yunxu1/dnsub",
"description": "High concurrency and cross platform subdomain scanner based on Golang"
},
{
"name": "OneForAll",
"repo": "https://github.com/shmilylty/OneForAll",
"description": "Ultimate subdomains scanner integrated with multiple subdomain scanning tools"
},
{
"name": "ksubdomain",
"repo": "https://github.com/knownsec/ksubdomain",
"description": "Stateless and cross-platform subdomain enumeration tool, speed up to 30w/s on Mac and Windows, and 160w/s on Linux"
},
{
"name": "github-subdomains",
"repo": "https://github.com/gwen001/github-subdomains",
"description": "Find subdomains on GitHub"
},
{
"name": "domain_hunter_pro",
"repo": "https://github.com/bit4woo/domain_hunter_pro",
"description": "Domain finder and Targets management, automated information collection, integrated with burpsuite"
},
{
"name": "takeover",
"repo": "https://github.com/m4ll0k/takeover",
"description": "Sub-Domain TakeOver Vulnerability Scanner"
},
{
"name": "Dome",
"repo": "https://github.com/v4d1/Dome",
"description": "Active and/or passive scan to obtain subdomains and search for open port"
},
{
"name": "regulator",
"repo": "https://github.com/cramppet/regulator",
"description": "Automated subdomain enumeration tool by learning of regexes for DNS discovery"
},
{
"name": "AORT",
"repo": "https://github.com/D3Ext/AORT",
"description": "All in One Recon Tool for domains"
}
],
"Database SQL Injection Vulnerability or Brute Force": [
{
"name": "SQLiScanner",
"url": "https://github.com/0xbug/SQLiScanner",
"description": "A SQLi vulnerability scanner via SQLMAP and Charles"
},
{
"name": "DSSS",
"url": "https://github.com/stamparm/DSSS",
"description": "A SQLi vulnerability scanner with 99 lines of code"
},
{
"name": "NoSQLAttack",
"url": "https://github.com/youngyangyang04/NoSQLAttack",
"description": "A SQLi vulnerability scanner for mongoDB"
},
{
"name": "bbqsql",
"url": "https://github.com/Neohapsis/bbqsql",
"description": "A blind SQLi vulnerability scanner"
},
{
"name": "PowerUpSQL",
"url": "https://github.com/NetSPI/PowerUpSQL",
"description": "A SQLi vulnerability scanner with Powershell script"
},
{
"name": "Whitewidow",
"url": "https://github.com/WhitewidowScanner/whitewidow",
"description": "Another SQL vulnerability scanner"
},
{
"name": "mongoaudit",
"url": "https://github.com/stampery/mongoaudit",
"description": "A powerful MongoDB auditing and pentesting tool"
},
{
"name": "Nosql-Exploitation-Framework",
"url": "https://github.com/torque59/Nosql-Exploitation-Framework",
"description": "A Python framework For NoSQL scanning and exploitation"
},
{
"name": "blindy",
"url": "https://github.com/missDronio/blindy",
"description": "Simple script to automate brutforcing blind sql injection vulnerabilities"
},
{
"name": "Fox-scan",
"url": "https://github.com/fengxuangit/Fox-scan",
"description": "A initiative and passive SQL injection vulnerable test tools"
},
{
"name": "Blisqy",
"url": "https://github.com/JohnTroony/Blisqy",
"description": "Exploit time-based blind-SQL injection in HTTP-Headers"
},
{
"name": "jsql-injection",
"url": "https://github.com/ron190/jsql-injection",
"description": "A lightweight application used to find database information from a distant server"
},
{
"name": "sqliv",
"url": "https://github.com/Hadesy2k/sqliv",
"description": "Massive SQL injection vulnerability scanner"
},
{
"name": "sqlmate",
"url": "https://github.com/s0md3v/sqlmate",
"description": "A friend of SQLmap which will do what you always expected from SQLmap"
},
{
"name": "enumdb",
"url": "https://github.com/m8r0wn/enumdb",
"description": "MySQL and MSSQL brute force and post exploitation tool"
},
{
"name": "injectbot",
"url": "https://github.com/tariqhawis/injectbot",
"description": "A web-based, easy-to-use, SQL injection scanner and exploiter tool"
}
],
"Weak Usernames or Passwords Enumeration For Web": [
{
"name": "htpwdScan",
"url": "https://github.com/lijiejie/htpwdScan",
"description": "A python HTTP weak pass scanner"
},
{
"name": "crack_ssh",
"url": "https://github.com/netxfly/crack_ssh",
"description": "SSH, Redis, mongoDB weak password bruteforcer"
},
{
"name": "weak_password_detect",
"url": "https://github.com/shengqi158/weak_password_detect",
"description": "A python HTTP weak password scanner"
},
{
"name": "Blazy",
"url": "https://github.com/s0md3v/Blazy",
"description": "a modern login bruteforcer which also tests for CSRF, Clickjacking, Cloudflare and WAF"
},
{
"name": "myBFF",
"url": "https://github.com/MooseDojo/myBFF",
"description": "Web application brute force framework,supports Citrix Gateway,CiscoVPN and so on"
},
{
"name": "web_pwd_common_crack",
"url": "https://github.com/TideSec/web_pwd_common_crack",
"description": "A common web weak_password cracking script,can detect batches of management backgrounds without verification codes"
}
],
"IoT Hardware Automated Audit": [
{
"name": "IoTSeeker",
"url": "https://github.com/rapid7/IoTSeeker",
"description": "Weak-password IoT devices scanner"
},
{
"name": "iotdb",
"url": "https://github.com/shodan-labs/iotdb",
"description": "IoT Devices scanner via nmap"
},
{
"name": "RouterHunterBR",
"url": "https://github.com/googleinurl/RouterHunterBR",
"description": "Testing vulnerabilities in devices and routers connected to the Internet"
},
{
"name": "telnet-scanner",
"url": "https://github.com/scu-igroup/telnet-scanner",
"description": "Weak telnet password scanner based on password enumeration"
},
{
"name": "OWASP-Nettacker",
"url": "https://github.com/viraintel/OWASP-Nettacker",
"description": "Network information gathering vulnerability scanner,most useful to scan IoT"
},
{
"name": "routersploit",
"url": "https://github.com/threat9/routersploit",
"description": "Exploitation Framework for embedded Devices,such as router"
},
{
"name": "icsmaster",
"url": "https://github.com/w3h/icsmaster/tree/master/nse",
"description": "Digital bond's ICS enumeration tools"
},
{
"name": "firmeye",
"url": "https://github.com/firmianay/firmeye",
"description": "An IDA plug-in, based on sensitive function parameter backtracking to assist in vulnerability mining"
},
{
"name": "st",
"url": "https://github.com/bahaabdelwahed/st",
"description": "An advanced security tool engineered specifically to scrutinize and detect threats within the intricate protocols utilized by IoT (Internet of Things) devices"
},
{
"name": "salt-scanner",
"url": "https://github.com/0x4D31/salt-scanner",
"description": "Linux vulnerability scanner based on Salt Open and vulners audit API, with Slack notifications and JIRA integration"
},
{
"name": "Vulmap",
"url": "https://github.com/vulmon/Vulmap",
"description": "Local vulnerability scanning programs for Windows and Linux operating systems"
}
],
"Multiple types of Cross-site scripting Detection": [
{
"name": "fuzzXssPHP",
"url": "https://github.com/0x584A/fuzzXssPHP",
"description": "A very simple reflected XSS scanner supports GET/POST"
},
{
"name": "xss_scan",
"url": "https://github.com/chuhades/xss_scan",
"description": "Reflected XSS scanner"
},
{
"name": "autoFindXssAndCsrf",
"url": "https://github.com/BlackHole1/autoFindXssAndCsrf",
"description": "A plugin for browser that checks automatically whether a page haves XSS and CSRF vulnerabilities"
},
{
"name": "shuriken",
"url": "https://github.com/shogunlab/shuriken",
"description": "XSS command line tool for testing lists of XSS payloads on web apps"
},
{
"name": "XSStrike",
"url": "https://github.com/s0md3v/XSStrike",
"description": "Fuzz and bruteforce parameters for XSS, WAFs detect and bypass"
},
{
"name": "DSXS",
"url": "https://github.com/stamparm/DSXS",
"description": "A fully functional cross-site scripting vulnerability scanner,supporting GET and POST parameters,and written in under 100 lines of code"
},
{
"name": "domdig",
"url": "https://github.com/fcavallarin/domdig",
"description": "DOM XSS scanner for Single Page Applications"
},
{
"name": "NoXss",
"url": "https://github.com/lwzSoviet/NoXss",
"description": "Faster reflected-xss and dom-xss scanner based on Phantomjs"
},
{
"name": "PwnXSS",
"url": "https://github.com/pwn0sec/PwnXSS",
"description": "A powerful XSS scanner made in python 3.7"
},
{
"name": "dalfox",
"url": "https://github.com/hahwul/dalfox",
"description": "Parameter Analysis and XSS Scanning tool based on golang"
}
],
"Enterprise sensitive information Leak Scan": [
{
"name": "Multisearch-v2",
"url": "https://github.com/x0day/Multisearch-v2",
"description": "Enterprise assets collector based on search engine"
},
{
"name": "Zeus-Scanner",
"url": "https://github.com/Ekultek/Zeus-Scanner",
"description": "An advanced dork searching tool that is capable of finding IP address /URL blocked by search engine,and can run sqlmap and nmap scans on the URL's"
},
{
"name": "GitHarvester",
"url": "https://github.com/metac0rtex/GitHarvester",
"description": "Used for harvesting information from GitHub"
},
{
"name": "GitPrey",
"url": "https://github.com/repoog/GitPrey",
"description": "Searching sensitive files and contents in GitHub"
},
{
"name": "Hawkeye",
"url": "https://github.com/0xbug/Hawkeye",
"description": "Github leak scan for enterprise"
},
{
"name": "GitMiner",
"url": "https://github.com/UnkL4b/GitMiner",
"description": "Advanced search tool and automation in Github"
},
{
"name": "truffleHog",
"url": "https://github.com/dxa4481/truffleHog",
"description": "Searches high entropy strings through git repositories"
},
{
"name": "Goohak",
"url": "https://github.com/1N3/Goohak",
"description": "Automatically launch Google hacking queries against a target domain"
},
{
"name": "repo-security-scanner",
"url": "https://github.com/UKHomeOffice/repo-security-scanner",
"description": "CLI tool that finds secrets accidentally committed to a git repo, eg passwords, private keys"
},
{
"name": "GSIL",
"url": "https://github.com/FeeiCN/GSIL",
"description": "Github sensitive information leakage scan"
},
{
"name": "x-patrol",
"url": "https://github.com/MiSecurity/x-patrol",
"description": "Github leaked patrol"
},
{
"name": "git-all-secrets",
"url": "https://github.com/anshumanbh/git-all-secrets",
"description": "A tool to capture all the git secrets by leveraging multiple open source git searching tools"
},
{
"name": "Github-Monitor",
"url": "https://github.com/VKSRC/Github-Monitor",
"description": "Github sensitive information leakage monitor by vipkid SRC"
},
{
"name": "shhgit",
"url": "https://github.com/eth0izzle/shhgit",
"description": "A docker and web based monitor for finding secrets and sensitive files across GitHub"
},
{
"name": "credential-digger",
"url": "https://github.com/SAP/credential-digger",
"description": "A GitHub scanning tool that identifies hardcoded credentials, filtering the false positive data through machine learning models"
},
{
"name": "dora",
"url": "https://github.com/sdushantha/dora",
"description": "Find exposed API keys based on RegEx and get exploitation methods for some of keys that are found"
}
],
"Malicious Scripts Detection": [
{
"name": "findWebshell",
"url": "https://github.com/he1m4n6a/findWebshell",
"description": "Simple webshell detector"
},
{
"name": "php-malware-finder",
"url": "https://github.com/nbs-system/php-malware-finder",
"description": "An awesome tool to detect potentially malicious PHP files"
},
{
"name": "PHP-Shell-Detector",
"url": "https://github.com/emposha/PHP-Shell-Detector",
"description": "Helps you find and identify PHP/Perl/Asp/Aspx shells"
},
{
"name": "scan_webshell",
"url": "https://github.com/erevus-cn/scan_webshell",
"description": "Simple webshell detector"
},
{
"name": "Shell-Detector",
"url": "https://github.com/emposha/Shell-Detector",
"description": "An application that helps you find and identify PHP/Perl/Asp/Aspx shells"
}
],
"Vulnerability Assessment for Middleware": [
{
"name": "wyportmap",
"url": "https://github.com/ring04h/wyportmap",
"description": "Target port scanning + system service fingerprint recognition"
},
{
"name": "weakfilescan",
"url": "https://github.com/ring04h/weakfilescan",
"description": "Dynamic multi-thread sensitive information leak detection tool"
},
{
"name": "wafw00f",
"url": "https://github.com/EnableSecurity/wafw00f",
"description": "Identify and fingerprint Web Application Firewall"
},
{
"name": "sslscan",
"url": "https://github.com/rbsec/sslscan",
"description": "Tests SSL/TLS enabled services to discover supported cipher suites"
},
{
"name": "TideFinger",
"url": "https://github.com/TideSec/TideFinger",
"description": "Web fingerprint identification tool, more fingerprint database, more detection methods"
},
{
"name": "FuzzScanner",
"url": "https://github.com/TideSec/FuzzScanner",
"description": "Comprehensive web information collection platform, easy to deploy, versatile and practical"
},
{
"name": "whatweb",
"url": "https://github.com/urbanadventurer/whatweb",
"description": "Website fingerprinter"
},
{
"name": "FingerPrint",
"url": "https://github.com/tanjiti/FingerPrint",
"description": "Another website fingerprinter"
},
{
"name": "Scan-T",
"url": "https://github.com/nanshihui/Scan-T",
"description": "A new spider based on Python with more functions including Network fingerprint search"
},
{
"name": "Nscan",
"url": "https://github.com/OffensivePython/Nscan",
"description": "Fast internet-wide scanner"
},
{
"name": "F-NAScan",
"url": "https://github.com/ywolf/F-NAScan",
"description": "Scanning a network asset information script"
},
{
"name": "dirsearch",
"url": "https://github.com/maurosoria/dirsearch",
"description": "Web path scanner"
},
{
"name": "bannerscan",
"url": "https://github.com/x0day/bannerscan",
"description": "C-segment Banner with path scanner"
},
{
"name": "RASscan",
"url": "https://github.com/RASSec/RASscan",
"description": "Internal network port service scanners"
},
{
"name": "bypass_waf",
"url": "https://github.com/3xp10it/bypass_waf",
"description": "Automatic WAF Bypass Fuzzing Tool"
},
{
"name": "xcdn",
"url": "https://github.com/3xp10it/xcdn",
"description": "Try to find out the actual IP behind CDN"
},
{
"name": "BingC",
"url": "https://github.com/Xyntax/BingC",
"description": "Based on the Bing search engine C / side-stop query, multi-threaded, supported API"
},
{
"name": "DirBrute",
"url": "https://github.com/Xyntax/DirBrute",
"description": "Multi-thread web directory enumerating tool"
},
{
"name": "httpscan",
"url": "https://github.com/zer0h/httpscan",
"description": "A HTTP service detector with a crawler from IP/CIDR"
},
{
"name": "doom",
"url": "https://github.com/lietdai/doom",
"description": "Distributed task distribution of the IP port vulnerability scanner based on thorn"
},
{
"name": "grab.js",
"url": "https://github.com/chichou/grab.js",
"description": "Fast TCP banner grabbing like zgrab, but supports much more protocol"
},
{
"name": "whichCDN",
"url": "https://github.com/Nitr4x/whichCDN",
"description": "Detect if a given website is protected by a CDN"
},
{
"name": "bcrpscan",
"url": "https://github.com/secfree/bcrpscan",
"description": "Base on crawler result web path scanner"
},
{
"name": "ssh_scan",
"url": "https://github.com/mozilla/ssh_scan",
"description": "A prototype SSH configuration and policy scanner"
},
{
"name": "domain-scan",
"url": "https://github.com/18F/domain-scan",
"description": "Scans domains for data on their HTTPS configuration and assorted other things"
},
{
"name": "inforfinder",
"url": "https://github.com/ggusoft/inforfinder",
"description": "A tool made to collect information of any domain pointing at a server and fingerprinter"
}
],
"Vulnerability Assessment for Middleware": [
{
"name": "gwhatweb",
"url": "https://github.com/boy-hack/gwhatweb",
"description": "Fingerprinter for CMS"
},
{
"name": "FileScan",
"url": "https://github.com/Mosuan/FileScan",
"description": "Sensitive files scanner"
},
{
"name": "FileSensor",
"url": "https://github.com/Xyntax/FileSensor",
"description": "Dynamic file detection tool based on crawler"
},
{
"name": "cansina",
"url": "https://github.com/deibit/cansina",
"description": "Web content discovery tool"
},
{
"name": "cipherscan",
"url": "https://github.com/mozilla/cipherscan",
"description": "A very simple way to find out which SSL ciphersuites are supported by a target"
},
{
"name": "wfuzz",
"url": "https://github.com/xmendez/wfuzz",
"description": "Web application framework and web content scanner"
},
{
"name": "Breacher",
"url": "https://github.com/s0md3v/Breacher",
"description": "An advanced multithreaded admin panel finder written in Python"
},
{
"name": "changeme",
"url": "https://github.com/ztgrace/changeme",
"description": "A default credential scanner"
},
{
"name": "CyberScan",
"url": "https://github.com/medbenali/CyberScan",
"description": "An open source penetration testing tool that can analyze packets, decoding, scanning ports, pinging and geolocation of an IP"
},
{
"name": "HellRaiser",
"url": "https://github.com/m0nad/HellRaiser",
"description": "HellRaiser scan with nmap then correlates cpe's found with cve-search to enumerate vulnerabilities"
},
{
"name": "vulscan",
"url": "https://github.com/scipag/vulscan",
"description": "Advanced vulnerability scanning with Nmap NSE"
},
{
"name": "wig",