Skip to content
This repository has been archived by the owner on Mar 11, 2022. It is now read-only.
Shant Tchatalbachian edited this page Jan 9, 2021 · 114 revisions

Evil Access Point Defender (EAPD) is an application that helps wireless network admins discover and prevent bad access points from attacking wireless network users. It's a configurable intrusion detection/response system for wifi in 2Ghz/5Ghz.

This pre-release comes with a third-party installer for the Wifi-Pineapple, and has been integrated with the Hak5 CloudC2.

A module for the Wifi-Pineapple Management Interface is currently in development and will be under review soon.

Python3 support is coming!

Installation:

git clone https://github.com/0mniteck/EAPD

cd EAPD

chmod +x INSTALL.sh

./INSTALL.sh

The application can be run in regular intervals to protect your wireless network from Evil Twin like attacks. By configuring the tool you can get notifications sent to your email whenever an evil access point is discovered. Additionally you can configure the tool to perform a deauth attack on the legitimate wireless users to prevent them from connecting to the discovered evil AP, in order to give the administrator more time to react. However, notice that the deauth will only be performed for evil APs which have the same SSID but different BSSID (AP’s MAC address) or running on a different channel or different signal strength. This is to avoid deauthing your legitimate network. It will also send an auditable log to the CloudC2 server and to a cronitor link of your choice.

The tool is able to discover Evil APs using one of the following characteristics:

Evil AP with a different BSSID address Evil AP with the same BSSID as the legitimate AP but a different attribute (including: channel, cipher, privacy protocol, authentication, and signal strength!) Evil AP with the same BSSID and attributes as the legitimate AP but different tagged parameter mainly different OUI (tagged parameters are additional values sent along with the beacon frame. Currently no software based AP gives the ability to change these values. Generally software based APs are so poor in this area). Whenever an Evil AP is discovered the tool will alert the admin through email. Additionally the tool will enter into preventive mode in which the tool will DoS the users of the legitimate wireless network from connecting to the discovered Evil AP. The tool can be configured easily by starting “Learning Mode”. In this mode you can whitelist your legitimate network. This can be done by following the wizards during the Learning Mode. You can also configure the preventive mode and admin notification from there as well.

Learning Mode: This Mode can be invoked with the “L” switch. When running the tool in this mode the tool will start by scanning for the available wireless networks. Then it lists all the found wireless networks with whitelisted APs. It also lists the whitelist APs and OUIs (tagged parameters). The tool also provides several options which allow you to add/remove SSIDs into/from whitelist. You need to whitelist your SSID first before running the tool in the Normal Mode. Moreover, you can configure Preventive Mode from “Update options -> Configure Preventive Mode”. First you need to set the Deauthentication time (in seconds) into a number bigger than 0 (setting the value to 0 will disable this mode). Then you need to set the number of time to repeat the attack. This is so important for attacking more than Evil AP because the tool cannot attack all of them in the same time (how can you attack several APs on different channels? Later on we will improve the tool and allow it to attack (in the same time) several APs in the same channel). The tool will attack the first Evil AP for specified deauthentication time then it will stop and attack the second one and so on. Be careful from increasing the Deatuth time so much because this may attack only one AP and leaving the others running. My recommendation is to set the Deauth time to something suitable such as 10 seconds and increasing the repeat time. Finally, you can configure admin notification by setting admin email, SMPT server address, SMTP username (complete email address) for authentication purpose, and SMTP password. You can use any account on Gmail or your internal SMTP server account.

Run Learning Mode before starting '/etc/init.d/cron' by issuing '/etc/init.d/eapdd L'

Scanning Mode: This is the mode in which the tool starts to discover Evil APs and notify the administrator whenever one is discovered.

This mode can be invoked with '/etc/init.d/eapdd start'
or schedule regular runs by invoking '/etc/init.d/cron enable && /etc/init.d/cron start'

Just issue these following commands to run the uninstaller:

cd EAPD

chmod +x UNINSTALL.sh

./UNINSTALL.sh

Requirements:

Turn the PineAP Daemon off during scans or use a different wireless interface besides wlan0.

Runs with cron from init.d on Openwrt 19.x and above (Recommend running it on a Wifi-Pineapple MK7)

50MB Minimum Free Space Required (100MB Minimum Free Space Recommended)

If you have a low memory, no swap, or a flash device like the Wifi-Pineapple Tetra or Nano then you need an
external storage with an extroot for it to be stable and have enough space for a full install of python.
Check the following URL: https://openwrt.org/docs/guide-user/additional-software/extroot_configuration
With these devices you might also need an external wifi adapter to not disrupt the network.

Updating:

You will want to start from a fresh install, many changes have been made.

Clone this wiki locally