-
Notifications
You must be signed in to change notification settings - Fork 558
/
.gitmodules
2625 lines (2625 loc) · 122 KB
/
.gitmodules
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
[submodule "CTF Tools/pwntools"]
path = CTF Tools/pwntools
url = https://github.com/Gallopsled/pwntools.git
[submodule "Reverse Engineering/peda"]
path = Reverse Engineering/peda
url = https://github.com/longld/peda.git
[submodule "Reverse Engineering/plasma"]
path = Reverse Engineering/plasma
url = https://github.com/joelpx/plasma.git
[submodule "Reverse Engineering/medusa"]
path = Reverse Engineering/medusa
url = https://github.com/wisk/medusa.git
[submodule "Reverse Engineering/edb-debugger"]
path = Reverse Engineering/edb-debugger
url = https://github.com/eteran/edb-debugger.git
[submodule "Reverse Engineering/x64dbg"]
path = Reverse Engineering/x64dbg
url = https://github.com/x64dbg/x64dbg.git
[submodule "Reverse Engineering/radare2"]
path = Reverse Engineering/radare2
url = https://github.com/radare/radare2.git
[submodule "Network/Sniffer/moloch"]
path = Network/Sniffer/moloch
url = https://github.com/aol/moloch
[submodule "Network/Sniffer/OpenFPC"]
path = Network/Sniffer/OpenFPC
url = https://github.com/leonward/OpenFPC.git
[submodule "Network/Sniffer/PF_RING"]
path = Network/Sniffer/PF_RING
url = https://github.com/ntop/PF_RING.git
[submodule "Pentration Testing/Exploits/exploit-database"]
path = Penetration Testing/Exploits/exploit-database
url = https://github.com/offensive-security/exploit-database.git
[submodule "Pentration Testing/Fuzzing/Zulu"]
path = Penetration Testing/Fuzzing/Zulu
url = https://github.com/nccgroup/Zulu.git
[submodule "Pentration Testing/Password Cracking/Hob0Rules"]
path = Penetration Testing/Password Cracking/Hob0Rules
url = https://github.com/praetorian-inc/Hob0Rules.git
[submodule "Pentration Testing/Web/zaproxy"]
path = Penetration Testing/Web/zaproxy
url = https://github.com/zaproxy/zaproxy.git
[submodule "Pentration Testing/Web/sqlmap"]
path = Penetration Testing/Web/sqlmap
url = https://github.com/sqlmapproject/sqlmap.git
[submodule "Pentration Testing/Password Cracking/hashcat"]
path = Penetration Testing/Password Cracking/hashcat
url = https://github.com/hashcat/hashcat.git
[submodule "Pentration Testing/Post Exploitation/mimikatz"]
path = Penetration Testing/Post Exploitation/mimikatz
url = https://github.com/gentilkiwi/mimikatz.git
[submodule "Reverse Engineering/dex2jar"]
path = Reverse Engineering/dex2jar
url = https://github.com/pxb1988/dex2jar.git
[submodule "Reverse Engineering/jd-gui"]
path = Reverse Engineering/jd-gui
url = https://github.com/java-decompiler/jd-gui.git
[submodule "Reverse Engineering/upx"]
path = Reverse Engineering/upx
url = https://github.com/upx/upx.git
[submodule "Network/Packet Manipulation/pig"]
path = Network/Packet Manipulation/pig
url = https://github.com/rafael-santiago/pig.git
[submodule "Pentration Testing/MITM/mitmproxy"]
path = Penetration Testing/MITM/mitmproxy
url = https://github.com/mitmproxy/mitmproxy.git
[submodule "Pentration Testing/MITM/mitmsocks4j"]
path = Penetration Testing/MITM/mitmsocks4j
url = https://github.com/Akdeniz/mitmsocks4j.git
[submodule "Malware/Dynamic Analysis/androguard"]
path = Malware/Dynamic Analysis/androguard
url = https://github.com/androguard/androguard.git
[submodule "Cryptography/xortool"]
path = Cryptography/xortool
url = https://github.com/hellman/xortool.git
[submodule "Pentration Testing/Password Cracking/JohnTheRipper"]
path = Penetration Testing/Password Cracking/JohnTheRipper
url = https://github.com/magnumripper/JohnTheRipper.git
[submodule "Forensics/File Forensics/autopsy"]
path = Forensics/File Forensics/autopsy
url = https://github.com/sleuthkit/autopsy.git
[submodule "Forensics/File Forensics/sleuthkit"]
path = Forensics/File Forensics/sleuthkit
url = https://github.com/sleuthkit/sleuthkit.git
[submodule "Forensics/File Forensics/scalpel"]
path = Forensics/File Forensics/scalpel
url = https://github.com/sleuthkit/scalpel.git
[submodule "Forensics/File Forensics/hadoop_framework"]
path = Forensics/File Forensics/hadoop_framework
url = https://github.com/sleuthkit/hadoop_framework.git
[submodule "Pentration Testing/Web/tplmap"]
path = Penetration Testing/Web/tplmap
url = https://github.com/epinna/tplmap.git
[submodule "Pentration Testing/Exploiting/metasploit-framework"]
path = Penetration Testing/Exploiting/metasploit-framework
url = https://github.com/rapid7/metasploit-framework.git
[submodule "Pentration Testing/Exploiting/shellsploit-framework"]
path = Penetration Testing/Exploiting/shellsploit-framework
url = https://github.com/b3mb4m/shellsploit-framework.git
[submodule "Reverse Engineering/voltron"]
path = Reverse Engineering/voltron
url = https://github.com/snare/voltron.git
[submodule "Pentration Testing/Training/SecurityShepherd"]
path = Penetration Testing/Training/SecurityShepherd
url = https://github.com/OWASP/SecurityShepherd.git
[submodule "Pentration Testing/Training/railsgoat"]
path = Penetration Testing/Training/railsgoat
url = https://github.com/OWASP/railsgoat.git
[submodule "Pentration Testing/Web/wpscan"]
path = Penetration Testing/Web/wpscan
url = https://github.com/wpscanteam/wpscan.git
[submodule "Pentration Testing/Training/DVWA"]
path = Penetration Testing/Training/DVWA
url = https://github.com/ethicalhack3r/DVWA.git
[submodule "Docker/vaas-cve-2014-6271"]
path = Docker/vaas-cve-2014-6271
url = https://github.com/hmlio/vaas-cve-2014-6271.git
[submodule "Docker/dockerdvwa"]
path = Docker/dockerdvwa
url = https://github.com/citizen-stig/dockerdvwa.git
[submodule "Docker/vaas-cve-2014-0160"]
path = Docker/vaas-cve-2014-0160
url = https://github.com/hmlio/vaas-cve-2014-0160.git
[submodule "Docker/Security_Ninjas_AppSec_Training"]
path = Docker/Security_Ninjas_AppSec_Training
url = https://github.com/opendns/Security_Ninjas_AppSec_Training.git
[submodule "Docker/docker-bench-security"]
path = Docker/docker-bench-security
url = https://github.com/diogomonica/docker-bench-security.git
[submodule "Pentration Testing/Training/WebGoat"]
path = Penetration Testing/Training/WebGoat
url = https://github.com/WebGoat/WebGoat.git
[submodule "Docker/dockermutillidae"]
path = Docker/dockermutillidae
url = https://github.com/citizen-stig/dockermutillidae.git
[submodule "Pentration Testing/Web/nikto"]
path = Penetration Testing/Web/nikto
url = https://github.com/sullo/nikto.git
[submodule "Pentration Testing/Web/w3af"]
path = Penetration Testing/Web/w3af
url = https://github.com/andresriancho/w3af.git
[submodule "Pentration Testing/Web/dvcs-ripper"]
path = Penetration Testing/Web/dvcs-ripper
url = https://github.com/kost/dvcs-ripper.git
[submodule "Pentration Testing/Web/arachni"]
path = Penetration Testing/Web/arachni
url = https://github.com/Arachni/arachni.git
[submodule "Network/Sniffer/netsniff-ng"]
path = Network/Sniffer/netsniff-ng
url = https://github.com/netsniff-ng/netsniff-ng.git
[submodule "Pentration Testing/Exploiting/sparta"]
path = Penetration Testing/Exploiting/sparta
url = https://github.com/SECFORCE/sparta.git
[submodule "Network/Fake Services/dnschef"]
path = Network/Fake Services/dnschef
url = https://github.com/iphelix/dnschef.git
[submodule "Pentration Testing/Info Gathering/dnsenum"]
path = Penetration Testing/Info Gathering/dnsenum
url = https://github.com/fwaeytens/dnsenum.git
[submodule "Pentration Testing/Info Gathering/dnsmap"]
path = Penetration Testing/Info Gathering/dnsmap
url = https://github.com/makefu/dnsmap.git
[submodule "Pentration Testing/Info Gathering/dnsrecon"]
path = Penetration Testing/Info Gathering/dnsrecon
url = https://github.com/darkoperator/dnsrecon.git
[submodule "Forensics/Network Forensics/Dshell"]
path = Forensics/Network Forensics/Dshell
url = https://github.com/USArmyResearchLab/Dshell.git
[submodule "Library/Python/scapy"]
path = Library/Python/scapy
url = https://github.com/secdev/scapy.git
[submodule "Pentration Testing/Info Gathering/smbmap"]
path = Penetration Testing/Info Gathering/smbmap
url = https://github.com/ShawnDEvans/smbmap.git
[submodule "Pentration Testing/Exploiting/fathomless"]
path = Penetration Testing/Exploiting/fathomless
url = https://github.com/xor-function/fathomless.git
[submodule "Reverse Engineering/unlinker"]
path = Reverse Engineering/unlinker
url = https://github.com/jonwil/unlinker.git
[submodule "Pentration Testing/Exploiting/beef"]
path = Penetration Testing/Exploiting/beef
url = https://github.com/beefproject/beef.git
[submodule "Code Auditing/Static Analysis/brakeman"]
path = Code Auditing/Static Analysis/brakeman
url = https://github.com/presidentbeef/brakeman.git
[submodule "Pentration Testing/Post Exploitation/DET"]
path = Penetration Testing/Post Exploitation/DET
url = https://github.com/sensepost/DET.git
[submodule "Pentration Testing/Fuzzing/netzob"]
path = Penetration Testing/Fuzzing/netzob
url = https://github.com/netzob/netzob.git
[submodule "Pentration Testing/Post Exploitation/pwnat"]
path = Penetration Testing/Post Exploitation/pwnat
url = https://github.com/samyk/pwnat.git
[submodule "Pentration Testing/Post Exploitation/mallory"]
path = Penetration Testing/Post Exploitation/mallory
url = https://github.com/justmao945/mallory.git
[submodule "Pentration Testing/Exploiting/zarp"]
path = Penetration Testing/Exploiting/zarp
url = https://github.com/hatRiot/zarp.git
[submodule "Pentration Testing/Port Scanning/masscan"]
path = Penetration Testing/Port Scanning/masscan
url = https://github.com/robertdavidgraham/masscan.git
[submodule "Forensics/Network Forensics/passivedns"]
path = Forensics/Network Forensics/passivedns
url = https://github.com/gamelinux/passivedns.git
[submodule "Malware/Intelligence/passivedns-client"]
path = Malware/Intelligence/passivedns-client
url = https://github.com/chrislee35/passivedns-client.git
[submodule "Pentration Testing/Wireless/wifite"]
path = Penetration Testing/Wireless/wifite
url = https://github.com/derv82/wifite.git
[submodule "Pentration Testing/Services/sslyze"]
path = Penetration Testing/Services/sslyze
url = https://github.com/nabla-c0d3/sslyze.git
[submodule "Pentration Testing/Services/sslstrip"]
path = Penetration Testing/Services/sslstrip
url = https://github.com/moxie0/sslstrip.git
[submodule "Pentration Testing/Services/sslstrip2"]
path = Penetration Testing/Services/sslstrip2
url = https://github.com/LeonardoNve/sslstrip2.git
[submodule "Pentration Testing/Services/tls_prober"]
path = Penetration Testing/Services/tls_prober
url = https://github.com/WestpointLtd/tls_prober.git
[submodule "Pentration Testing/Web/weevely3"]
path = Penetration Testing/Web/weevely3
url = https://github.com/epinna/weevely3.git
[submodule "Pentration Testing/Post Exploitation/Fireaway"]
path = Penetration Testing/Post Exploitation/Fireaway
url = https://github.com/tcstool/Fireaway.git
[submodule "Pentration Testing/Web/NoSQLMap"]
path = Penetration Testing/Web/NoSQLMap
url = https://github.com/tcstool/NoSQLMap.git
[submodule "Malware/Ops/malboxes"]
path = Malware/Ops/malboxes
url = https://github.com/GoSecure/malboxes.git
[submodule "Security/Endpoint Security/duckhunt"]
path = Security/Endpoint Security/duckhunt
url = https://github.com/pmsosa/duckhunt.git
[submodule "Pentration Testing/Training/RopeyTasks"]
path = Penetration Testing/Training/RopeyTasks
url = https://github.com/continuumsecurity/RopeyTasks.git
[submodule "Pentration Testing/Web/liffy"]
path = Penetration Testing/Web/liffy
url = https://github.com/hvqzao/liffy.git
[submodule "Pentration Testing/Web/Kadimus"]
path = Penetration Testing/Web/Kadimus
url = https://github.com/P0cL4bs/Kadimus.git
[submodule "Pentration Testing/Web/Kadabra"]
path = Penetration Testing/Web/Kadabra
url = https://github.com/D35m0nd142/Kadabra.git
[submodule "Pentration Testing/Web/fimap"]
path = Penetration Testing/Web/fimap
url = https://github.com/kurobeats/fimap.git
[submodule "Pentration Testing/Web/WhatWeb"]
path = Penetration Testing/Web/WhatWeb
url = https://github.com/urbanadventurer/WhatWeb.git
[submodule "Pentration Testing/Web/joomscan"]
path = Penetration Testing/Web/joomscan
url = https://github.com/rezasp/joomscan.git
[submodule "Reverse Engineering/coda"]
path = Reverse Engineering/coda
url = https://github.com/npamnani/coda.git
[submodule "Pentration Testing/Mobile/idb"]
path = Penetration Testing/Mobile/idb
url = https://github.com/dmayer/idb.git
[submodule "Reverse Engineering/idaemu"]
path = Reverse Engineering/idaemu
url = https://github.com/36hours/idaemu.git
[submodule "Reverse Engineering/toolbag"]
path = Reverse Engineering/toolbag
url = https://github.com/aaronportnoy/toolbag.git
[submodule "Malware/Ops/flare-fakenet-ng"]
path = Malware/Ops/flare-fakenet-ng
url = https://github.com/fireeye/flare-fakenet-ng.git
[submodule "Malware/Static Analysis/flare-floss"]
path = Malware/Static Analysis/flare-floss
url = https://github.com/fireeye/flare-floss.git
[submodule "Reverse Engineering/flare-ida"]
path = Reverse Engineering/flare-ida
url = https://github.com/fireeye/flare-ida.git
[submodule "Reverse Engineering/flare-bytecode_graph"]
path = Reverse Engineering/flare-bytecode_graph
url = https://github.com/fireeye/flare-bytecode_graph.git
[submodule "Pentration Testing/Mobile/Introspy-iOS"]
path = Penetration Testing/Mobile/Introspy-iOS
url = https://github.com/iSECPartners/Introspy-iOS.git
[submodule "Pentration Testing/Fuzzing/fuzzbox"]
path = Penetration Testing/Fuzzing/fuzzbox
url = https://github.com/iSECPartners/fuzzbox.git
[submodule "Network/Fake Services/dnsRedir"]
path = Network/Fake Services/dnsRedir
url = https://github.com/iSECPartners/dnsRedir.git
[submodule "Reverse Engineering/ida-pomidor"]
path = Reverse Engineering/ida-pomidor
url = https://github.com/iphelix/ida-pomidor.git
[submodule "Reverse Engineering/ida-sploiter"]
path = Reverse Engineering/ida-sploiter
url = https://github.com/iphelix/ida-sploiter.git
[submodule "Pentration Testing/Info Gathering/sslmap"]
path = Penetration Testing/Info Gathering/sslmap
url = https://github.com/iphelix/sslmap.git
[submodule "Reverse Engineering/ida-patcher"]
path = Reverse Engineering/ida-patcher
url = https://github.com/iphelix/ida-patcher.git
[submodule "Network/Analysis/bro"]
path = Network/Analysis/bro
url = https://github.com/bro/bro.git
[submodule "Pentration Testing/Exploiting/PowerSploit"]
path = Penetration Testing/Exploiting/PowerSploit
url = https://github.com/PowerShellMafia/PowerSploit.git
[submodule "Malware/Dynamic Analysis/cuckoo"]
path = Malware/Dynamic Analysis/cuckoo
url = https://github.com/cuckoosandbox/cuckoo.git
[submodule "Pentration Testing/MITM/ettercap"]
path = Penetration Testing/MITM/ettercap
url = https://github.com/Ettercap/ettercap.git
[submodule "Pentration Testing/Password Cracking/thc-hydra"]
path = Penetration Testing/Password Cracking/thc-hydra
url = https://github.com/vanhauser-thc/thc-hydra.git
[submodule "Network/Packet Manipulation/yersinia"]
path = Network/Packet Manipulation/yersinia
url = https://github.com/tomac/yersinia.git
[submodule "Library/Python/pypcap"]
path = Library/Python/pypcap
url = https://github.com/dugsong/pypcap.git
[submodule "Library/Python/pcapy"]
path = Library/Python/pcapy
url = https://github.com/CoreSecurity/pcapy.git
[submodule "Library/C/libdnet"]
path = Library/C/libdnet
url = https://github.com/dugsong/libdnet.git
[submodule "Library/Python/dpkt"]
path = Library/Python/dpkt
url = https://github.com/kbandla/dpkt.git
[submodule "Pentration Testing/Info Gathering/knock"]
path = Penetration Testing/Info Gathering/knock
url = https://github.com/guelfoweb/knock.git
[submodule "Pentration Testing/Info Gathering/subbrute"]
path = Penetration Testing/Info Gathering/subbrute
url = https://github.com/TheRook/subbrute.git
[submodule "Reverse Engineering/paimei"]
path = Reverse Engineering/paimei
url = https://github.com/OpenRCE/paimei.git
[submodule "Reverse Engineering/mona"]
path = Reverse Engineering/mona
url = https://github.com/corelan/mona.git
[submodule "Reverse Engineering/idapython"]
path = Reverse Engineering/idapython
url = https://github.com/idapython/src.git
[submodule "Malware/Dynamic Analysis/pyemu"]
path = Malware/Dynamic Analysis/pyemu
url = https://github.com/jtwhite79/pyemu.git
[submodule "Malware/Static Analysis/pefile"]
path = Malware/Static Analysis/pefile
url = https://github.com/erocarrera/pefile.git
[submodule "Malware/Static Analysis/peepdf"]
path = Malware/Static Analysis/peepdf
url = https://github.com/jesparza/peepdf.git
[submodule "Malware/Ops/CapTipper"]
path = Malware/Ops/CapTipper
url = https://github.com/omriher/CapTipper.git
[submodule "Malware/Honeypot/phoneyc"]
path = Malware/Honeypot/phoneyc
url = https://github.com/buffer/phoneyc.git
[submodule "Malware/Static Analysis/yara"]
path = Malware/Static Analysis/yara
url = https://github.com/VirusTotal/yara.git
[submodule "Malware/Dynamic Analysis/jsunpack-n"]
path = Malware/Dynamic Analysis/jsunpack-n
url = https://github.com/urule99/jsunpack-n.git
[submodule "Reverse Engineering/pyew"]
path = Reverse Engineering/pyew
url = https://github.com/joxeankoret/pyew.git
[submodule "Library/Java/libsignal-service-java"]
path = Library/Java/libsignal-service-java
url = https://github.com/WhisperSystems/libsignal-service-java.git
[submodule "Security/securedrop"]
path = Security/securedrop
url = https://github.com/freedomofpress/securedrop.git
[submodule "Forensics/Live Analysis/OSXAuditor"]
path = Forensics/Live Analysis/OSXAuditor
url = https://github.com/jipegit/OSXAuditor.git
[submodule "Intelligence/VIA4CVE"]
path = Intelligence/VIA4CVE
url = https://github.com/cve-search/VIA4CVE.git
[submodule "Intelligence/xiphosresearch-exploits"]
path = Intelligence/xiphosresearch-exploits
url = https://github.com/XiphosResearch/exploits.git
[submodule "Pentration Testing/Exploiting/evilgrade"]
path = Penetration Testing/Exploiting/evilgrade
url = https://github.com/infobyte/evilgrade.git
[submodule "Malware/Source Code/Carberp"]
path = Malware/Source Code/Carberp
url = https://github.com/hzeroo/Carberp.git
[submodule "Malware/Source Code/Mirai-Source-Code"]
path = Malware/Source Code/Mirai-Source-Code
url = https://github.com/jgamblin/Mirai-Source-Code.git
[submodule "Pentration Testing/Post Exploitation/iodine"]
path = Penetration Testing/Post Exploitation/iodine
url = https://github.com/yarrick/iodine.git
[submodule "Pentration Testing/Info Gathering/ivre"]
path = Penetration Testing/Info Gathering/ivre
url = https://github.com/cea-sec/ivre.git
[submodule "Network/Sniffer/justniffer"]
path = Network/Sniffer/justniffer
url = https://github.com/onotelli/justniffer.git
[submodule "Network/Sniffer/cloud-pcap"]
path = Network/Sniffer/cloud-pcap
url = https://github.com/thepacketgeek/cloud-pcap.git
[submodule "Network/Sniffer/WebPcap"]
path = Network/Sniffer/WebPcap
url = https://github.com/sparrowprince/WebPcap.git
[submodule "Pentration Testing/Reporting/faraday"]
path = Penetration Testing/Reporting/faraday
url = https://github.com/infobyte/faraday.git
[submodule "Pentration Testing/Exploiting/commix"]
path = Penetration Testing/Exploiting/commix
url = https://github.com/commixproject/commix.git
[submodule "Pentration Testing/MITM/Responder"]
path = Penetration Testing/MITM/Responder
url = https://github.com/SpiderLabs/Responder.git
[submodule "Pentration Testing/Exploiting/Windows-Exploit-Suggester"]
path = Penetration Testing/Exploiting/Windows-Exploit-Suggester
url = https://github.com/GDSSecurity/Windows-Exploit-Suggester.git
[submodule "Pentration Testing/Exploiting/Linux_Exploit_Suggester"]
path = Penetration Testing/Exploiting/Linux_Exploit_Suggester
url = https://github.com/PenturaLabs/Linux_Exploit_Suggester.git
[submodule "Pentration Testing/Post Exploitation/Empire"]
path = Penetration Testing/Post Exploitation/Empire
url = https://github.com/adaptivethreat/Empire.git
[submodule "Pentration Testing/DoS/LOIC"]
path = Penetration Testing/DoS/LOIC
url = https://github.com/NewEraCracker/LOIC.git
[submodule "Social Engineering/Harvester/metagoofil"]
path = Social Engineering/Harvester/metagoofil
url = https://github.com/laramies/metagoofil.git
[submodule "Pentration Testing/Port Scanning/nmap"]
path = Penetration Testing/Port Scanning/nmap
url = https://github.com/nmap/nmap.git
[submodule "Social Engineering/Harvester/theHarvester"]
path = Social Engineering/Harvester/theHarvester
url = https://github.com/laramies/theHarvester.git
[submodule "Social Engineering/Harvester/creepy"]
path = Social Engineering/Harvester/creepy
url = https://github.com/ilektrojohn/creepy.git
[submodule "Pentration Testing/Exploits/ruby-advisory-db"]
path = Penetration Testing/Exploits/ruby-advisory-db
url = https://github.com/rubysec/ruby-advisory-db.git
[submodule "Library/Ruby/secureheaders"]
path = Library/Ruby/secureheaders
url = https://github.com/twitter/secureheaders.git
[submodule "Intelligence/rt2jira"]
path = Intelligence/rt2jira
url = https://github.com/fireeye/rt2jira.git
[submodule "Pentration Testing/Reporting/dradis-ce"]
path = Penetration Testing/Reporting/dradis-ce
url = https://github.com/dradis/dradis-ce.git
[submodule "Social Engineering/Framework/social-engineer-toolkit"]
path = Social Engineering/Framework/social-engineer-toolkit
url = https://github.com/trustedsec/social-engineer-toolkit.git
[submodule "Pentration Testing/Port Scanning/ipscan"]
path = Penetration Testing/Port Scanning/ipscan
url = https://github.com/angryziber/ipscan.git
[submodule "Network/Analysis/sguil"]
path = Network/Analysis/sguil
url = https://github.com/bammv/sguil.git
[submodule "Reverse Engineering/distorm"]
path = Reverse Engineering/distorm
url = https://github.com/gdabah/distorm.git
[submodule "Library/Python/python-ptrace"]
path = Library/Python/python-ptrace
url = https://github.com/haypo/python-ptrace.git
[submodule "Reverse Engineering/capstone"]
path = Reverse Engineering/capstone
url = https://github.com/aquynh/capstone.git
[submodule "Library/Python/pybfd"]
path = Library/Python/pybfd
url = https://github.com/Groundworkstech/pybfd.git
[submodule "Pentration Testing/Fuzzing/sulley"]
path = Penetration Testing/Fuzzing/sulley
url = https://github.com/OpenRCE/sulley.git
[submodule "Pentration Testing/Post Exploitation/dnsteal"]
path = Penetration Testing/Post Exploitation/dnsteal
url = https://github.com/m57/dnsteal.git
[submodule "Network/Sniffer/dnscap"]
path = Network/Sniffer/dnscap
url = https://github.com/DNS-OARC/dnscap.git
[submodule "Pentration Testing/Fuzzing/construct"]
path = Penetration Testing/Fuzzing/construct
url = https://github.com/construct/construct.git
[submodule "Forensics/Memory Forensics/volatility"]
path = Forensics/Memory Forensics/volatility
url = https://github.com/volatilityfoundation/volatility.git
[submodule "Forensics/Memory Forensics/rekall"]
path = Forensics/Memory Forensics/rekall
url = https://github.com/google/rekall.git
[submodule "Library/Python/PyPDF2"]
path = Library/Python/PyPDF2
url = https://github.com/mstamy2/PyPDF2.git
[submodule "Malware/Static Analysis/pdfminer"]
path = Malware/Static Analysis/pdfminer
url = https://github.com/euske/pdfminer.git
[submodule "Pentration Testing/Password Cracking/BozoCrack"]
path = Penetration Testing/Password Cracking/BozoCrack
url = https://github.com/juuso/BozoCrack.git
[submodule "Pentration Testing/Wireless/mass-deauth"]
path = Penetration Testing/Wireless/mass-deauth
url = https://github.com/Andy-Maclachlan/mass-deauth.git
[submodule "Malware/Intelligence/misp-modules"]
path = Malware/Intelligence/misp-modules
url = https://github.com/MISP/misp-modules.git
[submodule "Pentration Testing/Training/NodeGoat"]
path = Penetration Testing/Training/NodeGoat
url = https://github.com/OWASP/NodeGoat.git
[submodule "Pentration Testing/Training/juice-shop"]
path = Penetration Testing/Training/juice-shop
url = https://github.com/bkimminich/juice-shop.git
[submodule "Malware/Honeypot/glutton"]
path = Malware/Honeypot/glutton
url = https://github.com/mushorg/glutton.git
[submodule "Pentration Testing/Web/Scout2"]
path = Penetration Testing/Web/Scout2
url = https://github.com/nccgroup/Scout2.git
[submodule "Pentration Testing/DoS/ufonet"]
path = Penetration Testing/DoS/ufonet
url = https://github.com/epsylon/ufonet.git
[submodule "Pentration Testing/Wireless/wifijammer"]
path = Penetration Testing/Wireless/wifijammer
url = https://github.com/DanMcInerney/wifijammer.git
[submodule "Pentration Testing/Wireless/wifikill"]
path = Penetration Testing/Wireless/wifikill
url = https://github.com/roglew/wifikill.git
[submodule "Pentration Testing/Port Scanning/zmap"]
path = Penetration Testing/Port Scanning/zmap
url = https://github.com/zmap/zmap.git
[submodule "Pentration Testing/DoS/torshammer"]
path = Penetration Testing/DoS/torshammer
url = https://github.com/dotfighter/torshammer.git
[submodule "Pentration Testing/DoS/sockstress"]
path = Penetration Testing/DoS/sockstress
url = https://github.com/defuse/sockstress.git
[submodule "Pentration Testing/MITM/MITMf"]
path = Penetration Testing/MITM/MITMf
url = https://github.com/byt3bl33d3r/MITMf.git
[submodule "Pentration Testing/Wireless/LANs.py"]
path = Penetration Testing/Wireless/LANs.py
url = https://github.com/DanMcInerney/LANs.py.git
[submodule "Pentration Testing/DoS/DHCPig"]
path = Penetration Testing/DoS/DHCPig
url = https://github.com/kamorin/DHCPig.git
[submodule "Network/Sniffer/net-creds"]
path = Network/Sniffer/net-creds
url = https://github.com/DanMcInerney/net-creds.git
[submodule "Pentration Testing/MITM/dnsspoof"]
path = Penetration Testing/MITM/dnsspoof
url = https://github.com/DanMcInerney/dnsspoof.git
[submodule "Pentration Testing/Web/wpsploit"]
path = Penetration Testing/Web/wpsploit
url = https://github.com/espreto/wpsploit.git
[submodule "Pentration Testing/Web/WS-Attacker"]
path = Penetration Testing/Web/WS-Attacker
url = https://github.com/RUB-NDS/WS-Attacker.git
[submodule "Pentration Testing/Web/OWASP-Xenotix-XSS-Exploit-Framework"]
path = Penetration Testing/Web/OWASP-Xenotix-XSS-Exploit-Framework
url = https://github.com/ajinabraham/OWASP-Xenotix-XSS-Exploit-Framework.git
[submodule "Pentration Testing/Info Gathering/bundler-audit"]
path = Penetration Testing/Info Gathering/bundler-audit
url = https://github.com/rubysec/bundler-audit.git
[submodule "Pentration Testing/Web/yasuo"]
path = Penetration Testing/Web/yasuo
url = https://github.com/0xsauby/yasuo.git
[submodule "Pentration Testing/Exploiting/vuls"]
path = Penetration Testing/Exploiting/vuls
url = https://github.com/future-architect/vuls.git
[submodule "Reverse Engineering/keystone"]
path = Reverse Engineering/keystone
url = https://github.com/keystone-engine/keystone.git
[submodule "Reverse Engineering/unicorn"]
path = Reverse Engineering/unicorn
url = https://github.com/unicorn-engine/unicorn.git
[submodule "Pentration Testing/Exploiting/routersploit"]
path = Penetration Testing/Exploiting/routersploit
url = https://github.com/reverse-shell/routersploit.git
[submodule "Reverse Engineering/fibratus"]
path = Reverse Engineering/fibratus
url = https://github.com/rabbitstack/fibratus.git
[submodule "Social Engineering/Harvester/github-dorks"]
path = Social Engineering/Harvester/github-dorks
url = https://github.com/techgaun/github-dorks.git
[submodule "Pentration Testing/Exploiting/spoodle"]
path = Penetration Testing/Exploiting/spoodle
url = https://github.com/vjex/spoodle.git
[submodule "Reverse Engineering/chipsec"]
path = Reverse Engineering/chipsec
url = https://github.com/chipsec/chipsec.git
[submodule "Pentration Testing/Fuzzing/python-afl"]
path = Penetration Testing/Fuzzing/python-afl
url = https://github.com/jwilk/python-afl.git
[submodule "Malware/Static Analysis/androwarn"]
path = Malware/Static Analysis/androwarn
url = https://github.com/maaaaz/androwarn.git
[submodule "Malware/Static Analysis/ApkAnalyser"]
path = Malware/Static Analysis/ApkAnalyser
url = https://github.com/sonyxperiadev/ApkAnalyser.git
[submodule "Malware/Static Analysis/apkinspector"]
path = Malware/Static Analysis/apkinspector
url = https://github.com/honeynet/apkinspector.git
[submodule "Malware/Static Analysis/droidlegacy"]
path = Malware/Static Analysis/droidlegacy
url = https://bitbucket.org/srl/droidlegacy.git
[submodule "Malware/Static Analysis/Argus-SAF"]
path = Malware/Static Analysis/Argus-SAF
url = https://github.com/arguslab/Argus-SAF.git
[submodule "Malware/Static Analysis/PScout"]
path = Malware/Static Analysis/PScout
url = https://github.com/zd2100/PScout.git
[submodule "Malware/Static Analysis/smalisca"]
path = Malware/Static Analysis/smalisca
url = https://github.com/dorneanu/smalisca.git
[submodule "Security/Privacy/nipe"]
path = Security/Privacy/nipe
url = https://github.com/GouveaHeitor/nipe.git
[submodule "Pentration Testing/Training/dont_panic"]
path = Penetration Testing/Training/dont_panic
url = https://github.com/antire-book/dont_panic.git
[submodule "Malware/Honeypot/spamscope"]
path = Malware/Honeypot/spamscope
url = https://github.com/SpamScope/spamscope.git
[submodule "Malware/Static Analysis/CFGScanDroid"]
path = Malware/Static Analysis/CFGScanDroid
url = https://github.com/douggard/CFGScanDroid.git
[submodule "Malware/Static Analysis/maldrolyzer"]
path = Malware/Static Analysis/maldrolyzer
url = https://github.com/maldroid/maldrolyzer.git
[submodule "Malware/Static Analysis/ConDroid"]
path = Malware/Static Analysis/ConDroid
url = https://github.com/JulianSchuette/ConDroid.git
[submodule "Pentration Testing/Mobile/qark"]
path = Penetration Testing/Mobile/qark
url = https://github.com/linkedin/qark.git
[submodule "Pentration Testing/Mobile/AndroBugs_Framework"]
path = Penetration Testing/Mobile/AndroBugs_Framework
url = https://github.com/AndroBugs/AndroBugs_Framework.git
[submodule "Pentration Testing/Mobile/Mobile-Security-Framework-MobSF"]
path = Penetration Testing/Mobile/Mobile-Security-Framework-MobSF
url = https://github.com/ajinabraham/Mobile-Security-Framework-MobSF.git
[submodule "Malware/Dynamic Analysis/droidbox"]
path = Malware/Dynamic Analysis/droidbox
url = https://github.com/pjlantz/droidbox.git
[submodule "Pentration Testing/Mobile/CobraDroidBeta"]
path = Penetration Testing/Mobile/CobraDroidBeta
url = https://github.com/jakev/CobraDroidBeta.git
[submodule "Malware/Static Analysis/Inspeckage"]
path = Malware/Static Analysis/Inspeckage
url = https://github.com/ac-pm/Inspeckage.git
[submodule "Malware/Dynamic Analysis/DECAF"]
path = Malware/Dynamic Analysis/DECAF
url = https://github.com/sycurelab/DECAF.git
[submodule "Malware/Dynamic Analysis/cuckoo-droid"]
path = Malware/Dynamic Analysis/cuckoo-droid
url = https://github.com/idanr1986/cuckoo-droid.git
[submodule "Malware/Dynamic Analysis/hooker"]
path = Malware/Dynamic Analysis/hooker
url = https://github.com/AndroidHooker/hooker.git
[submodule "Malware/Dynamic Analysis/ProbeDroid"]
path = Malware/Dynamic Analysis/ProbeDroid
url = https://github.com/ZSShen/ProbeDroid.git
[submodule "Pentration Testing/MITM/nogotofail"]
path = Penetration Testing/MITM/nogotofail
url = https://github.com/google/nogotofail.git
[submodule "Forensics/Mobile/mem"]
path = Forensics/Mobile/mem
url = https://github.com/MobileForensicsResearch/mem.git
[submodule "Reverse Engineering/MARA_Framework"]
path = Reverse Engineering/MARA_Framework
url = https://github.com/xtiankisutsa/MARA_Framework.git
[submodule "Reverse Engineering/smali"]
path = Reverse Engineering/smali
url = https://github.com/JesusFreke/smali.git
[submodule "Reverse Engineering/AndBug"]
path = Reverse Engineering/AndBug
url = https://github.com/swdunlop/AndBug.git
[submodule "Reverse Engineering/Apktool"]
path = Reverse Engineering/Apktool
url = https://github.com/iBotPeaches/Apktool.git
[submodule "Pentration Testing/Mobile/AFE"]
path = Penetration Testing/Mobile/AFE
url = https://github.com/appknox/AFE.git
[submodule "Pentration Testing/Mobile/drozer"]
path = Penetration Testing/Mobile/drozer
url = https://github.com/mwrlabs/drozer.git
[submodule "Reverse Engineering/enjarify"]
path = Reverse Engineering/enjarify
url = https://github.com/google/enjarify.git
[submodule "Reverse Engineering/fino"]
path = Reverse Engineering/fino
url = https://github.com/sysdream/fino.git
[submodule "Reverse Engineering/frida"]
path = Reverse Engineering/frida
url = https://github.com/frida/frida.git
[submodule "Reverse Engineering/Krakatau"]
path = Reverse Engineering/Krakatau
url = https://github.com/Storyyeller/Krakatau.git
[submodule "Reverse Engineering/redexer"]
path = Reverse Engineering/redexer
url = https://github.com/plum-umd/redexer.git
[submodule "Reverse Engineering/simplify"]
path = Reverse Engineering/simplify
url = https://github.com/CalebFenton/simplify.git
[submodule "Pentration Testing/Fuzzing/radamsa-android"]
path = Penetration Testing/Fuzzing/radamsa-android
url = https://github.com/anestisb/radamsa-android.git
[submodule "Pentration Testing/Fuzzing/melkor-android"]
path = Penetration Testing/Fuzzing/melkor-android
url = https://github.com/anestisb/melkor-android.git
[submodule "Pentration Testing/Fuzzing/honggfuzz"]
path = Penetration Testing/Fuzzing/honggfuzz
url = https://github.com/google/honggfuzz.git
[submodule "Pentration Testing/Fuzzing/AndroFuzz"]
path = Penetration Testing/Fuzzing/AndroFuzz
url = https://github.com/jonmetz/AndroFuzz.git
[submodule "Malware/Static Analysis/FSquaDRA"]
path = Malware/Static Analysis/FSquaDRA
url = https://github.com/zyrikby/FSquaDRA.git
[submodule "Pentration Testing/Fuzzing/MFFA"]
path = Penetration Testing/Fuzzing/MFFA
url = https://github.com/fuzzing/MFFA.git
[submodule "Malware/Source Code/android-malware"]
path = Malware/Source Code/android-malware
url = https://github.com/ashishb/android-malware.git
[submodule "Malware/Honeypot/Maildb"]
path = Malware/Honeypot/Maildb
url = https://github.com/kevthehermit/Maildb.git
[submodule "Reverse Engineering/bytecode-viewer"]
path = Reverse Engineering/bytecode-viewer
url = https://github.com/Konloch/bytecode-viewer.git
[submodule "Malware/Ops/google-play-crawler"]
path = Malware/Ops/google-play-crawler
url = https://github.com/Akdeniz/google-play-crawler.git
[submodule "Malware/Ops/googleplay-api"]
path = Malware/Ops/googleplay-api
url = https://github.com/egirault/googleplay-api.git
[submodule "Malware/Ops/node-google-play"]
path = Malware/Ops/node-google-play
url = https://github.com/dweinstein/node-google-play.git
[submodule "Malware/Ops/node-aptoide"]
path = Malware/Ops/node-aptoide
url = https://github.com/dweinstein/node-aptoide.git
[submodule "Malware/Ops/node-appland"]
path = Malware/Ops/node-appland
url = https://github.com/dweinstein/node-appland.git
[submodule "Pentration Testing/Mobile/android-vts"]
path = Penetration Testing/Mobile/android-vts
url = https://github.com/AndroidVTS/android-vts.git
[submodule "Malware/Source Code/fancybear"]
path = Malware/Source Code/fancybear
url = https://github.com/rickey-g/fancybear
[submodule "Code Auditing/Static Analysis/shellcheck"]
path = Code Auditing/Static Analysis/shellcheck
url = https://github.com/koalaman/shellcheck.git
[submodule "Pentration Testing/Training/DVWS"]
path = Penetration Testing/Training/DVWS
url = https://github.com/interference-security/DVWS.git
[submodule "Pentration Testing/Info Gathering/truffleHog"]
path = Penetration Testing/Info Gathering/truffleHog
url = https://github.com/dxa4481/truffleHog.git
[submodule "Pentration Testing/Exploits/chakra-2016-11"]
path = Penetration Testing/Exploits/chakra-2016-11
url = https://github.com/theori-io/chakra-2016-11.git
[submodule "Reverse Engineering/gdb-dashboard"]
path = Reverse Engineering/gdb-dashboard
url = https://github.com/cyrus-and/gdb-dashboard.git
[submodule "Malware/Dynamic Analysis/magento-malware-scanner"]
path = Malware/Dynamic Analysis/magento-malware-scanner
url = https://github.com/gwillem/magento-malware-scanner.git
[submodule "Pentration Testing/Exploiting/rupture"]
path = Penetration Testing/Exploiting/rupture
url = https://github.com/dionyziz/rupture.git
[submodule "CTF Tools/CTFd"]
path = CTF Tools/CTFd
url = https://github.com/isislab/CTFd.git
[submodule "CTF Tools/fbctf"]
path = CTF Tools/fbctf
url = https://github.com/facebook/fbctf.git
[submodule "CTF Tools/mellivora"]
path = CTF Tools/mellivora
url = https://github.com/Nakiami/mellivora.git
[submodule "CTF Tools/NightShade"]
path = CTF Tools/NightShade
url = https://github.com/UnrealAkama/NightShade.git
[submodule "CTF Tools/scorebot"]
path = CTF Tools/scorebot
url = https://github.com/legitbs/scorebot.git
[submodule "Cryptography/featherduster"]
path = Cryptography/featherduster
url = https://github.com/nccgroup/featherduster.git
[submodule "Cryptography/rsatool"]
path = Cryptography/rsatool
url = https://github.com/ius/rsatool.git
[submodule "Pentration Testing/Exploiting/dllinjector"]
path = Penetration Testing/Exploiting/dllinjector
url = https://github.com/OpenSecurityResearch/dllinjector.git
[submodule "Reverse Engineering/qira"]
path = Reverse Engineering/qira
url = https://github.com/BinaryAnalysisPlatform/qira.git
[submodule "Pentration Testing/Exploiting/ROPgadget"]
path = Penetration Testing/Exploiting/ROPgadget
url = https://github.com/JonathanSalwan/ROPgadget.git
[submodule "CTF Tools/v0lt"]
path = CTF Tools/v0lt
url = https://github.com/P1kachu/v0lt.git
[submodule "Forensics/File Forensics/shellbags"]
path = Forensics/File Forensics/shellbags
url = https://github.com/williballenthin/shellbags.git
[submodule "Reverse Engineering/apk2gold"]
path = Reverse Engineering/apk2gold
url = https://github.com/lxdvs/apk2gold.git
[submodule "Reverse Engineering/barf-project"]
path = Reverse Engineering/barf-project
url = https://github.com/programa-stic/barf-project.git
[submodule "Reverse Engineering/binwalk"]
path = Reverse Engineering/binwalk
url = https://github.com/devttys0/binwalk.git
[submodule "Reverse Engineering/boomerang"]
path = Reverse Engineering/boomerang
url = https://github.com/BoomerangDecompiler/boomerang.git
[submodule "Reverse Engineering/ctf_import"]
path = Reverse Engineering/ctf_import
url = https://github.com/docileninja/ctf_import.git
[submodule "Reverse Engineering/gef"]
path = Reverse Engineering/gef
url = https://github.com/hugsy/gef.git
[submodule "Reverse Engineering/jadx"]
path = Reverse Engineering/jadx
url = https://github.com/skylot/jadx.git
[submodule "Reverse Engineering/uncompyle"]
path = Reverse Engineering/uncompyle
url = https://github.com/gstarnberger/uncompyle.git
[submodule "Pentration Testing/Exploiting/PSKernel-Primitives"]
path = Penetration Testing/Exploiting/PSKernel-Primitives
url = https://github.com/FuzzySecurity/PSKernel-Primitives.git
[submodule "Pentration Testing/Post Exploitation/p0wnedShell"]
path = Penetration Testing/Post Exploitation/p0wnedShell
url = https://github.com/Cn33liz/p0wnedShell.git
[submodule "Malware/Honeypot/MongoDB-HoneyProxy"]
path = Malware/Honeypot/MongoDB-HoneyProxy
url = https://github.com/Plazmaz/MongoDB-HoneyProxy.git
[submodule "Pentration Testing/Info Gathering/operative-framework"]
path = Penetration Testing/Info Gathering/operative-framework
url = https://github.com/graniet/operative-framework.git
[submodule "Reverse Engineering/ufgraph"]
path = Reverse Engineering/ufgraph
url = https://github.com/bfosterjr/ufgraph.git
[submodule "Reverse Engineering/RABCDAsm"]
path = Reverse Engineering/RABCDAsm
url = https://github.com/CyberShadow/RABCDAsm.git
[submodule "Reverse Engineering/xxxswf"]
path = Reverse Engineering/xxxswf
url = https://bitbucket.org/Alexander_Hanel/xxxswf.git
[submodule "Malware/Honeypot/elastichoney"]
path = Malware/Honeypot/elastichoney
url = https://github.com/jordan-wright/elastichoney.git
[submodule "Malware/Honeypot/MysqlPot"]
path = Malware/Honeypot/MysqlPot
url = https://github.com/schmalle/MysqlPot.git
[submodule "Malware/Honeypot/nosqlpot"]
path = Malware/Honeypot/nosqlpot
url = https://github.com/torque59/nosqlpot.git
[submodule "Malware/Honeypot/ESPot"]
path = Malware/Honeypot/ESPot
url = https://github.com/mycert/ESPot.git
[submodule "Malware/Honeypot/glastopf"]
path = Malware/Honeypot/glastopf
url = https://github.com/mushorg/glastopf.git
[submodule "Malware/Honeypot/phpmyadmin_honeypot"]
path = Malware/Honeypot/phpmyadmin_honeypot
url = https://github.com/gfoss/phpmyadmin_honeypot.git
[submodule "Malware/Honeypot/Servletpot"]
path = Malware/Honeypot/Servletpot
url = https://github.com/schmalle/Servletpot.git
[submodule "Malware/Honeypot/Nodepot"]
path = Malware/Honeypot/Nodepot
url = https://github.com/schmalle/Nodepot.git
[submodule "Malware/Honeypot/basic-auth-pot"]
path = Malware/Honeypot/basic-auth-pot
url = https://github.com/bjeborn/basic-auth-pot.git
[submodule "Malware/Honeypot/shadowd"]
path = Malware/Honeypot/shadowd
url = https://github.com/zecure/shadowd.git
[submodule "Malware/Honeypot/smart-honeypot"]
path = Malware/Honeypot/smart-honeypot
url = https://github.com/freak3dot/smart-honeypot.git
[submodule "Malware/Honeypot/HonnyPotter"]
path = Malware/Honeypot/HonnyPotter
url = https://github.com/MartinIngesen/HonnyPotter.git
[submodule "Malware/Honeypot/wp-smart-honeypot"]
path = Malware/Honeypot/wp-smart-honeypot
url = https://github.com/freak3dot/wp-smart-honeypot.git
[submodule "Malware/Honeypot/wordpot"]
path = Malware/Honeypot/wordpot
url = https://github.com/gbrindisi/wordpot.git
[submodule "Reverse Engineering/ScratchABit"]
path = Reverse Engineering/ScratchABit
url = https://github.com/pfalcon/ScratchABit.git
[submodule "Pentration Testing/Mobile/Androl4b"]
path = Penetration Testing/Mobile/Androl4b
url = https://github.com/sh4hin/Androl4b.git
[submodule "Pentration Testing/Mobile/JAADAS"]
path = Penetration Testing/Mobile/JAADAS
url = https://github.com/flankerhqd/JAADAS.git
[submodule "Pentration Testing/Web/wordpress-exploit-framework"]
path = Penetration Testing/Web/wordpress-exploit-framework
url = https://github.com/rastating/wordpress-exploit-framework.git
[submodule "Library/Python/rdpy"]
path = Library/Python/rdpy
url = https://github.com/citronneur/rdpy.git
[submodule "Pentration Testing/Info Gathering/Wmap"]
path = Penetration Testing/Info Gathering/Wmap
url = https://github.com/MaYaSeVeN/Wmap.git
[submodule "Pentration Testing/Info Gathering/URLextractor"]
path = Penetration Testing/Info Gathering/URLextractor
url = https://github.com/eschultze/URLextractor.git
[submodule "Malware/Honeypot/conpot"]
path = Malware/Honeypot/conpot
url = https://github.com/mushorg/conpot.git
[submodule "Malware/Honeypot/dionaea"]
path = Malware/Honeypot/dionaea
url = https://github.com/DinoTools/dionaea.git
[submodule "Malware/Honeypot/mnemosyne"]
path = Malware/Honeypot/mnemosyne
url = https://github.com/johnnykv/mnemosyne.git
[submodule "Malware/Honeypot/thug"]
path = Malware/Honeypot/thug
url = https://github.com/buffer/thug.git
[submodule "Malware/Source Code/Zeus"]
path = Malware/Source Code/Zeus
url = https://github.com/Visgean/Zeus.git
[submodule "Malware/Source Code/TinyNuke"]
path = Malware/Source Code/TinyNuke
url = https://github.com/aainz/TinyNuke.git
[submodule "Reverse Engineering/r2msdn"]
path = Reverse Engineering/r2msdn
url = https://github.com/newlog/r2msdn.git
[submodule "Reverse Engineering/manticore"]
path = Reverse Engineering/manticore
url = https://github.com/trailofbits/manticore.git
[submodule "Reverse Engineering/YaCo"]
path = Reverse Engineering/YaCo
url = https://github.com/DGA-MI-SSI/YaCo.git
[submodule "Forensics/Misc/libfvde"]
path = Forensics/Misc/libfvde
url = https://github.com/libyal/libfvde.git
[submodule "CTF Tools/one_gadget"]
path = CTF Tools/one_gadget
url = https://github.com/david942j/one_gadget.git
[submodule "Pentration Testing/Exploits/MS17-010"]
path = Penetration Testing/Exploits/MS17-010
url = https://github.com/worawit/MS17-010.git
[submodule "Social Engineering/Harvester/TTSL"]
path = Social Engineering/Harvester/TTSL
url = https://github.com/dchrastil/TTSL.git
[submodule "Pentration Testing/Exploiting/Veil"]
path = Penetration Testing/Exploiting/Veil
url = https://github.com/Veil-Framework/Veil.git
[submodule "Pentration Testing/Info Gathering/SecLists"]
path = Penetration Testing/Info Gathering/SecLists
url = https://github.com/danielmiessler/SecLists.git
[submodule "Forensics/File Forensics/osxcollector"]
path = Forensics/File Forensics/osxcollector
url = https://github.com/Yelp/osxcollector.git
[submodule "Malware/Dynamic Analysis/wscript"]
path = Malware/Dynamic Analysis/wscript
url = https://github.com/mrpapercut/wscript.git
[submodule "Pentration Testing/Exploits/Jira-Scan"]
path = Penetration Testing/Exploits/Jira-Scan
url = https://github.com/random-robbie/Jira-Scan.git
[submodule "Pentration Testing/Web/xss-payload-list"]
path = Penetration Testing/Web/xss-payload-list
url = https://github.com/ismailtasdelen/xss-payload-list.git
[submodule "Security/Cloud Security/azucar"]
path = Security/Cloud Security/azucar
url = https://github.com/nccgroup/azucar.git
[submodule "Pentration Testing/Exploiting/shellen"]
path = Penetration Testing/Exploiting/shellen
url = https://github.com/merrychap/shellen.git
[submodule "Malware/Dynamic Analysis/uitkyk"]
path = Malware/Dynamic Analysis/uitkyk
url = https://github.com/brompwnie/uitkyk.git
[submodule "Malware/Ops/CSCGuard"]
path = Malware/Ops/CSCGuard
url = https://github.com/glinares/CSCGuard.git
[submodule "Reverse Engineering/heap-viewer"]
path = Reverse Engineering/heap-viewer
url = https://github.com/danigargu/heap-viewer.git
[submodule "Pentration Testing/Exploits/CVE-2018-8897"]
path = Penetration Testing/Exploits/CVE-2018-8897
url = https://github.com/nmulasmajic/CVE-2018-8897.git
[submodule "Reverse Engineering/shed"]