Skip to content

stevenmiller888/sniffer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A cross-platform network sniffer

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published