forked from 0x90/wifi-arsenal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitmodules
1854 lines (1854 loc) · 57 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 "3vilTwinAttacker"]
path = 3vilTwinAttacker
url = https://github.com/P0cL4bs/3vilTwinAttacker
[submodule "802.11-data"]
path = 802.11-data
url = https://github.com/ewa/802.11-data
[submodule "802.11p-wireless-regdb"]
path = 802.11p-wireless-regdb
url = https://github.com/CTU-IIG/802.11p-wireless-regdb
[submodule "80211-fun"]
path = 80211-fun
url = https://github.com/flupzor/80211-fun
[submodule "acs"]
path = acs
url = https://github.com/mcgrof/acs
[submodule "aircrack-db"]
path = aircrack-db
url = https://github.com/SaltwaterC/aircrack-db
[submodule "aircrack-ng"]
path = aircrack-ng
url = https://github.com/aircrack-ng/aircrack-ng
[submodule "airmode"]
path = airmode
url = https://github.com/Frozenbox/airmode
[submodule "airodump-iv"]
path = airodump-iv
url = https://github.com/ivanlei/airodump-iv
[submodule "airport-sniffer"]
path = airport-sniffer
url = https://github.com/zhovner/airport-sniffer
[submodule "airscan"]
path = airscan
url = https://github.com/trou/airscan
[submodule "airview"]
path = airview
url = https://github.com/Crypt0s/airview
[submodule "airxploit"]
path = airxploit
url = https://github.com/balle/airxploit
[submodule "auto-reaver"]
path = auto-reaver
url = https://github.com/0x90/auto-reaver
[submodule "badkarma"]
path = badkarma
url = https://github.com/atechdad/badkarma
[submodule "banjax"]
path = banjax
url = https://github.com/0x90/banjax
[submodule "basiciw"]
path = basiciw
url = https://github.com/enkore/basiciw
[submodule "belkin4xx"]
path = belkin4xx
url = https://bitbucket.org/dudux/belkin4xx
[submodule "bunny"]
path = bunny
url = https://github.com/mothran/bunny
[submodule "chap2asleap"]
path = chap2asleap
url = https://github.com/xiao106347/chap2asleap
[submodule "CloudCrackInstaller"]
path = CloudCrackInstaller
url = https://github.com/tjetzinger/CloudCrackInstaller
[submodule "cookie-monster"]
path = cookie-monster
url = https://github.com/0x90/cookie-monster
[submodule "cornuprobia"]
path = cornuprobia
url = https://github.com/4ZM/cornuprobia
[submodule "COUCHFI"]
path = COUCHFI
url = https://github.com/calvinmetcalf/COUCHFI
[submodule "crda"]
path = crda
url = https://github.com/mcgrof/crda
[submodule "darm"]
path = darm
url = https://github.com/eldraco/darm
[submodule "dot11decrypt"]
path = dot11decrypt
url = https://github.com/mfontanini/dot11decrypt
[submodule "dot11er"]
path = dot11er
url = https://github.com/timow/dot11er
[submodule "dot11sniffer"]
path = dot11sniffer
url = https://github.com/DepthDeluxe/dot11sniffer
[submodule "eap_detect"]
path = eap_detect
url = https://github.com/Raiton/eap_detect
[submodule "eapeak"]
path = eapeak
url = https://github.com/securestate/eapeak
[submodule "easy-creds"]
path = easy-creds
url = https://github.com/brav0hax/easy-creds
[submodule "fakeAP"]
path = fakeAP
url = https://github.com/DanMcInerney/fakeAP
[submodule "fern-wifi-cracker"]
path = fern-wifi-cracker
url = https://github.com/0x90/fern-wifi-cracker
[submodule "frame-randomizer"]
path = frame-randomizer
url = https://github.com/mike-albano/frame-randomizer
[submodule "FruityWifi"]
path = FruityWifi
url = https://github.com/xtr4nge/FruityWifi
[submodule "FuzzAP"]
path = FuzzAP
url = https://github.com/lostincynicism/FuzzAP
[submodule "FWAP"]
path = FWAP
url = https://github.com/szehl/FWAP
[submodule "GrapplingHook"]
path = GrapplingHook
url = https://github.com/nseetharaman/GrapplingHook
[submodule "haiku-wifi"]
path = haiku-wifi
url = https://github.com/jedahan/haiku-wifi
[submodule "horst"]
path = horst
url = https://github.com/br101/horst
[submodule "hostapd.py"]
path = hostapd.py
url = https://github.com/nims11/hostapd.py
[submodule "hostapd-wpe"]
path = hostapd-wpe
url = https://github.com/OpenSecurityResearch/hostapd-wpe
[submodule "huawei_wifi"]
path = huawei_wifi
url = https://github.com/davux/huawei_wifi
[submodule "iSniff-GPS"]
path = iSniff-GPS
url = https://github.com/hubert3/iSniff-GPS
[submodule "karma"]
path = karma
url = https://github.com/atimorin/karma
[submodule "kismeth2earth"]
path = kismeth2earth
url = https://github.com/andreagrandi/kismeth2earth
[submodule "LANs.py"]
path = LANs.py
url = https://github.com/DanMcInerney/LANs.py
[submodule "libcowpatty"]
path = libcowpatty
url = https://github.com/adambregenzer/libcowpatty
[submodule "libnl"]
path = libnl
url = https://github.com/tgraf/libnl
[submodule "lorcon"]
path = lorcon
url = https://github.com/0x90/lorcon
[submodule "ath10k-firmware"]
path = ath10k-firmware
url = https://github.com/kvalo/ath10k-firmware
[submodule "ath9k-4W-patch"]
path = ath9k-4W-patch
url = https://github.com/rboninsegna/ath9k-4W-patch
[submodule "ath9k_ath5k_full_permissive_unlock_all_channels.patch"]
path = ath9k_ath5k_full_permissive_unlock_all_channels.patch
url = https://github.com/doom5/ath9k_ath5k_full_permissive_unlock_all_channels.patch
[submodule "ath9k_caldata"]
path = ath9k_caldata
url = https://github.com/Noltari/ath9k_caldata
[submodule "ath9k-docs"]
path = ath9k-docs
url = https://github.com/erikarn/ath9k-docs
[submodule "ath9k_dynack"]
path = ath9k_dynack
url = https://github.com/LorenzoBianconi/ath9k_dynack
[submodule "ath9k_grt"]
path = ath9k_grt
url = https://github.com/valkjsaaa/ath9k_grt
[submodule "mac-analyzer"]
path = mac-analyzer
url = https://github.com/abnarain/mac-analyzer
[submodule "ath9k-nav"]
path = ath9k-nav
url = https://github.com/hughobrien/ath9k-nav
[submodule "ath9k"]
path = ath9k
url = https://github.com/aelam/ath9k
[submodule "ath9k-spectral-scan"]
path = ath9k-spectral-scan
url = https://github.com/kazikcz/ath9k-spectral-scan
[submodule "AtherosROMKit"]
path = AtherosROMKit
url = https://github.com/andyvand/AtherosROMKit
[submodule "FFT_eval"]
path = FFT_eval
url = https://github.com/simonwunderlich/FFT_eval
[submodule "open-ath9k-htc-firmware"]
path = open-ath9k-htc-firmware
url = https://github.com/qca/open-ath9k-htc-firmware
[submodule "qca-swiss-army-knife"]
path = qca-swiss-army-knife
url = https://github.com/mcgrof/qca-swiss-army-knife
[submodule "RegMon"]
path = RegMon
url = https://github.com/thuehn/RegMon
[submodule "speccy"]
path = speccy
url = https://github.com/bcopeland/speccy
[submodule "bcmon"]
path = bcmon
url = https://github.com/0x90/bcmon
[submodule "BrcmPatchRAM"]
path = BrcmPatchRAM
url = https://github.com/the-darkvoid/BrcmPatchRAM
[submodule "broadcom-wl-monitormode"]
path = broadcom-wl-monitormode
url = https://github.com/timofurrer/broadcom-wl-monitormode
[submodule "phystats"]
path = phystats
url = https://github.com/ransford/phystats
[submodule "OS-X-Realtek-Network"]
path = OS-X-Realtek-Network
url = https://github.com/RehabMan/OS-X-Realtek-Network
[submodule "rtl8812au"]
path = rtl8812au
url = https://github.com/gnab/rtl8812au
[submodule "lrc"]
path = lrc
url = https://github.com/0x0d/lrc
[submodule "MappingWirelessNetworks"]
path = MappingWirelessNetworks
url = https://github.com/jeffThompson/MappingWirelessNetworks
[submodule "modwifi"]
path = modwifi
url = https://github.com/vanhoefm/modwifi
[submodule "Native-WiFi-API-Beacon-Sniffer"]
path = Native-WiFi-API-Beacon-Sniffer
url = https://github.com/6e726d/Native-WiFi-API-Beacon-Sniffer
[submodule "null-packet-wifi-prompt"]
path = null-packet-wifi-prompt
url = https://bitbucket.org/edkeeble/null-packet-wifi-prompt
[submodule "openrtls"]
path = openrtls
url = https://github.com/konker/openrtls
[submodule "openwips-ng"]
path = openwips-ng
url = https://github.com/0x90/openwips-ng
[submodule "pcap2xml"]
path = pcap2xml
url = https://github.com/securitytube/pcap2xml
[submodule "pixiewps"]
path = pixiewps
url = https://github.com/wiire/pixiewps
[submodule "probemon"]
path = probemon
url = https://github.com/jjb3tee3/probemon
[submodule "PwnSTAR"]
path = PwnSTAR
url = https://github.com/SilverFoxx/PwnSTAR
[submodule "py80211"]
path = py80211
url = https://github.com/0x90/py80211
[submodule "pykismetstats"]
path = pykismetstats
url = https://github.com/0x90/pykismetstats
[submodule "pylorcon2"]
path = pylorcon2
url = https://github.com/tom5760/pylorcon2
[submodule "python-radiotap"]
path = python-radiotap
url = https://github.com/bcopeland/python-radiotap
[submodule "pythonwifi"]
path = pythonwifi
url = http://git.tuxfamily.org/pythonwifi/pythonwifi.git
[submodule "PyWiWi"]
path = PyWiWi
url = https://github.com/6e726d/PyWiWi
[submodule "Radioparse"]
path = Radioparse
url = https://github.com/AlexanderSelzer/Radioparse
[submodule "reaver-wps"]
path = reaver-wps
url = https://github.com/gabrielrcouto/reaver-wps
[submodule "reaver-wps-fork-t6x"]
path = reaver-wps-fork-t6x
url = https://github.com/t6x/reaver-wps-fork-t6x
[submodule "Rspoof"]
path = Rspoof
url = https://github.com/zackiles/Rspoof
[submodule "rssi"]
path = rssi
url = https://github.com/AravinthPanch/rssi
[submodule "scapy-fakeap"]
path = scapy-fakeap
url = https://github.com/rpp0/scapy-fakeap
[submodule "scapy-rssi"]
path = scapy-rssi
url = https://github.com/azz2k/scapy-rssi
[submodule "scapy-survey"]
path = scapy-survey
url = https://github.com/tuomasb/scapy-survey
[submodule "Scapy-wireless-scanner"]
path = Scapy-wireless-scanner
url = https://github.com/rs91092/Scapy-wireless-scanner
[submodule "skybluetero"]
path = skybluetero
url = https://github.com/0x90/skybluetero
[submodule "snifflab"]
path = snifflab
url = https://github.com/andrewhilts/snifflab
[submodule "sniffMyPackets"]
path = sniffMyPackets
url = https://github.com/catalyst256/sniffMyPackets.git
[submodule "snoopy-ng"]
path = snoopy-ng
url = https://github.com/sensepost/snoopy-ng
[submodule "waidps"]
path = waidps
url = https://github.com/SYWorks/waidps
[submodule "wallofshame"]
path = wallofshame
url = https://github.com/0x0d/wallofshame
[submodule "WAPMap"]
path = WAPMap
url = https://github.com/hack1thu7ch/WAPMap
[submodule "warcarrier"]
path = warcarrier
url = https://github.com/0x90/warcarrier
[submodule "Watcher"]
path = Watcher
url = https://github.com/catalyst256/Watcher.git
[submodule "wifi"]
path = wifi
url = https://github.com/rockymeza/wifi
[submodule "wifi-contour"]
path = wifi-contour
url = https://github.com/bertabus/wifi-contour
[submodule "wifi-default-password"]
path = wifi-default-password
url = https://bitbucket.org/jpgerek/wifi-default-password
[submodule "wifi-dump-analysis"]
path = wifi-dump-analysis
url = https://github.com/abnarain/wifi-dump-analysis
[submodule "wifi_dump_parser-v3"]
path = wifi_dump_parser-v3
url = https://github.com/abnarain/wifi_dump_parser-v3
[submodule "wifi-harvester"]
path = wifi-harvester
url = https://github.com/SYWorks/wifi-harvester
[submodule "wifi-heatmap"]
path = wifi-heatmap
url = https://github.com/beaugunderson/wifi-heatmap
[submodule "wifi-linux"]
path = wifi-linux
url = https://github.com/dixel/wifi-linux
[submodule "wifi-locator"]
path = wifi-locator
url = https://github.com/clockfort/wifi-locator
[submodule "wifi-scan"]
path = wifi-scan
url = https://bitbucket.org/edkeeble/wifi-scan
[submodule "wifi_geolocation"]
path = wifi_geolocation
url = https://github.com/genekogan/wifi_geolocation
[submodule "wifi_localization"]
path = wifi_localization
url = https://github.com/utexas-air-fri/wifi_localization
[submodule "wifidec"]
path = wifidec
url = https://github.com/twitchyliquid64/wifidec
[submodule "wifijammer"]
path = wifijammer
url = https://github.com/DanMcInerney/wifijammer
[submodule "wifimonster"]
path = wifimonster
url = https://github.com/flankerhqd/wifimonster
[submodule "wifiphisher"]
path = wifiphisher
url = https://github.com/sophron/wifiphisher
[submodule "WifiScanAndMap"]
path = WifiScanAndMap
url = https://github.com/cyberpython/WifiScanAndMap
[submodule "wifitap"]
path = wifitap
url = https://github.com/viscousliquid/wifitap
[submodule "wifite"]
path = wifite
url = https://github.com/derv82/wifite
[submodule "wifite-mod-pixiewps"]
path = wifite-mod-pixiewps
url = https://github.com/aanarchyy/wifite-mod-pixiewps
[submodule "wifivis"]
path = wifivis
url = https://github.com/mitdbg/wifivis
[submodule "wifiwho"]
path = wifiwho
url = https://github.com/meeuw/wifiwho
[submodule "wifresti"]
path = wifresti
url = https://github.com/LionSec/wifresti
[submodule "wifuzz"]
path = wifuzz
url = https://github.com/0x90/wifuzz
[submodule "wifuzzit"]
path = wifuzzit
url = https://github.com/0xd012/wifuzzit
[submodule "wifi_decode"]
path = wifi_decode
url = https://github.com/cmpxchg8/wifi_decode
[submodule "wipi"]
path = wipi
url = https://github.com/dioh/wipi
[submodule "wireless_half-mini"]
path = wireless_half-mini
url = https://github.com/toleda/wireless_half-mini
[submodule "wireless-ids"]
path = wireless-ids
url = https://github.com/SYWorks/wireless-ids
[submodule "wireless-radar"]
path = wireless-radar
url = https://github.com/stef/wireless-radar
[submodule "wireless-regdb"]
path = wireless-regdb
url = https://github.com/0x90/wireless-regdb
[submodule "Wireless-Sniffer"]
path = Wireless-Sniffer
url = https://github.com/gauravpatwardhan/Wireless-Sniffer
[submodule "WirelessConfig"]
path = WirelessConfig
url = https://github.com/acidprime/WirelessConfig
[submodule "WLAN-Monitoring"]
path = WLAN-Monitoring
url = https://github.com/sajjanbh/WLAN-Monitoring
[submodule "wlan-pos"]
path = wlan-pos
url = https://github.com/0x90/wlan-pos
[submodule "wlan-stats"]
path = wlan-stats
url = https://github.com/hughobrien/wlan-stats
[submodule "wmd"]
path = wmd
url = https://github.com/securestate/wmd
[submodule "wmon"]
path = wmon
url = https://github.com/wmon/wmon
[submodule "wpa-bruteforcer"]
path = wpa-bruteforcer
url = https://github.com/SYWorks/wpa-bruteforcer
[submodule "WPA2-HalfHandshake-Crack"]
path = WPA2-HalfHandshake-Crack
url = https://github.com/dxa4481/WPA2-HalfHandshake-Crack
[submodule "wperf"]
path = wperf
url = https://github.com/anyfi/wperf
[submodule "wps"]
path = wps
url = https://github.com/devttys0/wps
[submodule "wps-scripts"]
path = wps-scripts
url = https://github.com/0x90/wps-scripts
[submodule "wpscrack"]
path = wpscrack
url = https://github.com/ml31415/wpscrack
[submodule "wpsoffline"]
path = wpsoffline
url = https://bitbucket.org/dudux/wpsoffline
[submodule "wraith"]
path = wraith
url = https://github.com/wraith-wireless/wraith
[submodule "wspy"]
path = wspy
url = https://github.com/Nan-Do/wspy
[submodule "wtf"]
path = wtf
url = https://github.com/cozybit/wtf
[submodule "RTL8188-hostapd"]
path = RTL8188-hostapd
url = https://github.com/jenssegers/RTL8188-hostapd
[submodule "monit-hostapd"]
path = monit-hostapd
url = https://github.com/fabiocannizzo/monit-hostapd
[submodule "DebAPoint"]
path = DebAPoint
url = https://github.com/joseccnet/DebAPoint
[submodule "hostapd-karma"]
path = hostapd-karma
url = https://github.com/xtr4nge/hostapd-karma
[submodule "wifisoftap"]
path = wifisoftap
url = https://github.com/coolshou/wifisoftap
[submodule "hostapd-wpe-openwrt"]
path = hostapd-wpe-openwrt
url = https://github.com/TarlogicSecurity/hostapd-wpe-openwrt
[submodule "hostapd-ap6210"]
path = hostapd-ap6210
url = https://github.com/Bananian/hostapd-ap6210
[submodule "RougeDetection"]
path = RougeDetection
url = https://github.com/bagsofnarcissism/RougeDetection
[submodule "apbleed"]
path = apbleed
url = https://github.com/vanhoefm/apbleed
[submodule "IndoorPositionr"]
path = IndoorPositionr
url = https://github.com/otherview/IndoorPositionr
[submodule "probecap"]
path = probecap
url = https://github.com/hydrogen18/probecap
[submodule "airown"]
path = airown
url = https://github.com/sh0/airown
[submodule "packetvector"]
path = packetvector
url = https://github.com/derosier/packetvector
[submodule "ADSLPT-WPA"]
path = ADSLPT-WPA
url = https://github.com/AndrewGomes/ADSLPT-WPA
[submodule "airodump-logger"]
path = airodump-logger
url = https://github.com/atiti/airodump-logger
[submodule "txpower_RTL8187"]
path = txpower_RTL8187
url = https://github.com/Demontager/txpower
[submodule "pythonAir"]
path = pythonAir
url = https://github.com/Slickness/pythonAir
[submodule "hostapd-rtl871xdrv"]
path = hostapd-rtl871xdrv
url = https://github.com/pritambaral/hostapd-rtl871xdrv
[submodule "hostapd-rtl"]
path = hostapd-rtl
url = https://github.com/jekader/hostapd-rtl
[submodule "WPA_DECRYPTION_MPI"]
path = WPA_DECRYPTION_MPI
url = https://github.com/shagrath89m/WPA_DECRYPTION_MPI
[submodule "Auto-Airodump-NG"]
path = Auto-Airodump-NG
url = https://github.com/JackAHall/Auto-Airodump-NG
[submodule "reaver-webui"]
path = reaver-webui
url = https://github.com/fopina/reaver-webui
[submodule "AtEar"]
path = AtEar
url = https://github.com/NORMA-Inc/AtEar
[submodule "wpa-autopwn"]
path = wpa-autopwn
url = https://github.com/vnik5287/wpa-autopwn
[submodule "datasamalen"]
path = datasamalen
url = https://github.com/4ZM/datasamalen
[submodule "scapybase"]
path = scapybase
url = https://github.com/jahrome/scapybase
[submodule "mitm_rogue_wifi_ap"]
path = mitm_rogue_wifi_ap
url = https://github.com/wshen0123/mitm_rogue_wifi_ap
[submodule "openCAPWAP"]
path = openCAPWAP
url = https://github.com/vollero/openCAPWAP
[submodule "RT73-USB-Wireless-"]
path = RT73-USB-Wireless-
url = https://github.com/Marchrius/RT73-USB-Wireless-
[submodule "atheros-patches"]
path = atheros-patches
url = https://github.com/zeplios/atheros-patches
[submodule "ath-info"]
path = ath-info
url = https://github.com/mickflemm/ath-info
[submodule "fixsum"]
path = fixsum
url = https://github.com/joycechu/fixsum
[submodule "atheros_library"]
path = atheros_library
url = https://github.com/Noltari/atheros_library
[submodule "py_DD_WRT_Remote_Mac_Adder"]
path = py_DD_WRT_Remote_Mac_Adder
url = https://github.com/mzhaase/py_DD_WRT_Remote_Mac_Adder
[submodule "ap51flash"]
path = ap51flash
url = https://github.com/cl4u2/ap51flash
[submodule "ath9k-htc-firmware-blob"]
path = ath9k-htc-firmware-blob
url = https://github.com/olerem/ath9k-htc-firmware-blob
[submodule "modwifi-tools"]
path = modwifi-tools
url = https://github.com/vanhoefm/modwifi-tools
[submodule "VX"]
path = VX
url = https://github.com/hellais/VX
[submodule "PiWAT2"]
path = PiWAT2
url = https://github.com/Crypt0s/PiWAT
[submodule "Burgess"]
path = Burgess
url = https://github.com/Jtfinlay/Burgess
[submodule "aircrack-bws"]
path = aircrack-bws
url = https://github.com/jesseDtucker/aircrack-bws
[submodule "mt76"]
path = mt76
url = https://github.com/openwrt/mt76
[submodule "mt7601u"]
path = mt7601u
url = https://github.com/kuba-moo/mt7601u
[submodule "mwlwifi"]
path = mwlwifi
url = https://github.com/kaloz/mwlwifi
[submodule "wifi_beacons"]
path = wifi_beacons
url = https://github.com/abnarain/wifi_beacons
[submodule "oculus"]
path = oculus
url = https://github.com/abnarain/oculus
[submodule "covert_channel"]
path = covert_channel
url = https://github.com/abnarain/covert_channel
[submodule "wifi_dump-tmpfs"]
path = wifi_dump-tmpfs
url = https://github.com/abnarain/wifi_dump-tmpfs
[submodule "wireless-info"]
path = wireless-info
url = https://github.com/wlanslovenija/wireless-info
[submodule "make-a-new-mac80211-to-wirelessAP"]
path = make-a-new-mac80211-to-wirelessAP
url = https://github.com/fhector/make-a-new-mac80211-to-wirelessAP
[submodule "setbssid"]
path = setbssid
url = https://github.com/sheenhx/setbssid
[submodule "iitis-generator"]
path = iitis-generator
url = https://github.com/iitis/iitis-generator
[submodule "CloudMAC-Misc"]
path = CloudMAC-Misc
url = https://github.com/Kanel/CloudMAC-Misc
[submodule "wi-finder"]
path = wi-finder
url = https://github.com/romebop/wi-finder
[submodule "mr-nosy"]
path = mr-nosy
url = https://github.com/jgumbley/mr-nosy
[submodule "wifitracker"]
path = wifitracker
url = https://github.com/DHNishi/wifitracker
[submodule "airfree-wt"]
path = airfree-wt
url = https://github.com/rednaks/airfree-wt
[submodule "sigmon"]
path = sigmon
url = https://github.com/terbo/sigmon
[submodule "WiFi-Rifle"]
path = WiFi-Rifle
url = https://github.com/sensepost/WiFi-Rifle
[submodule "terUNIFI"]
path = terUNIFI
url = https://github.com/termax/terUNIFI
[submodule "emc-contest-data-visualization"]
path = emc-contest-data-visualization
url = https://github.com/frankxu2004/emc-contest-data-visualization
[submodule "lianwifi"]
path = lianwifi
url = https://github.com/5alt/lianwifi
[submodule "libairpcap-nl"]
path = libairpcap-nl
url = https://github.com/hbock/libairpcap-nl
[submodule "wireless-rool-nodejs"]
path = wireless-rool-nodejs
url = https://github.com/bakerface/wireless-tools
[submodule "airtraf"]
path = airtraf
url = https://github.com/saintkepha/airtraf
[submodule "cac"]
path = cac
url = https://github.com/paulpatras/cac
[submodule "madwifi-be"]
path = madwifi-be
url = https://github.com/paulpatras/madwifi-be
[submodule "Blackbox"]
path = Blackbox
url = https://github.com/twitchyliquid64/Blackbox
[submodule "list-aps"]
path = list-aps
url = https://github.com/jiixyj/list-aps
[submodule "liber80211"]
path = liber80211
url = https://github.com/brycethomas/liber80211
[submodule "80211ping"]
path = 80211ping
url = https://github.com/tillwo/80211ping
[submodule "wifi-beeper"]
path = wifi-beeper
url = https://github.com/tillwo/wifi-beeper
[submodule "gopacket-80211"]
path = gopacket-80211
url = https://github.com/dutchcoders/gopacket-80211
[submodule "80211scrambler"]
path = 80211scrambler
url = https://github.com/travisgoodspeed/80211scrambler
[submodule "80211mgmtDoS"]
path = 80211mgmtDoS
url = https://github.com/phildom/80211mgmtDoS
[submodule "brcm80211-trace-cmd"]
path = brcm80211-trace-cmd
url = https://github.com/arend/brcm80211-trace-cmd
[submodule "80211_raw"]
path = 80211_raw
url = https://github.com/MinimumLaw/80211_raw
[submodule "80211p_raw"]
path = 80211p_raw
url = https://github.com/allanmatthew/80211p_raw
[submodule "pcap80211analyzer"]
path = pcap80211analyzer
url = https://github.com/enukane/pcap80211analyzer
[submodule "agentapd"]
path = agentapd
url = https://github.com/mengning/agentapd
[submodule "cloudap"]
path = cloudap
url = https://github.com/mengning/cloudap
[submodule "wifidog-gateway"]
path = wifidog-gateway
url = https://github.com/wifidog/wifidog-gateway
[submodule "remoteapd"]
path = remoteapd
url = https://github.com/mengning/remoteapd
[submodule "frame-utils.js"]
path = frame-utils.js
url = https://github.com/rhodey/frame-utils.js
[submodule "ciscowebauth"]
path = ciscowebauth
url = https://github.com/darizotas/ciscowebauth
[submodule "ath10k-mesh"]
path = ath10k-mesh
url = https://github.com/bcopeland/ath10k-mesh
[submodule "android_packetspammer"]
path = android_packetspammer
url = https://github.com/bcopeland/android_packetspammer
[submodule "android_iw"]
path = android_iw
url = https://github.com/bcopeland/android_iw
[submodule "radioparse"]
path = radioparse
url = https://github.com/AlexanderSelzer/radioparse
[submodule "packet-injector"]
path = packet-injector
url = https://github.com/juzna/packet-injector
[submodule "fRobot"]
path = fRobot
url = https://github.com/sail308/fRobot
[submodule "rogueDetect"]
path = rogueDetect
url = https://github.com/olanb7/rogueDetect
[submodule "naive_project"]
path = naive_project
url = https://github.com/veenfang/naive_project
[submodule "PCS"]
path = PCS
url = https://github.com/gvnn3/PCS
[submodule "packetparser"]
path = packetparser
url = https://github.com/flupzor/packetparser
[submodule "wifite2"]
path = wifite2
url = https://github.com/derv82/wifite2
[submodule "wpacrack"]
path = wpacrack
url = https://github.com/derv82/wpacrack
[submodule "Hostapd-with-WebID"]
path = Hostapd-with-WebID
url = https://github.com/yunus/Hostapd-with-WebID
[submodule "Wps-Ultimate-Cracker"]
path = Wps-Ultimate-Cracker
url = https://github.com/younextvictim/Wps-Ultimate-Cracker
[submodule "HT-WPS-Breaker"]
path = HT-WPS-Breaker
url = https://github.com/SilentGhostX/HT-WPS-Breaker
[submodule "android_reaver-wps"]
path = android_reaver-wps
url = https://github.com/kriswebdev/android_reaver-wps
[submodule "reaver-ui"]
path = reaver-ui
url = https://github.com/deoxxa/reaver-ui
[submodule "greaver"]
path = greaver
url = https://github.com/sigginet/greaver
[submodule "phpreaver"]
path = phpreaver
url = https://github.com/phpreaver/phpreaver
[submodule "AutoPixieWps"]
path = AutoPixieWps
url = https://github.com/nxxxu/AutoPixieWps
[submodule "penetrator-wps"]
path = penetrator-wps
url = https://github.com/xXx-stalin-666-money-xXx/penetrator-wps
[submodule "pixiewps-android"]
path = pixiewps-android
url = https://github.com/ru-faraon/pixiewps-android
[submodule "pyxiewps"]
path = pyxiewps
url = https://github.com/jgilhutton/pyxiewps
[submodule "captiveportal"]
path = captiveportal
url = https://github.com/bendemott/captiveportal
[submodule "AirLibre"]
path = AirLibre
url = https://github.com/nathanshimp/AirLibre
[submodule "Airvengers"]
path = Airvengers
url = https://github.com/hiteshchoudhary/Airvengers
[submodule "fake-ap3.py"]
path = fake-ap3.py
url = https://github.com/awhitehatter/fake-ap3.py
[submodule "Wifi_Trojans"]
path = Wifi_Trojans
url = https://github.com/ahhh/Wifi_Trojans
[submodule "wireless_RSSI"]
path = wireless_RSSI
url = https://github.com/agnostino/wireless_RSSI
[submodule "rogueap"]
path = rogueap
url = https://github.com/bram-glasswall/rogueap
[submodule "dockerfile-hostapd"]
path = dockerfile-hostapd
url = https://github.com/dweinstein/dockerfile-hostapd
[submodule "cupid"]
path = cupid
url = https://github.com/lgrangeia/cupid
[submodule "hostapd-wpe-extended"]
path = hostapd-wpe-extended
url = https://github.com/NerdyProjects/hostapd-wpe-extended
[submodule "hostapd-acs"]
path = hostapd-acs
url = https://github.com/swaminathanvasanth/hostapd-acs
[submodule "connme"]
path = connme
url = https://github.com/kurokid/connme
[submodule "wifi-ap"]
path = wifi-ap
url = https://github.com/foosel/wifi-ap
[submodule "zarp"]
path = zarp
url = https://github.com/hatRiot/zarp
[submodule "EvilAP_Defender"]
path = EvilAP_Defender
url = https://github.com/moha99sa/EvilAP_Defender
[submodule "BitcoinWifi"]
path = BitcoinWifi
url = https://github.com/ragmondo/BitcoinWifi
[submodule "milicone"]
path = milicone
url = https://github.com/jazoza/milicone
[submodule "gtaiad"]
path = gtaiad
url = https://github.com/jedivind/gtaiad
[submodule "como"]
path = como
url = https://github.com/JackieXie168/como
[submodule "madwifi-hopping"]
path = madwifi-hopping
url = https://github.com/paulpatras/madwifi-hopping
[submodule "openwifimap-api"]
path = openwifimap-api
url = https://github.com/freifunk/openwifimap-api
[submodule "PyScapy"]
path = PyScapy
url = https://github.com/ogreworld/PyScapy
[submodule "aircrack-ng-iphone"]
path = aircrack-ng-iphone
url = https://github.com/jedivind/aircrack-ng-iphone
[submodule "AIRBASE-NG-SSLSTRIP-AIRSTRIP"]
path = AIRBASE-NG-SSLSTRIP-AIRSTRIP
url = https://github.com/hacker404/AIRBASE-NG-SSLSTRIP-AIRSTRIP-
[submodule "killosx"]
path = killosx
url = https://github.com/d4rkcat/killosx
[submodule "HandShaker"]
path = HandShaker
url = https://github.com/d4rkcat/HandShaker
[submodule "apflood"]
path = apflood
url = https://github.com/d4rkcat/apflood
[submodule "MulitFi"]
path = MulitFi
url = https://github.com/shpala/MulitFi
[submodule "mitm-helper-wifi"]
path = mitm-helper-wifi
url = https://github.com/jakev/mitm-helper-wifi
[submodule "hotspotd"]
path = hotspotd
url = https://github.com/0x90/hotspotd
[submodule "wifiScanMap"]
path = wifiScanMap
url = https://github.com/mehdilauters/wifiScanMap
[submodule "marfil"]
path = marfil
url = https://github.com/pupi1985/marfil
[submodule "sly-fi"]
path = sly-fi
url = https://github.com/sinistermachine/sly-fi
[submodule "wiwo"]
path = wiwo
url = https://github.com/CoreSecurity/wiwo
[submodule "curscout"]
path = curscout
url = https://github.com/bennett-elder/curscout
[submodule "smoothie"]
path = smoothie
url = https://github.com/XayOn/smoothie
[submodule "pyrcrack"]
path = pyrcrack
url = https://github.com/XayOn/pyrcrack
[submodule "wireless"]
path = wireless
url = https://github.com/joshvillbrandt/wireless
[submodule "osx-wifi-scan"]
path = osx-wifi-scan
url = https://github.com/kornysietsma/osx-wifi-scan
[submodule "3WiFi"]
path = 3WiFi
url = https://github.com/binarymaster/3WiFi
[submodule "WiFi-Pumpkin"]
path = WiFi-Pumpkin
url = https://github.com/P0cL4bs/WiFi-Pumpkin.git
[submodule "airgeddon"]
path = airgeddon
url = https://github.com/v1s1t0r1sh3r3/airgeddon
[submodule "call-for-wpa3"]
path = call-for-wpa3
url = https://github.com/d33tah/call-for-wpa3
[submodule "wi-door"]
path = wi-door
url = https://github.com/Vivek-Ramachandran/wi-door
[submodule "uploadwpa"]
path = uploadwpa
url = https://github.com/Alf-Alfa/uploadwpa
[submodule "monmob"]
path = monmob
url = https://github.com/tuter/monmob
[submodule "moepdefend"]
path = moepdefend
url = https://github.com/moepinet/moepdefend
[submodule "kismet-fork"]
path = kismet-fork
url = https://github.com/ymah/kismet-fork
[submodule "hijack"]
path = hijack
url = https://github.com/0x0d/hijack
[submodule "airodump_mod"]
path = airodump_mod
url = https://github.com/maroviher/airodump_mod
[submodule "linssid"]
path = linssid
url = https://github.com/luigino/linssid
[submodule "bully"]
path = bully
url = https://github.com/aanarchyy/bully
[submodule "crda-ct"]
path = crda-ct
url = https://github.com/0x90/crda-ct
[submodule "iwraw"]
path = iwraw
url = https://github.com/erstrom/iwraw
[submodule "mitm-rogue-WiFi-AP"]
path = mitm-rogue-WiFi-AP
url = https://github.com/wshen0123/mitm-rogue-WiFi-AP
[submodule "mupe"]
path = mupe
url = https://github.com/DE-IBH/mupe
[submodule "ap-notify"]
path = ap-notify
url = https://github.com/doctaweeks/ap-notify
[submodule "haircrack"]
path = haircrack
url = https://github.com/AdamKnube/haircrack
[submodule "create_ap"]
path = create_ap
url = https://github.com/oblique/create_ap
[submodule "win32wifi"]
path = win32wifi
url = https://github.com/almondg/win32wifi
[submodule "captiv8"]
path = captiv8
url = https://github.com/wraith-wireless/captiv8
[submodule "itamae"]
path = itamae
url = https://github.com/wraith-wireless/itamae
[submodule "aggr-inject"]
path = aggr-inject
url = https://github.com/rpp0/aggr-inject
[submodule "peapwn"]
path = peapwn
url = https://github.com/rpp0/peapwn
[submodule "kismet"]
path = kismet
url = https://github.com/kismetwireless/kismet
[submodule "kismetclient"]
path = kismetclient
url = https://github.com/PaulMcMillan/kismetclient
[submodule "mana"]
path = mana
url = https://github.com/sensepost/mana
[submodule "WHAT-PRO"]
path = WHAT-PRO
url = https://github.com/smoz1986/WHAT-PRO
[submodule "TCP-SeqNum"]