Skip to content

zjlywjh001/bcm-public

 
 

Repository files navigation

NexMon logo

What is NexMon?

NexMon is a firmware patching framework for the BCM4339 WiFi firmware of Nexus 5 smartphones. It's main intension was to enable monitor mode and frame injection, which is already working quite well. Nevertheless, we also publish many example patches that allow to dive into firmware reverse engineering and firmware patching. Especially, the ability to write firmware patches in C makes it easy to use, also for beginners.

If you only intend to activate monitor mode on a device using the bcmdhd driver, take a look at the following commit: ed11c18

News

Related Projects

WARNING

Our software may damage your hardware and may void your hardware’s warranty! You use our tools at your own risk and responsibility! If you don't like these terms, don't use nexmon!

What this Repo contains

  • A bootable boot ROM for Android
  • Everything needed to build the ROM by yourself

Requirements

  • Nexus 5 with bcm4339 chipset
  • Your bootloader needs to be unlocked (no root required)
  • Android 6.0 or 6.0.1
  • Android Tools (adb + fastboot)

To build your own patches

  • Xubuntu 14.04.4 64-Bit (do not use a different version to avoid compilation problems)
  • set the environment variable NDK_ROOT to an installation of android-ndk-r11c (using exactly this version allows to build all tools without problems)

Steps needed to run the boot.img on your phone

  • Download the boot.img (this project is still in heavy development, the monitor mode should work on the boot.img in this commit though: 2c39825)
  • adb reboot bootloader
  • fastboot boot boot.img
    • without the flash parameter, this boot image will be reset to the previous one on the next reboot
  • fastboot reboot
  • adb shell
  • su
  • insmod /nexmon/bcmdhd.ko
  • ifconfig wlan0 up
  • nexutil -m true this tells the firmware to activate monitor mode
  • do whatever you want, e.g. run tcpdump: /nexmon/bin/tcpdump -i wlan0 -s0

Steps to build your own boot.img

  • source setup_env.sh
  • make cleanboot
  • make boot.img

Steps to create your own firmware patches

Caveats

  • The current patch is unable to handle aggregated frames (A-MSDU's). This makes it impossible to receive frames in an 802.11n/802.11ac enabled environment.
  • Current Monitor Mode was tested and works for 802.11n with 20MHz wide channels (2.4 as well as 5GHz), 40MHz channels seems to be a problem. We keep working on it ;-)
  • Using this patch should enalbe iw to set 40MHz channels. It currently only works for 5GHz frequencies. Capturing WiFi packets which use mutliple spatial streams is still not possible, this is caused by a hardware limitation of the Nexus 5

Read our papers

Feel free to read and reference our papers on the development of this project

Contact

About

DEPRECATED: Monitor Mode and Firmware patching framework for the Google Nexus 5, development moved to: https://github.com/seemoo-lab/nexmon

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 87.2%
  • C++ 4.5%
  • HTML 3.7%
  • Assembly 2.4%
  • Roff 0.5%
  • Other 0.5%
  • Other 1.2%