From 443a2d69f5a6a51262bc295ca1932f8f2521139c Mon Sep 17 00:00:00 2001 From: Aditya Chaudhari <98672108+AdityaC4@users.noreply.github.com> Date: Thu, 17 Aug 2023 18:51:17 +0530 Subject: [PATCH] kismet: add page (#10606) Co-authored-by: K.B.Dharun Krishna --- pages/common/kismet.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/kismet.md diff --git a/pages/common/kismet.md b/pages/common/kismet.md new file mode 100644 index 000000000..cc788fdd1 --- /dev/null +++ b/pages/common/kismet.md @@ -0,0 +1,36 @@ +# kismet + +> A wireless network and device detector, sniffer, wardriving tool, and WIDS (wireless intrusion detection) framework. +> More information: . + +- Capture packets from a specific wireless interface: + +`sudo kismet -c {{wlan0}}` + +- Monitor multiple channels on a wireless interface: + +`sudo kismet -c {{wlan0,wlan1}} -m` + +- Capture packets and save them to a specific directory: + +`sudo kismet -c {{wlan0}} -d {{path/to/output}}` + +- Start Kismet with a specific configuration file: + +`sudo kismet -c {{wlan0}} -f {{path/to/config.conf}}` + +- Monitor and log data to an SQLite database: + +`sudo kismet -c {{wlan0}} --log-to-db` + +- Monitor using a specific data source: + +`sudo kismet -c {{wlan0}} --data-source={{rtl433}}` + +- Enable alerts for specific events: + +`sudo kismet -c {{wlan0}} --enable-alert={{new_ap}}` + +- Display detailed information about a specific AP's packets: + +`sudo kismet -c {{wlan0}} --info {{BSSID}}`