Scapy/FakeAP: Difference between revisions
From charlesreid1
(Created page with "=Hello World Script= </pre> # 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 f...") |
No edit summary |
||
| Line 1: | Line 1: | ||
=Hello World Script= | =Overview= | ||
FakeAP is a Python library that uses Scapy to create fake APs. | |||
==Link== | |||
https://github.com/rpp0/scapy-fakeap | |||
=Basics= | |||
==Hello World Script== | |||
</pre> | </pre> | ||
Latest revision as of 08:03, 26 February 2017
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()