-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathREADME
More file actions
60 lines (42 loc) · 1.52 KB
/
README
File metadata and controls
60 lines (42 loc) · 1.52 KB
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
LORCON Examples and Patches
by brad antoniewicz
brad.antoniewicz@foundstone.com
---------------------------------------------------
Various examples and patches for LORCON. These have
all been tested on BT5R3.
lorcon.patch -
fixes a couple minor items in the lorcon install.
Note: The lorcon2 instance on https://code.google.com/p/lorcon/
removes lcpa functionality.. idk wtf
To use:
root@bt:~# apt-get install libnl-dev
root@bt:~# svn co http://802.11ninja.net/svn/lorcon/trunk lorcon2
root@bt:~# cd lorcon2
root@bt:~/lorcon2# patch -p1 < ../lorcon.patch
root@bt:~/lorcon2# ./configure --prefix=/usr
root@bt:~/lorcon2# make depend && make && make install
beacon_flood_lcpa.c -
Basic beacon flooder that uses LORCON's packet assembly
functionality.
To build:
gcc -o beacon_flood_lcpa -lorcon2 beacon_flood_lcpa.c
To run:
./beacon_flood_lcpa -i wlan1 -c 11 -s BRAD
beacon_flood_raw.c -
Basic beacon flooder that sends raw packet bytes.
To build:
gcc -o beacon_flood_raw -lorcon2 beacon_flood_raw.c
To run:
./beacon_flood_raw -i wlan1 -c 11
beacon_flood_raw.py -
Basic beacon flooder that sends raw packet bytes using
PyLorcon2.
To build:
root@bt:~# apt-get install libnl-dev
root@bt:~# wget http://pylorcon2.googlecode.com/files/PyLorcon2-0.1.tar.gz
root@bt:~# tar -zxvf PyLorcon2-0.1.tar.gz
root@bt:~# cd PyLorcon2-0.1
root@bt:~/PyLorcon2-0.1# python setup.py build
root@bt:~/PyLorcon2-0.1# python setup.py install
To run:
python beacon_flood_raw.py -i wlan1 -c 11