0.1.0 • Published 9 years ago

network-sniffer v0.1.0

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

Sniffer

NPM version build status license

A cross-platform network sniffer.

Installation

$ npm install network-sniffer

Usage

var Sniffer = require('network-sniffer');
var sniffer = Sniffer();

// start sniffing on channel 5
sniffer.start(5);

// or, with an optional callback
sniffer.start(5, function(file) {
  // `file` is the path to the capture file
});

// stop sniffing on channel 5
sniffer.stop(5);

You can use scanner to find the channels of all available wireless networks.

Note

If you are running Linux or Windows, and you do not have airodump-ng installed, then install it (and the rest of the aircrack suite) with:

apt-get install aircrack-ng

License

MIT

0.1.0

9 years ago

0.0.1

9 years ago