wifi_rogueap

Presentation

wifi_rogueap creates a fake WiFi access point (not connectible). You can choose the SSID of this fake AP using the SSID parameter, and you can also provide the channel and cryptographic suite to use (CHANNEL and CYPHER parameters).

Compatible devices

Input parameters

Name

Default value

Possible values

Description

INTERFACE

wlan0

wlanX

Interface to use

SSID

mirage_fakeap

<string>

ESSID of the fake access point

CHANNEL

8

<integer>

Channel of the fake access point

CYPHER

OPN

OPN|WPA|WPA2|WEP

Type of the fake network

Output parameters

This module doesn’t provide any output parameters.

Usage

To create an open Fake Access Point named “MirageFakeAP” on the channel 13, use the following command:

$ mirage wifi_rogueap INTERFACE=wlp2s0 SSID=MirageFakeAP CYPHER=OPN CHANNEL=13
[INFO] Module wifi_rogueap loaded !
[INFO] New channel : 1
[INFO] New channel : 13
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
^C[INFO] Mirage process terminated !

If you want to use another cypher method, you can change the CYPHER parameter:

$ mirage wifi_rogueap INTERFACE=wlp2s0 SSID=MirageFakeAP CYPHER=WPA2 CHANNEL=13
[INFO] Module wifi_rogueap loaded !
[INFO] New channel : 1
[INFO] New channel : 13
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
[INFO] Incoming Probe Request from : B4:74:43:6E:58:C3
[INFO] Answering...
^C[INFO] Mirage process terminated !