Skip to content

jib1337/blockade-recon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Blockade-Recon

This tool captures MAC addresses from wireless data and tallys them based on manufacturer. Data can be imported and exported for use over multiple sessions. Useful for auditing wireless devices that are active at a location.

UI Screenshot

Dependancies

  • tcpdump

Usage Overview

Requires a wireless adapter capable of monitor mode.

usage: recon.py [-h] [-i interface] [-u]

Blockade-Recon 0.2

optional arguments:
  -h, --help    show this help message and exit
  -i interface  Specify a wireless interface to listen on
  -u            Attempt to retrieve an updated version of the manufacturer
                database

The following setup assumes use with Kali.

  1. Clone the repository
  2. Connect your wireless card, bring up the interface and start monitor mode. Example using airmon-ng (replace "wlan0" with the name of your interface:
root@kali:~# ip link set dev wlan0 up
root@kali:~# airmon-ng check kill
root@kali:~# airmon-ng start wlan0
  1. Start blockade-recon with:
root@kali:~/blockade-recon# ./recon.py -i <interfacename>
  1. Wait for preliminary data to be captured.