All Projects → intuitibits → wifiexplorer-sensor

intuitibits / wifiexplorer-sensor

Licence: GPL-3.0 License
[DEPRECATED] Enables remote scanning in WiFi Explorer Pro

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to wifiexplorer-sensor

Node Wifi
📶 NodeJS tool to manage wifi (connections, scans)
Stars: ✭ 250 (+575.68%)
Mutual labels:  wifi, scanning
Esp8266 deauther
Affordable WiFi hacking platform for testing and learning
Stars: ✭ 9,312 (+25067.57%)
Mutual labels:  wifi, scanning
WiFiPS
WiFi Based Indoor Positioning System, A MVP android Application
Stars: ✭ 105 (+183.78%)
Mutual labels:  wifi, scanning
Find3 Android Scanner
An android app that scans Bluetooth and WiFi for FIND3
Stars: ✭ 99 (+167.57%)
Mutual labels:  wifi, scanning
Probesniffer
🔍 A tool for sniffing unencrypted wireless probe requests from devices.
Stars: ✭ 288 (+678.38%)
Mutual labels:  sniffer, wifi
Probequest
Toolkit for Playing with Wi-Fi Probe Requests
Stars: ✭ 167 (+351.35%)
Mutual labels:  sniffer, wifi
RaspberryPi-Packet-Sniffer
An HTTP and HTTPS sniffing tool created using a Raspberry Pi
Stars: ✭ 79 (+113.51%)
Mutual labels:  sniffer, wifi
WifiManager
简化Android Wifi开发,已实现常用的功能,比如获取WiFi管理,WiFi列表,断开、清除或者连接WiFi。
Stars: ✭ 133 (+259.46%)
Mutual labels:  wifi
PhoneVR
Use Steam VR-enabled applications with your phone as HMD (Head-mounted display). The only Open-Source solution to similar commercial packages like VRidge, iVRy, Trinus etc etc.
Stars: ✭ 178 (+381.08%)
Mutual labels:  wifi
realtek rtwifi
Realtek RTWIFI - RTL8XXXU mod
Stars: ✭ 32 (-13.51%)
Mutual labels:  wifi
k8s-nuclei-templates
Nuclei templates for K8S security scanning
Stars: ✭ 85 (+129.73%)
Mutual labels:  scanning
swifitch-software
Software for SWIFITCH HW
Stars: ✭ 12 (-67.57%)
Mutual labels:  wifi
archer-t2u-plus-linux
TP-Link Archer T2U Plus / AC600 High Gain USB Wifi Adapter Review & Driver installation Guide for various platforms.
Stars: ✭ 87 (+135.14%)
Mutual labels:  wifi
issues
Issue Tracker for ESPHome
Stars: ✭ 182 (+391.89%)
Mutual labels:  wifi
mimo-ce
MIMO Community Edition
Stars: ✭ 20 (-45.95%)
Mutual labels:  wifi
System.Device.WiFi
📦 nanoFramework System.Device.Wifi Class Library
Stars: ✭ 18 (-51.35%)
Mutual labels:  wifi
XPS15-9560-Monterey
XPS15-9560-Catalina, Q群:161385229
Stars: ✭ 268 (+624.32%)
Mutual labels:  wifi
diablo2
Utilities to work with diablo2, Clientless map rendering & packet sniffing
Stars: ✭ 126 (+240.54%)
Mutual labels:  sniffer
Crypto Coin Ticker
Bitcoin and Multi Crypto Coin Price Ticker with candlestick chart (Binance API Websocket) - SD-Config File Version
Stars: ✭ 37 (+0%)
Mutual labels:  wifi
st-device-sdk-c
SmartThings SDK for Direct Connected Devices for C
Stars: ✭ 75 (+102.7%)
Mutual labels:  wifi

Remote Sensor Setup [DEPRECATED]

DEPRECATED: Starting in WiFi Explorer Pro 3.2, a remote sensor doesn't longer need the wifiexplorer-sensor script to enable the remote scanning function. For more information, see: Connect to a Remote Sensor.


WiFi Explorer Pro allows you to connect to a remote platform (e.g. Raspberry Pi) and perform a passive Wi-Fi scan using a capable Wi-Fi adapter. When a remote sensor is used, the scan results are sent back to WiFi Explorer Pro for its visualization.

To use a platform as a remote sensor you will need a Linux-based computer with a Wi-Fi adapter capable of using monitor mode, and a Python script that enables the sensor functionality.

Installation

  1. Download wifiexplorer-sensor and copy the script to the Linux-based platform that will be used as a remote sensor. We recommend you place the script under /usr/local/bin. Also, make sure it has executable permissions:
sudo chmod +x /usr/local/bin/wifiexplorer-sensor
  1. Install python3 and python3-pip. If you're using a Debian-based platform you can type:
sudo apt-get install python3 python3-pip
  1. Install scapy:
sudo pip3 install scapy

Starting the sensor

Manual mode

If wlan0 is the Wi-Fi adapter to be used, type:

sudo nohup /usr/local/bin/wifiexplorer-sensor wlan0 > /tmp/wifiexplorer-sensor.log 2>&1 &

Automatic mode

You can make the script launch at startup by editing /etc/rc.local to include the line above. If your Wi-Fi adapter is other than wlan0, you need to change it accordingly. Also, the line above must be included just before the line that says exit 0, in case such line is present.

However, we recommend using a startup script. Startup scripts for System V- and systemd-based initialization systems are provided under the scripts directory.

System V

Copy scripts/wifiexplorer-sensor to the target platform, then type the following to enable it:

sudo install -p -m 755 wifiexplorer-sensor /etc/init.d/wifiexplorer-sensor
sudo update-rc.d wifiexplorer-sensor defaults
sudo systemctl daemon-reload

You can start the sensor by typing:

sudo service wifiexplorer-sensor start

Systemd

Copy scripts/wifiexplorer-sensor.service to the target platform, then type the following to enable it:

sudo install -p -m 644 wifiexplorer-sensor.service /lib/systemd/system/wifiexplorer-sensor.service
sudo systemctl enable wifiexplorer-sensor.service

You can start the sensor by typing:

sudo systemctl start wifiexplorer-sensor

Use

Once the platform is ready, go to WiFi Explorer Pro > Preferences > Sensors and click '+' to add the new sensor by entering its IP address. This address would be the wired (Ethernet) IP address unless you have a secondary Wi-Fi adapter you can use to connect to the sensor (the Wi-Fi adapter used for scanning will be switched to monitor mode while the scan is in progress!).

You can now go to the WiFi Explorer Pro toolbar and choose your remote sensor to start a scan.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].