README 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. wpadebug - wpa_supplicant and Wi-Fi debugging app for Android
  2. Copyright (c) 2013, Jouni Malinen <j@w1.fi> and contributors
  3. All Rights Reserved.
  4. This program is licensed under the BSD license (the one with
  5. advertisement clause removed). See the top level README for detailed
  6. license text.
  7. If you are submitting changes to the project, please see CONTRIBUTIONS
  8. file for more instructions.
  9. NOTE! This Android app is for debugging and testing purposes only. It is
  10. not supposed to be installed on a production use device and doing so may
  11. result in complete loss of security protections on the device.
  12. Build
  13. -----
  14. - Install Android SDK and build tools
  15. - update project target if desired; for example:
  16. android list targets
  17. android update project --target 1 --path $PWD
  18. - run: ant debug
  19. Installation (with adb over USB)
  20. ------------
  21. adb install bin/wpadebug-debug.apk
  22. NOTE: Following steps enable any app on the system to get root access!
  23. This is not suitable for any production use. This is needed for direct
  24. wpa_supplicant access and some networking operating in general. You can
  25. still use rest of the wpadebug app without doing this, but those
  26. functions will not work unless this step part of installation is
  27. done. It should be obvious that these steps require a rooted device. In
  28. addition, if you do not understand what the following commands do,
  29. please do not run them.
  30. adb root
  31. adb remount
  32. adb shell chmod 6755 /system/bin/mksh-su
  33. Uninstallation
  34. --------------
  35. adb root
  36. adb remount
  37. adb shell rm /system/bin/mksh-su
  38. adb uninstall w1.fi.wpadebug