├── Beacon.py ├── Beacon.pyc ├── Drone.py ├── README.md ├── __init__.py ├── interface-monitor.sh ├── main.py ├── replay_mavic.py ├── requirements.txt └── wifi_sniffer ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── wifiSniffer.iml ├── App.py ├── Drone.py ├── README.md ├── __pycache__ └── Drone.cpython-38.pyc └── sniffer.py /Beacon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/Beacon.py -------------------------------------------------------------------------------- /Beacon.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/Beacon.pyc -------------------------------------------------------------------------------- /Drone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/Drone.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /interface-monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/interface-monitor.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/main.py -------------------------------------------------------------------------------- /replay_mavic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/replay_mavic.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | inputs==0.5 2 | scapy==2.5.0 -------------------------------------------------------------------------------- /wifi_sniffer/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /wifi_sniffer/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/wifi_sniffer/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /wifi_sniffer/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/wifi_sniffer/.idea/misc.xml -------------------------------------------------------------------------------- /wifi_sniffer/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/wifi_sniffer/.idea/modules.xml -------------------------------------------------------------------------------- /wifi_sniffer/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/wifi_sniffer/.idea/vcs.xml -------------------------------------------------------------------------------- /wifi_sniffer/.idea/wifiSniffer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/wifi_sniffer/.idea/wifiSniffer.iml -------------------------------------------------------------------------------- /wifi_sniffer/App.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/wifi_sniffer/App.py -------------------------------------------------------------------------------- /wifi_sniffer/Drone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/wifi_sniffer/Drone.py -------------------------------------------------------------------------------- /wifi_sniffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/wifi_sniffer/README.md -------------------------------------------------------------------------------- /wifi_sniffer/__pycache__/Drone.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/wifi_sniffer/__pycache__/Drone.cpython-38.pyc -------------------------------------------------------------------------------- /wifi_sniffer/sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llorencroma/DJIDroneIDspoofer/HEAD/wifi_sniffer/sniffer.py --------------------------------------------------------------------------------