Changeset 103
- Timestamp:
- 09/25/06 23:46:13 (2 years ago)
- Files:
-
- Pyramid/dist/usr/local/bin (added)
- Pyramid/dist/usr/local/bin/kismet (added)
- Pyramid/dist/usr/local/bin/kismet_client (added)
- Pyramid/dist/usr/local/bin/kismet_drone (added)
- Pyramid/dist/usr/local/bin/kismet_server (added)
- Pyramid/dist/usr/local/etc/kismet.conf (modified) (7 diffs)
- Pyramid/dist/usr/local/etc/kismet_drone.conf (modified) (1 diff)
- Pyramid/dist/usr/local/etc/kismet_ui.conf (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Pyramid/dist/usr/local/etc/kismet.conf
r1 r103 5 5 6 6 # Version of Kismet config 7 version=200 4.03.devel.a8 9 # Name of server (Purely for organi ational purposes)7 version=2005.06.R1 8 9 # Name of server (Purely for organizational purposes) 10 10 servername=Kismet 11 11 12 12 # User to setid to (should be your normal user) 13 suiduser= kismet13 suiduser=your_user_here 14 14 15 15 # Sources are defined as: 16 # source=cardtype,interface,name[,initialchannel] 17 # Card types and required drivers are listed in the README. 16 # source=sourcetype,interface,name[,initialchannel] 17 # Source types and required drivers are listed in the README under the 18 # CAPTURE SOURCES section. 18 19 # The initial channel is optional, if hopping is not enabled it can be used 19 20 # to set the channel the interface listens on. 20 #source=cisco,eth0,ciscosource 21 # Other common source configs: 22 #source=prism2,wlan0,prism2source 23 #source=prism2_avs,wlan0,newprism2source 24 # source=orinoco,eth0,orinocosource 25 # An example source line with an initial channel: 26 # source=orinoco,eth0,silver,11 27 # 28 # For Metrix boxes: 29 #source=hostap,wlan0,hostapsource 30 #source=hostap,wlan1,hostapsource 31 #source=madwifi_ag,ath0,ath0 32 #source=madwifi_ag,ath1,ath1 21 # YOU MUST CHANGE THIS TO BE THE SOURCE YOU WANT TO USE 22 source=none,none,addme 33 23 34 24 # Comma-separated list of sources to enable. This is only needed if you defined … … 107 97 # numbers (/24) 108 98 allowedhosts=127.0.0.1 99 # Address to bind to. Should be an address already configured already on 100 # this host, reverts to INADDR_ANY if specified incorrectly. 101 bindaddress=127.0.0.1 109 102 # Maximum number of concurrent GUI's 110 103 maxclients=5 111 104 112 105 # Do we have a GPS? 113 gps= false106 gps=true 114 107 # Host:port that GPSD is running on. This can be localhost OR remote! 115 108 gpshost=localhost:2947 … … 138 131 139 132 # Alerts to be reported and the throttling rates. 140 # alert=name,throttle/unit,burst 133 # alert=name,throttle/unit,burst/unit 141 134 # The throttle/unit describes the number of alerts of this type that are 142 135 # sent per time unit. Valid time units are second, minute, hour, and day. 143 # Burst describes the number of alerts sent before throttling takes place.136 # Burst rates control the number of packets sent at a time 144 137 # For example: 145 # alert=FOO,10/min,5 146 # Would allow 5 alerts through before throttling is enabled, and will then 147 # limit the number of alerts to 10 per minute. 138 # alert=FOO,10/min,5/sec 139 # Would allow 5 alerts per second, and 10 alerts total per minute. 148 140 # A throttle rate of 0 disables throttling of the alert. 149 141 # See the README for a list of alert types. 150 alert=NETSTUMBLER,5/min,2 151 alert=WELLENREITER,5/min,2 152 alert=LUCENTTEST,5/min,2 153 alert=DEAUTHFLOOD,5/min,4 154 alert=BCASTDISCON,5/min,4 155 alert=CHANCHANGE,5/min,4 156 alert=AIRJACKSSID,5/min,2 157 alert=PROBENOJOIN,5/min,2 158 alert=DISASSOCTRAFFIC,5/min,2 159 alert=NULLPROBERESP,5/min,5 142 alert=NETSTUMBLER,10/min,1/sec 143 alert=WELLENREITER,10/min,1/sec 144 alert=LUCENTTEST,10/min,1/sec 145 alert=DEAUTHFLOOD,10/min,2/sec 146 alert=BCASTDISCON,10/min,2/sec 147 alert=CHANCHANGE,5/min,1/sec 148 alert=AIRJACKSSID,5/min,1/sec 149 alert=PROBENOJOIN,10/min,1/sec 150 alert=DISASSOCTRAFFIC,10/min,1/sec 151 alert=NULLPROBERESP,10/min,1/sec 152 alert=BSSTIMESTAMP,10/min,1/sec 160 153 161 154 # Known WEP keys to decrypt, bssid,hexkey. This is only for networks where … … 199 192 # Server's path to Festival 200 193 festival=/usr/bin/festival 194 # Are we using festival lite? If so, set the above "festival" path to also 195 # point to the "flite" binary 196 flite=false 201 197 # How do we speak? Valid options: 202 198 # speech Normal speech … … 227 223 # recent versions of GPSDrive's native support of Kismet. 228 224 waypoints=false 229 # GPS Mapwaypoint file. This WILL be truncated.225 # GPSDrive waypoint file. This WILL be truncated. 230 226 waypointdata=%h/.gpsdrive/way_kismet.txt 227 # Do we want ESSID or BSSID as the waypoint name ? 228 waypoint_essid=false 231 229 232 230 # How many alerts do we backlog for new clients? Only change this if you have … … 257 255 # to see what they are, but someting is wrong with them that prevents us from 258 256 # completely dissecting them. Logging these is usually not a bad idea. 259 corruptlog= false257 corruptlog=true 260 258 261 259 # Do we log beacon packets or do we filter them out of the dumpfile 262 beaconlog= false260 beaconlog=true 263 261 264 262 # Do we log PHY layer packets or do we filter them out of the dumpfile 265 phylog= false263 phylog=true 266 264 267 265 # Do we mangle packets if we can decrypt them or if they're fuzzy-detected 268 mangledatalog= false266 mangledatalog=true 269 267 270 268 # Do we do "fuzzy" crypt detection? (byte-based detection instead of 802.11 … … 272 270 # valid option: Comma seperated list of card types to perform fuzzy detection 273 271 # on, or 'all' 274 fuzzycrypt=wtapfile,wlanng,wlanng_legacy,wlanng_avs,hostap,wlanng_wext 272 fuzzycrypt=wtapfile,wlanng,wlanng_legacy,wlanng_avs,hostap,wlanng_wext,ipw2200,ipw2915 273 274 # Do we use network-classifier fuzzy-crypt detection? This means we expect 275 # packets that are associated with an encrypted network to be encrypted too, 276 # and we process them by the same fuzzy compare. 277 # This essentially replaces the fuzzycrypt per-source option. 278 netfuzzycrypt=true 275 279 276 280 # What type of dump do we generate? Pyramid/dist/usr/local/etc/kismet_drone.conf
r1 r103 17 17 # numbers (/24) 18 18 allowedhosts=127.0.0.1 19 # Address to bind to. Should be an address already configured already on 20 # this host, reverts to INADDR_ANY if specified incorrectly. 21 bindaddress=127.0.0.1 19 22 # Maximum number of concurrent stream attachments 20 23 maxclients=5 21 24 22 # Packet sources: 23 # source=capture_cardtype,capture_interface,capture_name 24 # Card type - Specifies the type of device. It can be one of: 25 # cisco - Cisco card with Linux Kernel drivers 26 # cisco_cvs - Cisco card with CVS Linux drivers 27 # cisco_bsd - Cisco on *BSD 28 # prism2 - Prism2 using wlan-ng drivers with pcap support (all 29 # current versions support pcap) 30 # prism2_hostap - Prism2 using hostap drivers 31 # prism2_legacy - Prism2 using wlan-ng drivers without pcap support (0.1.9) 32 # prism2_bsd - Prism2 on *BSD 33 # orinoco - Orinoco cards using Snax's patched driers 34 # generic - Generic card with no specific support. You will have 35 # to put this into monitor mode yourself! 36 # wsp100 - WSP100 embedded remote sensor. 37 # wtapfile - Saved file of packets readable by libwiretap 38 # ar5k - ar5k 802.11a using the vt_ar5k drivers 39 # Capture interface - Specifies the network interface Kismet will watch for 40 # packets to come in on. Typically "ethX" or "wlanX". For the WSP100 capture 41 # engine, the WSP100 device sends packets via a UDP stream, so the capture 42 # interface should be in the form of host:port where 'host' is the WSP100 and 43 # 'port' is the local UDP port that it will send data to. 44 # Capture Name - The name Kismet uses for this capture source. This is the 45 # name used to specify what sources to enable. 46 # 47 # To enable multiple sources, specify a source line for each and then use the 48 # enablesources line to enable them. For example: 49 # source=prism2,wlan0,prism 50 # source=cisco,eth0,cisco 51 52 source=cisco,eth0,Kismet-Drone 25 # Sources are defined as: 26 # source=sourcetype,interface,name[,initialchannel] 27 # Source types and required drivers are listed in the README. 28 # The initial channel is optional, if hopping is not enabled it can be used 29 # to set the channel the interface listens on. 30 # YOU MUST CHANGE THIS TO BE THE SOURCE YOU WANT TO USE 31 source=none,none,addme 53 32 54 33 # Comma-separated list of sources to enable. This is only needed if you wish Pyramid/dist/usr/local/etc/kismet_ui.conf
r1 r103 2 2 3 3 # Version of Kismet config 4 version= Feb.04.01a4 version=2004.10.R1 5 5 6 6 # Do we show the intro window? … … 23 23 # NOT to be confused with "sound" option later, which is for the SERVER to make 24 24 # noise on whatever host it's running on. 25 sound= false25 sound=true 26 26 # Path to sound player 27 27 soundplay=/usr/bin/play … … 48 48 # Do we autogroup data-only networks? 49 49 autogroup_data=true 50 # Do we autogroup adhoc networks? 51 autogroup_adhoc=true 50 52 51 53 # Display battery status? 52 apm= false54 apm=true 53 55 54 56 # Does the GUI talk to us with Festival? … … 56 58 # Where is festival located for the GUI? 57 59 festival=/usr/bin/festival 60 # Are we using festival light? If so, point the above "festival" path to the 61 # "flite" binary. 62 flite=false 58 63 # How do we speak? Valid options: 59 64 # speech Normal speech
