Linux command
giskismet 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Import Kismet NETXML data
giskismet -x [kismet-output.netxml]
Query for specific access points by ESSID
giskismet -q "select * from wireless where ESSID='[MyNetwork]'"
Export results to KML file
giskismet -x [data.netxml] -o [output.kml]
Filter by encryption type
giskismet -x [data.netxml] --encryption [WPA]
Filter by BSSID
giskismet -x [data.netxml] --bssid [AA:BB:CC:DD:EE:FF]
说明
giskismet is a Perl-based tool that processes wireless recon data gathered by Kismet and stores it in a SQLite database. Users can run SQL queries against the data and generate Google Earth KML files for mapping access point locations. The tool supports filtering by BSSID, ESSID, encryption type, and channel, making it useful for wireless security assessments and site surveys.
参数
- -h, --help
- Display help.
- -v, --version
- Display version.
- -x _FILE_, --xml _FILE_
- Parse Kismet NETXML file.
- --csv _FILE_
- Parse Kismet CSV file.
- --bssid _FILTER_
- Filter by BSSID (file or comma-separated list).
- --essid _FILTER_
- Filter by ESSID (file or comma-separated list).
- --encryption _FILTER_
- Filter by encryption type (file or comma-separated list).
- --channel _FILTER_
- Filter by channel (file or comma-separated list).
- -a, --ap
- Insert only access points.
- -q _SQL_, --query _SQL_
- Execute SQL query against the database.
- -o _FILE_, --output _FILE_
- Specify output filename for KML export.
- -n _NAME_, --name _NAME_
- Set KML layer name.
- -s, --silent
- Suppress output when adding access points.
- -d _LEVEL_, --debug _LEVEL_
- Debug information level.
FAQ
What is the giskismet command used for?
giskismet is a Perl-based tool that processes wireless recon data gathered by Kismet and stores it in a SQLite database. Users can run SQL queries against the data and generate Google Earth KML files for mapping access point locations. The tool supports filtering by BSSID, ESSID, encryption type, and channel, making it useful for wireless security assessments and site surveys.
How do I run a basic giskismet example?
Run `giskismet -x [kismet-output.netxml]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -h, --help do in giskismet?
Display help.