forked from philsmd/vap11g
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vap11g.py
executable file
·1169 lines (890 loc) · 35.2 KB
/
vap11g.py
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
#!/usr/bin/python
# LICENSE: GPLv2
# author: philsmd
# date: nov 2012
#
# This python script is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# vap11g.py is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this source files. If not, see
# <http://www.gnu.org/licenses/>.
#
# NO reverse engineering done or any kind of reverse engineering
# of the original software intended
# This script just "replays" the messages that the original software
# uses to communicate with the device
# The capture of the communication can be done via any OPEN SOURCE
# tool AND (as shown when this script was already in a stable state)
# the message exchange was (anyway) already available/published on
# some websites and wikis AND therefore can be considered as knowledge
# in the public domain
# If you use this script/software you can not claim any responsibility
# for ANY damage, malfunction and other problems to the author
# USE it at your OWN RISK and use it only iff you really want/need and
# trust the author
#
# Motivation: ANYONE (also me) should be allowed to use the devices he
# bought (for private use and maybe others too) w/o the necessity to buy
# over expansive operating systems (OS) or other additional priority
# software
# FREE the world!!! everyone should be FREE to use his/her devices
#
# use git(hub) to post pull request, to submit patches, to discuss issues
# PEACE!
#
# This software should be run on any *nix system with python installed,
# if you want to render it cross-platform, submit patches for other OSes
import select
import string
import fcntl
import struct
import getpass
import hashlib
import time
import os
from os.path import exists
from optparse import OptionParser
from socket import socket, SOCK_RAW, htons
from ctypes import *
##################################################################
# SETTINGS
debug = False
verbose = False
defaultInterface = "eth0" # for mac it should be "en0"
defaultInterfaceMAC = "en0"
mac_address_matching = True
##################################################################
# CONSTANTS / GLOBALS
DEFAULT_TIMEOUT = 3
DEFAULT_BUF_SIZE = 4096
ETH_ALL = 3
ETH_BROADCAST = "ff:ff:ff:ff:ff:ff"
ETH_TYPE = "\x88\x88"
MAC_ADDRESS_MATCH_START = "\x00\x17\x13"
SECURITY_OPTIONS = ("Disable", "WEP", "WPA-PSK", "WPA2-PSK")
HEX_MAX_LINE_SYMBOLS = 16
HEX_DELIMITER = ":"
HEX_MIN_NUMBER_LEN = 4
HEX_MIN_NUMBER_PADDING = 8
HEX_DEFAULT_HEX_CHAR = "."
HEX_BLOCK_SIZE = 3
HEX_SMALLEST_CHAR = 32
HEX_LARGEST_CHAR = 127
# WEP passphrase to keys conversion uses the defacto standard generation
WEP_OPTIONS = ("WEP 64bits using passphrase", "WEP 128bits using passphrase", "WEP 64bits keys",
"WEP 128bits key")
HIDDEN_SSID = "[HiddenSSID]"
WIRELESS_NETWORK_MODE = {"":"802.11 (2Mbps)", "A":"802.11a (54Mbps)",
"B":"802.11b (11Mbps)", "G":"802.11g (54Mbps)", "N":"802.11n (150Mbps)",
"AC":"802.11ac (866.7Mbps)", "AD":"802.11ad (7000Mbps)"} # IEEE 802.11x (of course NOT all avail for VAP11g-abg)
# DEVICE SPECIFIC COMMANDS:
COMMAND_DEVICE_STATUS = "\x00\x01"
COMMAND_CONFIG = "\x01\x01"
COMMAND_REQUEST_RESPONSE = "\x02\x01"
DATA_END = ":\x0d\x0a"
DATA_REQUEST_CONFIG = 9100
DATA_REQUEST_SCAN = 9107
DATA_REQUEST_RESET = 9002
# BPF SPECIFIC CONSTANTS
BPF_LD = 0x00
BPF_H = 0x08
BPF_ABS = 0x20
BPF_JMP = 0x05
BPF_JEQ = 0x10
BPF_K = 0x00
BPF_RET = 0x06
ETHERTYPE_ETHERCAT = 0x8888
OSX_BPF_DEVICES="sysctl debug.bpf_maxdevices"
OSX_NETWORKSETUP_LIST="networksetup -listallhardwareports"
OSX_NETWORKSETUP_GET_MAC="networksetup -getmacaddress"
OSX_INTERFACE_DEV_QUERY_STR="Device:"
OSX_INTERFACE_ADDRESS_QUERY_STR="Ethernet Address:"
##################################################################
def eth_aton (mac):
addr = ""
temp = string.split (mac, ':')
mac = string.join (temp, '')
for i in range (0, len (mac), 2):
addr = "" . join ([addr, struct.pack ('B', int (mac[i:i+2], 16))], )
return addr
def conv_octet (octet):
res = ""
factor = 16
for i in range (0, 2): # max ff = 15*16+15
div = int (octet / factor)
res += "%x" % div
octet -= div * 16
factor /= 16
return res
def eth_rev_aton (hexstr, lang = 6):
res = ""
for i in range (0, lang):
if res:
res += ':'
res += conv_octet (ord (hexstr[i]))
return res
def hexdump_add_printable_chars (res, spaces = 0):
res += " "
k = len (res) - 1
j = k - HEX_BLOCK_SIZE * HEX_MAX_LINE_SYMBOLS
ord_num = 0
k -= HEX_BLOCK_SIZE * spaces
while j < k:
if len (str (res[j] + res[j + 1])) == 2:
ord_num = int (res[j]+res[j+1], 16)
if ord_num > HEX_SMALLEST_CHAR and ord_num < HEX_LARGEST_CHAR:
res += chr (ord_num)
else:
res += HEX_DEFAULT_HEX_CHAR
j += 3
res += "\n"
return res
def hexdump (string):
res = ""
i = 0
str_len = len (string)
number_display = 0
while i < str_len:
if i % HEX_MAX_LINE_SYMBOLS == 0:
if i != 0:
res = hexdump_add_printable_chars (res)
len_pos = len (str (number_display))
len_leading_zeros = HEX_MIN_NUMBER_LEN - len_pos
len_padding = HEX_MIN_NUMBER_PADDING - len_leading_zeros - len_pos
while len_padding > 0:
res += " "
len_padding -= 1
while len_leading_zeros > 0:
res += "0"
len_leading_zeros -= 1
res += str (number_display) + HEX_DELIMITER
number_display += HEX_MAX_LINE_SYMBOLS
res += " %02x" % ord (string[i])
i += 1
added_spaces = 0
while str_len % HEX_MAX_LINE_SYMBOLS != 0:
res += " "
added_spaces += 1
str_len += 1
res = hexdump_add_printable_chars (res, added_spaces)
return res
def OSXIsValidInterface (ifname):
list = ""
try:
list = os.popen (OSX_NETWORKSETUP_LIST).read ()
except:
print "[-] ERROR: an error was encountered while querying all hardware ports"
exit (1)
if not list:
print "[-] ERROR: hardware port list is empty, can't proceed"
exit (1)
found = False
lines = list.split ("\n")
for line in lines:
if line.startswith (OSX_INTERFACE_DEV_QUERY_STR + " " + ifname):
found = True
break
if not found:
print "[-] ERROR: interface name was not found in hardware ports list"
exit (1)
# always be paranoia
if ifname.find (';') != -1 or \
ifname.find ('|') != -1 or \
ifname.find (',') != -1 or \
ifname.find ('$') != -1 or \
ifname.find (':') != -1:
print "[-] ERROR: invalid interface name detected. EXIT"
exit (1)
def getHwAddr (s, af_packet_missing, ifname):
global debug
if af_packet_missing:
# security check (always be paranoia !!! better safe than sorry!)
OSXIsValidInterface (ifname)
try:
info = os.popen (OSX_NETWORKSETUP_GET_MAC + " " + ifname).read ()
except:
print "[-] ERROR: could not get the hardware MAC address of interface '%s'" % ifname
exit (1)
if not info:
print "[-] ERROR: could not find the specified interface in the networksetup list"
exit (1)
if info.find (OSX_INTERFACE_DEV_QUERY_STR + " " + ifname) == -1:
print "[-] ERROR: output of the networksetup list does not contain the interface '%s'" %ifname
exit (1)
address_pos = info.find (OSX_INTERFACE_ADDRESS_QUERY_STR + " ")
if address_pos == -1:
print "[-] ERROR: output of the networksetup list does not contain the valid 'Ethernet Address'"
exit (1)
query_str_len = len (OSX_INTERFACE_ADDRESS_QUERY_STR)
substr_start = address_pos + query_str_len + 1
substr_stop = substr_start + 17
mymac = info[substr_start:substr_stop]
else:
info = fcntl.ioctl (s.fileno (), 0x8927, struct.pack ("256s", ifname[:15]))
mymac = '' . join (["%02x:" % ord (char) for char in info[18:24]])[:-1]
if debug:
print "[i] Your local ethernet MAC address is %s for interface %s " % (mymac, ifname)
return mymac
def buildRequest (src, dst, c = '', p = ''):
global debug
dst_addr = eth_aton (dst) # format: "01:02:03:04:05:06"
src_addr = eth_aton (src) # idem
ethertype = ETH_TYPE
if len (p) > 0:
p = "\x00\x00\x00\x00\x00" + chr (len (p)) + '\x00' + p # all 00 since we have no packet splitting (amount = 0)
p = c + p
if len (p) < 50:
p += ("\x00" * (50 - len (p)))
packet = dst_addr + src_addr + ethertype + p
if verbose:
print "[i] The data:"
print hexdump (str (packet))
return str (packet)
def send (s, af_packet_missing, msg):
if not af_packet_missing:
s.send (msg)
else:
os.write (s.fileno (), msg)
def read (s, af_packet_missing, source, target, buf_size, enableExit = True):
global debug, mac_address_matching
target = eth_aton (target)
source = eth_aton (source)
broadcast = eth_aton (ETH_BROADCAST)
while 1:
msg = ""
dst = ""
if not af_packet_missing:
ready = select.select ([s], [], [], DEFAULT_TIMEOUT)
if ready[0]:
buf = s.recvfrom (buf_size)
if len (buf) != 2:
print "[-] Error: the answer does not seem to be formatted correctly"
exit (1)
msg = buf[0]
address = buf[1]
if len (address) < 1:
print "[-] Error: the destination address could not be extracted from the response"
exit (1)
dst = address[-1]
# if timeout is not okay
elif enableExit:
print "[-] Error: socket timed out. EXIT"
exit (1)
else:
return None
# otherwise: use BPF device
else:
buf = ""
try:
buf = os.read (s.fileno (), buf_size)
except:
print "[-] ERROR encountered while reading from BPF device"
exit (1)
if not buf:
if not enableExit:
return None
msg = buf[18:]
#src = buf[18:24]
dst = buf[24:30]
# eth_type = buf[30:32]
if not len (dst):
continue
if dst == source:
continue
if target != broadcast and dst != target:
continue
if mac_address_matching:
if dst[0:3] != MAC_ADDRESS_MATCH_START:
if debug:
print "[i] Warning: skipping device with MAC address %s not matching expected mac %s" % \
(eth_rev_aton (dst), eth_rev_aton (MAC_ADDRESS_MATCH_START, 3))
continue
ret = (msg, eth_rev_aton (dst))
return ret
def parseNetworkStr (string):
res = {}
if len (string) > 0:
lines = string.split ('\n')
for l in lines:
try:
spaceIndex = l.index ('\x0c')
details = l[spaceIndex + 1:]
name = l[0:spaceIndex]
except:
name = ""
details = l
# parse details: mac, channel, speed (802.1 'G', ...), security, signal
detailsSplit = details.split (',')
macAddress = detailsSplit[0]
macAddress = "" . join (macAddress[i:i+2] + ("" if i > len (macAddress) / 2 + 2 else ":")
for i in xrange (0, len (macAddress), 2))
res[macAddress] = {"name":name, "channel":detailsSplit[1], "speed":detailsSplit[2],
"security":detailsSplit[3], "signal":detailsSplit[4], "psk":""}
return res
def parseCurrentConfig (string):
res = {}
bssid = ""
resValues = {}
lines = string.split ('\n')
for l in lines:
if len (l) > 0:
search = "7000 SSID:"
if search in l:
resValues["name"] = l[l.index (search) + len (search):]
else:
search = "7002 CHANNEL:"
if search in l:
resValues["channel"] = l[l.index (search) + len (search):]
else:
search = "7003 SECMODE:"
if search in l:
resValues["security"] = l[l.index (search) + len (search):]
else:
search = "7019 PSKKEY:"
if search in l:
resValues["psk"] = l[l.index (search) + len (search):]
else:
search = "BSS ID = "
if search in l:
bssid = l[l.index (search) + len (search):]
res[bssid] = resValues
return res
def printNetworks (netList):
count = 1
for (mac, details) in netList.items ():
name = details["name"]
if not name:
name = HIDDEN_SSID
try:
sec = int (details["security"])
if not (sec >= 0 and sec < len (SECURITY_OPTIONS)):
sec = 3
except:
sec = 3
try:
speed = WIRELESS_NETWORK_MODE[details["speed"]]
except:
speed = WIRELESS_NETWORK_MODE["G"]
print str (count)+") ESSID: " + name + ", channel: " + details["channel"] + ", signal: " + \
details["signal"] + "%, security: " + SECURITY_OPTIONS[sec] + ", speed: " + speed
count += 1
# ALWAYS print the following additional item
print str (count) + ") freely add new network configuration"
def getSecmodeSelection ():
print "[i] Available security modes:"
count = 1
for name in SECURITY_OPTIONS:
print str (count) + ") " + name
count += 1
num = 0
while num < 1 or num > len (SECURITY_OPTIONS):
try:
num = int (raw_input ("[i] Please choose one of the options above: "))
except KeyboardInterrupt:
print "\n"
exit (1)
except:
num = 0
return num - 1
def inputWepKeys (strong): # means we use 26 hexadecimal characters
print "[i] Input the keys using the hexadecimal character set [0-9A-Z] (no colons): "
if strong:
key = ""
while len (key) != 26 or not all (c in string.hexdigits for c in key):
key = raw_input ("[i] Please insert the 128bit WEP key (26 hex characters): ")
key = key.upper ()
key = (key, key, key, key)
else:
key = ()
count = 1
while count <= 4:
try:
tmpkey = raw_input ("[i] Please insert key%d (10 hex characters): " % count)
if len (tmpkey) == 10 and all (c in string.hexdigits for c in tmpkey):
key = key + (tmpkey.upper (), )
count += 1
except KeyboardInterrupt:
print "\n"
exit (1)
except: # catch all other
count = count
return key
def passphrase2WepKeys (strong, passphrase = ""): # strong means 128bit
res = ("", "", "", "")
while len (passphrase) < 1 or len (passphrase) > 32:
passphrase = getpass.getpass ("[i] Please input the passphrase (1-32 characters, will" + \
" NOT be displayed): ")
length = len (passphrase)
key = ""
if strong: # 128 bit using MD5
j = 0
buf = ""
for i in range (0, 64):
if j >= length:
j = 0
buf += passphrase[j]
j += 1
m = hashlib.md5 ()
m.update (buf)
key = m.hexdigest ()[:26]
key = key.upper ()
res = (key, key, key, key)
else: # 64 bit
i = 0
val = 0
while i < length:
shift = i & 0x3
val ^= ord (passphrase[i]) << (shift * 8)
i += 1
for i in range (0, 20):
val *= 0x343fd
val += 0x269ec3
key += "%0.2x" % ((val >> 16) % 256)
if key and len (key) == 40:
key = key.upper ()
res = (key[:10], key[10:20], key[20:30], key[30:40])
return res
def getSocketFromBPFDevice ():
socket = None
# get maximum number of BPF devices
bpf_num_str = os.popen (OSX_BPF_DEVICES).read ()
if not "debug.bpf_maxdevices:" in bpf_num_str:
print "[-] ERROR: failed to get the amount of bpf devices"
exit (1)
else:
bpf_num_str = bpf_num_str[22:]
bpf_num = int (bpf_num_str)
# try to open (binary read and write) the /dev/bpfx device
for i in range (bpf_num):
bpf_device = "/dev/bpf%d" % i
if not exists (bpf_device):
print "[-] ERROR: no suitable /dev/bpfx device found, last one tried: %s" % bpf_device
exit (1)
try:
socket = open (bpf_device, "rb+")
break
except IOError as ioe:
if ioe.errno == 13:
print "[-] ERROR: Permission denied"
exit (1)
if ioe.errno == 16: # resource busy -> try next one
pass
if socket == None:
print "[-] ERROR: could not open any /dev/bpfx devices. EXIT"
exit (1)
return socket
# ctype classes for BPF program
class bpf_insn (Structure):
_fields_ = [("code", c_ushort), ("jt", c_ubyte), ("jf", c_ubyte), ("k", c_int)]
class bpf_program (Structure):
_fields_ = [(".bf_len", c_uint), (".bf_insns", POINTER (bpf_insn))]
def getBPFProgram ():
num_insn = 4
# insn 1
stmt1 = bpf_insn ()
stmt1.code = BPF_LD + BPF_H + BPF_ABS
stmt1.jt = 0
stmt1.jf = 0
stmt1.k = 12
# insn 2
jump1 = bpf_insn ()
jump1.code = BPF_JMP + BPF_JEQ + BPF_K
jump1.jt = 0
jump1.jf = 1
jump1.k = ETHERTYPE_ETHERCAT
jump1.k = 0
# insn 3
stmt2 = bpf_insn ()
stmt2.code = BPF_RET + BPF_K
stmt2.jt = 0
stmt2.jf = 0
stmt2.k = -1
# insn 4
stmt3 = bpf_insn ()
stmt3.code = BPF_RET + BPF_K
stmt3.jt = 0
stmt3.jf = 0
stmt3.k = 0
program = bpf_program ()
program.bf_len = num_insn
program.bf_insns = (bpf_insn * num_insn) (stmt1, jump1, stmt2, stmt3)
return program
def initAndBindBPFSocket (s, interface):
# BIOCSETIF - sets the hardware interface associated with the bpf file
# _IOW (B, 108, struct ifreq)
ioc = 0x80000000 | (32 << 16) | (ord ('B') << 8) | 108
buf = struct.pack ('32s', interface)
try:
fcntl.ioctl (s.fileno (), ioc, buf)
except:
print "[-] ERROR: could not bind BPF device to interface. Make sure that the interface" + \
"specified (with -i parameter) is correct"
exit (1)
# BIOCIMMEDIATE - enables immediate mode
# _IOW ('B', 112, u_int)
ioc = 0x80000000 | (4 << 16) | (ord ('B') << 8) | 112
buf = struct.pack ('I', 1)
fcntl.ioctl (s.fileno (), ioc, buf)
# BIOCSHDRCMPLT - disable to set link level source address automatically
# _IOR ('B', 117, u_int)
ioc = 0x80000000 | (4 << 16) | (ord ('B') << 8) | 117
buf = struct.pack ('I', 1)
fcntl.ioctl (s.fileno (), ioc, buf)
# BIOCGBLEN - get required buffer length for reads
# _IOR (B, 102, u_int)
ioc = 0x40000000 | (4 << 16) | (ord ('B') << 8) | 102
buf = struct.pack ('i', 0)
(buf_size,) = struct.unpack ("I", fcntl.ioctl (s.fileno (), ioc, buf))
# BIOCSORTIMEOUT - set the read timeout
# _IOW ('B', 109, struct timeval50)
ioc = 0x80000000 | (8 << 16) | (ord ('B') << 8) | 109
buf = struct.pack ('II', DEFAULT_TIMEOUT, 0)
fcntl.ioctl (s.fileno (), ioc, buf)
# BIOCSETF - set a filter/program
# _IOW ('B', 103, struct bpf_program)
# TODO: verify if we need to fix this, i.e. have even more resticted/better filtering etc
program = getBPFProgram ()
ioc = 0x80000000 | (8 << 16) | (ord ('B') << 8) | 103
fcntl.ioctl (s.fileno (), ioc, program)
return buf_size
def main ():
global defaultInterface, mac_address_matching, verbose, debug
parser = OptionParser ()
parser.add_option ("-i", "--interface", dest = "interface", help = "destination LAN (ethernet) " + \
"interface (e.g. eth0, eth1, p4p1, en0)", metavar = "interface")
parser.add_option ("-d", "--debug", action = "store_true", default = debug, dest = "debug",
help = "debug mode switch", metavar = "debug")
parser.add_option ("-v", "--verbose", action = "store_true", default = debug, dest = "verbose",
help = "same as debug mode (-d)", metavar = "verbose")
parser.add_option ("-s", "--ssid", dest = "ssid", help = "ESSID, network name", metavar = "ssid")
parser.add_option ("-c", "--channel", type = "int", dest = "channel", help = "channel number, from" + \
" 0 (auto) to 11, does NOT influence ssid search", metavar = "channel")
parser.add_option ("-n", "--noauth", action = "store_true", default = False, dest = "noauth",
help = "network authentication disabled", metavar = "noauth")
parser.add_option ("-w", "--wep", action = "store_true", default = False, dest = "wep",
help = "network authentication using WEP", metavar = "wep")
parser.add_option ("-p", "--wpa", action = "store_true", default = False, dest = "wpa",
help = "network authentication using WPA", metavar = "wpa")
parser.add_option ("-a", "--wpa2", action = "store_true", default = False, dest = "wpa2",
help = "network authentication using WPA2", metavar = "wpa2")
parser.add_option ("-k", "--key", dest = "key", help = "network passphrase, password, key",
metavar = "key")
parser.add_option ("-t", "--strong", action = "store_true", default = False, dest = "strong",
help = "128 bit strong encryption", metavar = "strong")
parser.add_option ("-m", "--mac", action = "store_false", default = True, dest = "mac_filter",
help = "disable mac address filtering", metavar = "mac_filter")
(options, args) = parser.parse_args ()
interface = ""
if not options.interface is None:
interface = options.interface
if not interface:
interface = defaultInterface
if options.verbose:
verbose = True
if options.debug:
debug = True
print "[i] Interface name to use: " + interface
if not options.channel is None:
tmpChannel = int (options.channel)
if tmpChannel < 0 or tmpChannel > 12:
print "[-] Error: channel number must be 0 (auto) or between 1 and 11"
exit (1)
if not options.ssid is None:
if len (options.ssid) < 1 or len (options.ssid) > 32:
print "[-] Error: ESSID network name must be less than 32 alphanumeric characters"
exit (1)
# options.noauth options.wep options.wpa options.wpa2 options.key
if options.noauth and not options.key is None:
print "[-] Error: if noauth mode is used you can't specify a network key"
exit (1)
exlusiveOption = 0
for i in (options.noauth, options.wep, options.wpa, options.wpa2):
if i:
exlusiveOption += 1
if exlusiveOption > 1:
print "[-] Error: you can only use one security protocol (e.g. WEP, WPA2) at a time"
exit (1)
if not options.mac_filter:
mac_address_matching = False
#
# START the *raw* socket (that is why we need root priviledges)
#
print "[i] Checking if device is present and getting current config..."
af_packet_missing = 0
try:
from socket import AF_PACKET
except:
af_packet_missing = 1
if debug:
print "[i] NOTE: socket.AF_PACKET missing, trying to query bpf devices (for OSX etc)"
if options.interface is None:
interface = defaultInterfaceMAC
if debug:
print "[i] NOTE: default interface changed to %s" % defaultInterface
# open socket (*nix AF_PACKET raw socket or BPF device)
buf_size = DEFAULT_BUF_SIZE
s = None
if af_packet_missing:
s = getSocketFromBPFDevice ()
buf_size = initAndBindBPFSocket (s, interface)
if buf_size < 1:
print "[-] ERROR: the determined buffer size is not valid (too small). EXIT"
exit (1)
else:
s = socket (AF_PACKET, SOCK_RAW, htons (ETH_ALL))
s.bind ((interface, ETH_ALL))
src = getHwAddr (s, af_packet_missing, interface)
# first request: check if the device is connected (to local ethernet / lan port)
send (s, af_packet_missing, buildRequest (src, ETH_BROADCAST))
dst = ETH_BROADCAST
(msg, dst) = read (s, af_packet_missing, src, dst, buf_size)
if verbose:
print "[i] The response:"
print hexdump (str (msg))
if debug:
print "[i] Got response from device on interface '%s' with MAC %s" % (interface, dst)
# force rescan of ssids (networks)
send (s, af_packet_missing, buildRequest (src, dst, COMMAND_DEVICE_STATUS))
read (s, af_packet_missing, src, dst, buf_size)
send (s, af_packet_missing, buildRequest (src, dst, COMMAND_CONFIG + '\x01', str (DATA_REQUEST_SCAN) + DATA_END))
read (s, af_packet_missing, src, dst, buf_size)
send (s, af_packet_missing, buildRequest (src, dst, COMMAND_REQUEST_RESPONSE + '\x02'))
read (s, af_packet_missing, src, dst, buf_size)
time.sleep (4) # we need this, otherwise we always get an empty network list
# get device info start:
send (s, af_packet_missing, buildRequest (src, dst, COMMAND_CONFIG + '\x01', str (DATA_REQUEST_CONFIG) + DATA_END))
(msg, address) = read (s, af_packet_missing, src, dst, buf_size)
if verbose:
print "[i] The response:"
print hexdump (str (msg))
# fetch the info:
send (s, af_packet_missing, buildRequest (src, dst, COMMAND_REQUEST_RESPONSE + '\x02'))
(msg, address) = read (s, af_packet_missing, src, dst, buf_size)
if verbose:
print "[i] The response:"
print hexdump (str (msg))
if debug:
print "[i] Box data:"
print msg[26:-1]
if "VAP11G" not in msg:
print "[!] Warning: box data does NOT contain the right BOX_NAME identifier."
print "Note: Sometimes this could occur when the device is in a different state " + \
"(e.g starting). Will proceed anyway...\n"
time.sleep (5)
# get SURVEY (next packet)
msg = read (s, af_packet_missing, src, dst, buf_size, False)
finalMsg = ""
while not msg is None:
if verbose:
print "[i] The response:"
print hexdump (str (msg[0]))
finalMsg += msg[0]
msg = read (s, af_packet_missing, src, dst, buf_size, False)
send (s, af_packet_missing, buildRequest (src, dst, COMMAND_REQUEST_RESPONSE + '\x03'))
finalMsg = finalMsg.replace ('\x0b', '\n') # next column
splitMsg = finalMsg.split ("7021 SURVEY:")
configCurr = splitMsg[0][26:]
if debug:
print "[i] Current settings:"
print configCurr
config = parseCurrentConfig (configCurr)
num = 0
netList = ()
if not (options.key or options.noauth or options.wep or options.wpa or options.wpa2
or options.channel or options.ssid):
print "[i] Networks:"
networkStr = ""
if len (splitMsg) > 1 and splitMsg[1]:
try:
bandIndex = splitMsg[1].index ("7022 BAND:")
except:
if verbose:
print "[i] BAND indication NOT found:"
if bandIndex > 0:
networkStr = splitMsg[1][0:bandIndex].strip ()
else:
networkStr = splitMsg[1].strip ()
netList = parseNetworkStr (networkStr)
printNetworks (netList)
while num < 1 or num > len (netList) + 1:
try:
num = int (raw_input ("[i] Please choose one of the options above: "))
except KeyboardInterrupt:
print "\n"
exit (1)
except:
num = 0
else:
num = 1
# initialization, default options
essid = ""
channel = 0
secmode = SECURITY_OPTIONS.index ("WPA2-PSK")
keylen = 32
key0 = ""
key1 = ""
key2 = ""
key3 = ""
authen = 0 # first one
psk = ""
band = 0 # auto
if num - 1 < len (netList):
try:
(macAddress, netDetails) = netList.items ()[num-1]
except:
print "[-] Could not read network details for configuration number %d" % num
exit (1)
try:
essid = netDetails["name"]
if not essid or len (essid) < 2:
essid = raw_input ("[i] Please insert the hidden SSID: ")
except:
essid = ""
try:
tmpChannel = int (netDetails["channel"])