Hi all,
Since hakshop.com does not ship to my country I decided to make my own WiFi pineapple. I wrote following two scripts
./first.run
Code:
#!/bin/bash
echo Creating Bridge
brctl addbr BR1
echo Setting bridge ip and up the interface
ifconfig BR1 192.168.1.8/24 up
echo Adding eth0 to bridge
brctl addif BR1 eth0
echo Start wireless interface in monitoring mode
airmon-ng start wlan0
echo Start accepting probes
airbase-ng -P -C 30 -v mon0
Running the second script in another terminal since the first one is busy with airbase-ng
./second.run
Code:
#!/bin/bash
echo Adding wireless interface to Bridge
ifconfig at0 0.0.0.0 up
brctl addif BR1 at0
This all works great. However, throughput of this is not greater than 500kbit/s. I believe that a 700 Mhz cpu should easily handle this throughput.
Do you guys have any idea about why I am getting so low speeds?