From charlesreid1

Revision as of 08:03, 26 February 2017 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Overview

FakeAP is a Python library that uses Scapy to create fake APs.

Link

https://github.com/rpp0/scapy-fakeap

Basics

Hello World Script

  1. This example is a simple 'hello world' for scapy-fakeap.
  2. An open network will be created that can be joined by 802.11 enabled devices.

from fakeap import *

ap = FakeAccessPoint('wlan0', 'hello1') ap.run()