From ec0f9d368e4d954844854f5d4c56d64b40dc6eb2 Mon Sep 17 00:00:00 2001 From: filinpavel Date: Thu, 9 Oct 2014 22:35:05 +0700 Subject: [PATCH 1/2] Create kismet.md added Notes and Links --- tools/kismet.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tools/kismet.md diff --git a/tools/kismet.md b/tools/kismet.md new file mode 100644 index 0000000..4e519eb --- /dev/null +++ b/tools/kismet.md @@ -0,0 +1,26 @@ +# kismet + +Notes +------- +Kismet is an 802.11 layer2 wireless network detector, sniffer, and intrusion detection system. Kismet will work with any wireless card which supports raw monitoring (rfmon) mode, and (with appropriate hardware) can sniff 802.11b, 802.11a, 802.11g, and 802.11n traffic. +Kismet also supports plugins which allow sniffing other media such as DECT. + + +Help Text +------- +``` +``` + +Example Usage +------- + + +``` + +``` + +Links +------- +[Official site](https://www.kismetwireless.net/) + +[Kismet Wikipedia article](http://en.wikipedia.org/wiki/Kismet_(software)) From ada5cf99c30b49c8b73a4b862d039a53f4353e16 Mon Sep 17 00:00:00 2001 From: filinpavel Date: Thu, 9 Oct 2014 11:37:28 -0400 Subject: [PATCH 2/2] Update kismet.md added Help text --- tools/kismet.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/tools/kismet.md b/tools/kismet.md index 4e519eb..90b4bdf 100644 --- a/tools/kismet.md +++ b/tools/kismet.md @@ -9,6 +9,54 @@ Kismet also supports plugins which allow sniffing other media such as DECT. Help Text ------- ``` +Usage: /usr/bin/kismet_server [OPTION] +Nearly all of these options are run-time overrides for values in the +kismet.conf configuration file. Permanent changes should be made to +the configuration file. + *** Generic Options *** + -v, --version Show version + -f, --config-file Use alternate configuration file + --no-line-wrap Turn of linewrapping of output + (for grep, speed, etc) + -s, --silent Turn off stdout output after setup phase + --daemonize Spawn detatched in the background + --no-plugins Do not load plugins + --no-root Do not start the kismet_capture binary + when not running as root. For no-priv + remote capture ONLY. + + *** Kismet Client/Server Options *** + -l, --server-listen Override Kismet server listen options + + *** Kismet Remote Drone Options *** + --drone-listen Override Kismet drone listen options + + *** Dump/Logging Options *** + -T, --log-types Override activated log types + -t, --log-title Override default log title + -p, --log-prefix <prefix> Directory to store log files + -n, --no-logging Disable logging entirely + + *** Packet Capture Source Options *** + -c, --capture-source Specify a new packet capture source + (Identical syntax to the config file) + -C, --enable-capture-sources Enable capture sources (comma-separated + list of names or interfaces) + + *** Kismet Net Tracking Options *** + --filter-tracker Tracker filtering + + *** Kismet GPS Options *** + --use-gpsd-gps (h:p) Use GPSD-controlled GPS at host:port + (default: localhost:2947) + --use-nmea-gps (dev) Use local NMEA serial GPS on device + (default: /dev/ttyUSB0) + --use-virtual-gps + (lat,lon,alt) Use a virtual fixed-position gps record + --gps-modelock <t:f> Force broken GPS units to act as if they + have a valid signal (true/false) + --gps-reconnect <t:f> Reconnect if a GPS device fails + (true/false) ``` Example Usage