GeoSpoofer
The ESP8266 is a low-cost Wi-Fi microchip with full TCP/IP stack and microcontroller capability produced by manufacturer Espressif System in Shanghai, China.
The chip first came to the attention of western makers in August 2014 with the ESP-01 module, made by a third-party manufacturer Ai-Thinker. This small module allows microcontrollers to connect to a Wi-Fi network and make simple TCP/IP connections using Hayes-style commands. However, at first there was almost no English-language documentation on the chip and the commands it accepted. The very low price and the fact that there were very few external components on the module, which suggested that it could eventually be very inexpensive in volume, attracted many hackers to explore the module, chip, and the software on it, as well as to translate the Chinese documentation.
Using this device you can trick your phone to appearing almost anywhere in the connected world. Locations can be collected on-site or remotely using the Wigle.net API.
Tested for Linux Ubuntu 20.04
Python
python -m venv venv
source venv/bin/activate
python setup.py develop
skylift
Usage: skylift [OPTIONS] COMMAND [ARGS]...
SkyLift
Options:
--help Show this message and exit.
Commands:
create-sketch Creates new Arduino sketch from template
Customize more parameters
skylift create-sketch
-i path/to/scan.json
-o path/to/scan-arduino/
--max-networks - (default='10')
--board - (default='esp32')
--max-rssi - (default='-30')
--min-rssi - (default='-100')
--channel - (default=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13])
help='Use multiple channels to spread across spectrum'
--dbm - (default='19.5')- Setup an Wigle account: https://wigle.net
- add Wiggle creds. in sketch.sh
- --wigle_api_name ...
- --wigle_api_key ...
- run sudo bash ./sketch.sh
- Enter project name: accra
- Enter Lat: 5.5631
- Enter Long: -0.1918
creates files in:
- accra.json
- arduino/accra/ ...
- Add in "2" line: "filename": "accra",
- Replace in line "13", "networks" with "wifi".
Create Arduino sketch from template
skylift create-sketch -i accra.json -o accra/ -board esp8266 --max-networks 15- Download Arduino IDE
- Install boards in File > Preferences: Additional boards manager URLs
- board URLs
http://arduino.esp8266.com/stable/package_esp8266com_index.json,https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json - Select board:
- NodeMCU ESP32 is "ESP32 Dev Module"
- Set upload speed in Tools > Upload Speed to maximum 460800
