|
| 1 | +# TAGLINE |
| 2 | + |
| 3 | +wireless recon visualization tool for Kismet data |
| 4 | + |
| 5 | +# TLDR |
| 6 | + |
| 7 | +**Import Kismet NETXML data** |
| 8 | + |
| 9 | +```giskismet -x [kismet-output.netxml]``` |
| 10 | + |
| 11 | +**Query for specific access points by ESSID** |
| 12 | + |
| 13 | +```giskismet -q "select * from wireless where ESSID='[MyNetwork]'"``` |
| 14 | + |
| 15 | +**Export results to KML file** |
| 16 | + |
| 17 | +```giskismet -x [data.netxml] -o [output.kml]``` |
| 18 | + |
| 19 | +**Filter by encryption type** |
| 20 | + |
| 21 | +```giskismet -x [data.netxml] --encryption [WPA]``` |
| 22 | + |
| 23 | +**Filter by BSSID** |
| 24 | + |
| 25 | +```giskismet -x [data.netxml] --bssid [AA:BB:CC:DD:EE:FF]``` |
| 26 | + |
| 27 | +# SYNOPSIS |
| 28 | + |
| 29 | +**giskismet** [_options_] |
| 30 | + |
| 31 | +# PARAMETERS |
| 32 | + |
| 33 | +**-h**, **--help** |
| 34 | +> Display help. |
| 35 | +
|
| 36 | +**-v**, **--version** |
| 37 | +> Display version. |
| 38 | +
|
| 39 | +**-x** _FILE_, **--xml** _FILE_ |
| 40 | +> Parse Kismet NETXML file. |
| 41 | +
|
| 42 | +**--csv** _FILE_ |
| 43 | +> Parse Kismet CSV file. |
| 44 | +
|
| 45 | +**--bssid** _FILTER_ |
| 46 | +> Filter by BSSID (file or comma-separated list). |
| 47 | +
|
| 48 | +**--essid** _FILTER_ |
| 49 | +> Filter by ESSID (file or comma-separated list). |
| 50 | +
|
| 51 | +**--encryption** _FILTER_ |
| 52 | +> Filter by encryption type (file or comma-separated list). |
| 53 | +
|
| 54 | +**--channel** _FILTER_ |
| 55 | +> Filter by channel (file or comma-separated list). |
| 56 | +
|
| 57 | +**-a**, **--ap** |
| 58 | +> Insert only access points. |
| 59 | +
|
| 60 | +**-q** _SQL_, **--query** _SQL_ |
| 61 | +> Execute SQL query against the database. |
| 62 | +
|
| 63 | +**-o** _FILE_, **--output** _FILE_ |
| 64 | +> Specify output filename for KML export. |
| 65 | +
|
| 66 | +**-n** _NAME_, **--name** _NAME_ |
| 67 | +> Set KML layer name. |
| 68 | +
|
| 69 | +**-s**, **--silent** |
| 70 | +> Suppress output when adding access points. |
| 71 | +
|
| 72 | +**-d** _LEVEL_, **--debug** _LEVEL_ |
| 73 | +> Debug information level. |
| 74 | +
|
| 75 | +# DESCRIPTION |
| 76 | + |
| 77 | +**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. |
| 78 | + |
| 79 | +The tool supports filtering by BSSID, ESSID, encryption type, and channel, making it useful for wireless security assessments and site surveys. |
| 80 | + |
| 81 | +# CAVEATS |
| 82 | + |
| 83 | +Requires Kismet NETXML output files as input. GPS data must be present in the Kismet capture for meaningful KML output. The tool is deprecated in favor of newer Kismet built-in visualization features. |
| 84 | + |
| 85 | +# SEE ALSO |
| 86 | + |
| 87 | +[kismet](/man/kismet)(1), [aircrack-ng](/man/aircrack-ng)(1) |
| 88 | + |
0 commit comments