Is there any way to put Android WIFI (droid handset) into promiscuous monitoring mode?

懵懂的女人 提交于 2019-11-29 03:31:40

问题


For a Computer Science Information Warfare class a few years ago I wrote a python script that ran on libpcap promiscuous packet capture files to parse out facebook chat traffic (earlang tuples passed in clear text), and thought an interesting project would be to port the program to Android.

I would like to rewrite it in Java but can't find any information about packet capturing directly on the handset.


回答1:


As far as I'm aware, there is no way to put the Wifi NIC into monitoring mode from the public API. However, depending on the device used by the phone, you may be able to get the system to put it into monitor mode if you have root access.

Take a look at the code in the android-wifi-tether project:

http://code.google.com/p/android-wifi-tether/source/browse/?r=304#svn/trunk%3Fstate%3Dclosed

There are some Linux binaries and config files in the res/raw/ directory, which are copied into place and controlled by the app in Java.

Remember that you will need to root the phone for this to work.



来源:https://stackoverflow.com/questions/2334244/is-there-any-way-to-put-android-wifi-droid-handset-into-promiscuous-monitoring

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!