Saturday, January 26, 2013

New firmware for BCM4330


I've added a new firmware version for the BCM4330. The version has 2 major changes:
  • Improved stability - this version should resolve crashes you may have encountered.
  • Packet Injection - The firmware now supports packet injection*
* We still have some work to do on the driver to enable the use of aircrack tools. At the moment you can only inject raw packets via python, or any other way you like :)

TODO: The driver doesn't report physical parameters (i.e. channel, rssi, etc..) correctly.

The new firmware:

Galaxy SII (I9100) bundle - CM9 stable:

python packet injection code

import socket
s = socket.socket(socket.AF_PACKET, socket.SOCK_RAW)
s.bind(('wlan0', 0))
s.send('Hello World'*20)