This tool is for educational and security research purposes only. Unauthorized use of network penetration techniques is illegal and punishable by law. Only use this tool on networks you own or have explicit permission to test. The author is not responsible for any misuse of this script.
MimeFi is a bash script that demonstrates various WiFi security assessment techniques, such as:
- Enabling monitor mode
- Scanning for available networks
- Capturing packets
- Performing deauthentication attacks (packet injection)
- Cracking WEP/WPA keys (with permission)
Before running the script, ensure you have the necessary dependencies installed on a Linux system:
airmon-ng
(part ofaircrack-ng
suite)airodump-ng
aireplay-ng
aircrack-ng
figlet
gnome-terminal
sudo apt update && sudo apt install aircrack-ng figlet gnome-terminal
git clone https://github.com/MrM1M3/MimeFi.git
cd MimeFi
chmod +x mimefi.sh
./mimefi.sh
Once executed, the script presents a menu with the following options:
Option | Description |
---|---|
1 | Enable monitor mode (Switches WiFi adapter to monitor mode) |
2 | Scan for available WiFi networks |
3 | Capture packets from a target network |
4 | Perform a deauthentication attack (Packet Injection) |
5 | Crack WEP/WPA passwords using a dictionary attack |
6 | Exit the script |
Select option 1
- Converts
wlan0
interface to monitor mode - Required to scan networks and capture packets
Select option 2
- Lists WiFi networks in range
- Displays BSSID, Channel, and ESSID
Select option 3
- Prompts for network selection
- Captures packets using
airodump-ng
Select option 4
- Sends deauthentication packets to disrupt a network
- Only use with explicit permission
Select option 5
- Prompts for capture file path and encryption type
- Uses
aircrack-ng
for cracking - Requires a wordlist for WPA cracking
sudo aircrack-ng -w wordlist.txt -b <BSSID> capture.cap
- Ensure you are running the script as root
- Only test networks with explicit permission
- Be aware of legal and ethical implications
This project is licensed under the MIT License. Use responsibly.
Mr. Mime