Scapy/FakeAP
From charlesreid1
Contents
Overview
FakeAP is a Python library that uses Scapy to create fake APs.
Link
https://github.com/rpp0/scapy-fakeap
Basics
Hello World Script
- This example is a simple 'hello world' for scapy-fakeap.
- An open network will be created that can be joined by 802.11 enabled devices.
from fakeap import *
ap = FakeAccessPoint('wlan0', 'hello1') ap.run()