Skip to content

Python script to run on a Raspi - Hackathon 1st place winner project for tracking users probe requests in a area to monitor population

Notifications You must be signed in to change notification settings

mnai01/HackHR-RasPi-Backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Probe-Request-Sniffer

Tested using Kali Linux VirtualBox 32-Bit v2020.1

Python v3.8.0

Required package:

sudo apt-get install python-scapy

Required equipment:

NIC(monitor mode enabled)

Required software

Aircrack-ng

Add connection credentials and place file in webserver where db is.

In Sniffer.py change sniff()

sniff(iface='YOUR-CARD-NAME', prn = PacketHandler, store=0)

Table Layout

CREATE TABLE `tbl_Probes` (
 `MAC_Address` varchar(17) NOT NULL,
 `SSID` varchar(36) NOT NULL,
 `Location` varchar(36) NOT NULL,
 `UserTime` datetime NOT NULL DEFAULT current_timestamp(),
 `ID` int(11) NOT NULL AUTO_INCREMENT,
 PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=162 DEFAULT CHARSET=utf8mb4

About

Python script to run on a Raspi - Hackathon 1st place winner project for tracking users probe requests in a area to monitor population

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published