dxoigmn / baffle
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sun Jun 29 15:25:21 -0700 2008 | |
| |
LICENSE | Sat May 03 00:08:16 -0700 2008 | |
| |
README.markdown | ||
| |
baffle.gemspec | Tue Aug 19 17:25:55 -0700 2008 | |
| |
bin/ | ||
| |
bugs/ | Mon Jun 30 13:19:06 -0700 2008 | |
| |
data/ | ||
| |
lib/ | Tue Aug 19 17:25:55 -0700 2008 |
Baffle
Baffle is a tool for actively fingerprinting and identifying wireless devices. See ./tool --help for options.
Compiling
Because we need to be able to sniff and inject arbitrary 802.11 packets, we need help from a few C-libraries (see Depedencies). Before running Baffle, you must compile the Ruby extensions wrapping these libraries. Generally, it it done in the following manner:
$ ruby extconf
$ make
You will need to run these commands in the following directories:
- ./lib/capture/
- ./lib/ruby-lorcon/
Linalg depends on LAPACK, a fortran linear algebra package, and on f2c, a fortran to C bridge. These can typically be installed from package management systems or compiled from source. The ruby linalg library itself is compiled with the following commands:
$ ruby install.rb configure
$ ruby install.rb make
$ sudo ruby install.rb install
Once those dependencies are met, everything should work fine.
Depedencies
C-libraries
- lorcon
- libpcap
Fortran libraries
- LAPACK
Ruby libraries
- linalg (depends on the LAPACK fortran library and f2c library)
License
Copyright (c) 2007-2008, The Trustees of Dartmouth College.
Baffle is released as open source under a BSD license. See LICENSE for details.

