├── .gitignore ├── LICENSE ├── README.md ├── data ├── __init__.py └── manipulate_db.py ├── dependencies.sh ├── imgs ├── img_1.PNG ├── img_2.PNG ├── img_3.PNG ├── img_4.PNG └── img_5.PNG ├── logs └── .gitignore ├── manufacturer ├── __init__.py ├── manufacturer_table.txt └── parse_manufacturer.py ├── modules ├── __init__.py ├── actuators │ ├── __init__.py │ ├── active_detectors.py │ ├── associate_model.py │ ├── createRogueAP.py │ └── deauthing.py ├── colors.py ├── detectors │ ├── __init__.py │ ├── noknowledge_detector.py │ └── passive_detectors.py ├── logs │ ├── __init__.py │ └── logs_api.py ├── manage_interfaces.py └── scanners │ ├── __init__.py │ ├── iwlist_network_monitor.py │ └── scapy_network_monitor.py ├── profiles ├── example_profile.txt ├── free_wifis.txt └── rogueAP.txt ├── requirements.txt ├── rogueAP_detector.py └── scripts ├── createRogueAP.sh ├── deauth.py ├── karmaAttack.sh ├── probReq.py └── sysinfo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/manipulate_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/data/manipulate_db.py -------------------------------------------------------------------------------- /dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/dependencies.sh -------------------------------------------------------------------------------- /imgs/img_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/imgs/img_1.PNG -------------------------------------------------------------------------------- /imgs/img_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/imgs/img_2.PNG -------------------------------------------------------------------------------- /imgs/img_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/imgs/img_3.PNG -------------------------------------------------------------------------------- /imgs/img_4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/imgs/img_4.PNG -------------------------------------------------------------------------------- /imgs/img_5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/imgs/img_5.PNG -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /manufacturer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manufacturer/manufacturer_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/manufacturer/manufacturer_table.txt -------------------------------------------------------------------------------- /manufacturer/parse_manufacturer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/manufacturer/parse_manufacturer.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/actuators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/actuators/active_detectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/actuators/active_detectors.py -------------------------------------------------------------------------------- /modules/actuators/associate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/actuators/associate_model.py -------------------------------------------------------------------------------- /modules/actuators/createRogueAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/actuators/createRogueAP.py -------------------------------------------------------------------------------- /modules/actuators/deauthing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/actuators/deauthing.py -------------------------------------------------------------------------------- /modules/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/colors.py -------------------------------------------------------------------------------- /modules/detectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/detectors/noknowledge_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/detectors/noknowledge_detector.py -------------------------------------------------------------------------------- /modules/detectors/passive_detectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/detectors/passive_detectors.py -------------------------------------------------------------------------------- /modules/logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/logs/logs_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/logs/logs_api.py -------------------------------------------------------------------------------- /modules/manage_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/manage_interfaces.py -------------------------------------------------------------------------------- /modules/scanners/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/scanners/iwlist_network_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/scanners/iwlist_network_monitor.py -------------------------------------------------------------------------------- /modules/scanners/scapy_network_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/modules/scanners/scapy_network_monitor.py -------------------------------------------------------------------------------- /profiles/example_profile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/profiles/example_profile.txt -------------------------------------------------------------------------------- /profiles/free_wifis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/profiles/free_wifis.txt -------------------------------------------------------------------------------- /profiles/rogueAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/profiles/rogueAP.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/requirements.txt -------------------------------------------------------------------------------- /rogueAP_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/rogueAP_detector.py -------------------------------------------------------------------------------- /scripts/createRogueAP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/scripts/createRogueAP.sh -------------------------------------------------------------------------------- /scripts/deauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/scripts/deauth.py -------------------------------------------------------------------------------- /scripts/karmaAttack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/scripts/karmaAttack.sh -------------------------------------------------------------------------------- /scripts/probReq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/scripts/probReq.py -------------------------------------------------------------------------------- /scripts/sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherik/RogueAP-Detector/HEAD/scripts/sysinfo.py --------------------------------------------------------------------------------