Socket
Socket
Sign inDemoInstall

6sense

Package Overview
Dependencies
83
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    6sense

Counting wifi searching devices


Version published
Weekly downloads
137
increased by92.96%
Maintainers
1
Install size
13.8 MB
Created
Weekly downloads
 

Readme

Source

6sense

This is sub project of 6element. The purpose is to count the number of devices around the sensor using their connection attempts. No need for the device to be connected, we just detect the packets emitted for network detection.

This software was designed with privacy in mind, as only a list of signal levels can be outputed.

Install

The prerequisit is to have airodump-ng installed on your system. You also need a wifi device with monitoring capability. Then:

npm install 6sense

Quick start

6sense is basically a finite state machine interfacing the wifi dongle. We assume that your wlan car is located at wlan0.

var dongle = require('6sense'); 

// start recording and gather results every 60 seconds
dongle.record(60);

dongle.on('processed', function(result){
    console.log('date: ', result.date, ', signals: ', result.signal_strengths);
});

Here are the main functions:

dongle.wakeUp()  // from 'sleeping' to 'monitoring'
dongle.sleep();  // from 'monitoring' or 'recording' back to 'sleeping'
dongle.record(300); // from 'sleeping' or 'monitoring' to 'recording'
dongle.pause();  // from 'recording' to 'monitoring'

Licence

MIT

FAQs

Last updated on 18 Aug 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc