My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Feb 26, 2009
    issue 5 (it doesn't show orange points for "only WEP" networks, it sh...) commented on by strabla   -   I think it's the same bug, fixed in two different ways. Is there a new official release with the fix in it?
    I think it's the same bug, fixed in two different ways. Is there a new official release with the fix in it?
  • Feb 25, 2009
    issue 5 (it doesn't show orange points for "only WEP" networks, it sh...) Status changed by richard.sammet   -   we need to check if this is a dupplicate of issue #1 (http://code.google.com/p/kisgearth/issues/detail?id=1)
    Status: Accepted
    we need to check if this is a dupplicate of issue #1 (http://code.google.com/p/kisgearth/issues/detail?id=1)
    Status: Accepted
  • Feb 25, 2009
    issue 1 (kisgearth doesn't show correct color for wep networks) Labels changed by richard.sammet   -  
    Labels: Priority-High Priority-Medium
    Labels: Priority-High Priority-Medium
  • Feb 25, 2009
    issue 5 (it doesn't show orange points for "only WEP" networks, it sh...) reported by richard.sammet   -   Added on behalf of "Ruggero Strabla" -- I don't know perl, but I think I found where is the problem (around line 940): foreach $E (@{$N->{'encryption'}}) { push(@{$networks[$net_count]->nencryption}, $E); } When a network is only WEP, the foreach doesn't work because $N->{'encryption'} is not an array, so I added this code after the foreach to get things working: if(($N->{'encryption'}) eq WEP) { push(@{$networks[$net_count]->nencryption}, WEP); } And finally I get the orange cyrcles in my map :-)
    Added on behalf of "Ruggero Strabla" -- I don't know perl, but I think I found where is the problem (around line 940): foreach $E (@{$N->{'encryption'}}) { push(@{$networks[$net_count]->nencryption}, $E); } When a network is only WEP, the foreach doesn't work because $N->{'encryption'} is not an array, so I added this code after the foreach to get things working: if(($N->{'encryption'}) eq WEP) { push(@{$networks[$net_count]->nencryption}, WEP); } And finally I get the orange cyrcles in my map :-)
  • Feb 21, 2009
    issue 4 (error handling for scrambled input files) commented on by richard.sammet   -   added on the behalf of Nathan.
    added on the behalf of Nathan.
  • Feb 21, 2009
    issue 3 (wildcard support for commandline opts) commented on by richard.sammet   -   added on the behalf of Nathan.
    added on the behalf of Nathan.
  • Feb 21, 2009
    issue 4 (error handling for scrambled input files) reported by richard.sammet   -   Some error simple error handling for dealing with incomplete .gps files. For example the last line of most of my .gps files usually ends up looking like this: <gps-point bssid="00:1E:2A:59:51:6C Which is clearly missing the rest of the line, as well as the </gps- run> tag. This usually happens when kismet is abruptly stopped. I don't *think* the xml files suffer from this possibly due to the way kismet writes out the xml.
    Some error simple error handling for dealing with incomplete .gps files. For example the last line of most of my .gps files usually ends up looking like this: <gps-point bssid="00:1E:2A:59:51:6C Which is clearly missing the rest of the line, as well as the </gps- run> tag. This usually happens when kismet is abruptly stopped. I don't *think* the xml files suffer from this possibly due to the way kismet writes out the xml.
  • Feb 21, 2009
    issue 3 (wildcard support for commandline opts) reported by richard.sammet   -   Wildcard support for both xml and gps files in the commandline would be awesome.
    Wildcard support for both xml and gps files in the commandline would be awesome.

Older

  • Dec 20, 2008
    issue 1 (kisgearth doesn't show correct color for wep networks) Owner changed by richard.sammet   -  
    Owner: boris.choinka
    Owner: boris.choinka
  • Nov 30, 2008
    issue 1 (kisgearth doesn't show correct color for wep networks) changed by richard.sammet   -  
    Status: Accepted
    Labels: OpSys-All
    Status: Accepted
    Labels: OpSys-All
  • Nov 30, 2008
    issue 1 (kisgearth doesn't show correct color for wep networks) commented on by richard.sammet   -   added on behalf of: Bartos-Elekes Zsolt <muszi@kite.hu>
    added on behalf of: Bartos-Elekes Zsolt <muszi@kite.hu>
  • Nov 30, 2008
    issue 1 (kisgearth doesn't show correct color for wep networks) reported by richard.sammet   -   I really enjoy kisgearth, but I found a bug: it doesn't show correct color for WEP-only encrypted networks when color-coding based on encryption (it shows the unencrypted color). Here is a patch to fix it: --- kisgearth.pl.orig 2008-08-28 19:39:18.000000000 +0200 +++ kisgearth.pl 2008-09-15 09:09:37.000000000 +0200 @@ -1427,7 +1427,7 @@ $net_color = $GREEN; }elsif(grep(/TKIP/i, @{$networks[$tmp_count]->nencryption}) == 1) { $net_color = $YELLOW; - }elsif(grep(/WEP/i, @{$networks[$tmp_count]->nencryption}) == 1) { + }elsif ($networks[$tmp_count]->nwep eq "true") { $net_color = $ORANGE; }else{ $net_color = $RED;
    I really enjoy kisgearth, but I found a bug: it doesn't show correct color for WEP-only encrypted networks when color-coding based on encryption (it shows the unencrypted color). Here is a patch to fix it: --- kisgearth.pl.orig 2008-08-28 19:39:18.000000000 +0200 +++ kisgearth.pl 2008-09-15 09:09:37.000000000 +0200 @@ -1427,7 +1427,7 @@ $net_color = $GREEN; }elsif(grep(/TKIP/i, @{$networks[$tmp_count]->nencryption}) == 1) { $net_color = $YELLOW; - }elsif(grep(/WEP/i, @{$networks[$tmp_count]->nencryption}) == 1) { + }elsif ($networks[$tmp_count]->nwep eq "true") { $net_color = $ORANGE; }else{ $net_color = $RED;
  • Nov 26, 2008
    r23 (fixed a stupid -V option bug... silly me! ) committed by richard.sammet   -   fixed a stupid -V option bug... silly me!
    fixed a stupid -V option bug... silly me!
  • Nov 26, 2008
    r22 (fixed a problem with the channel ordering. now all channels ...) committed by richard.sammet   -   fixed a problem with the channel ordering. now all channels should be sorted the right way (probes on channel 0 - also ;)
    fixed a problem with the channel ordering. now all channels should be sorted the right way (probes on channel 0 - also ;)
  • Aug 28, 2008
    r21 (finalizing stuff for version 0.01f. ) committed by richard.sammet   -   finalizing stuff for version 0.01f.
    finalizing stuff for version 0.01f.
  • Aug 21, 2008
    r20 (added an option (-s / --use-signal) to activate the use of t...) committed by richard.sammet   -   added an option (-s / --use-signal) to activate the use of the signal strength for network position calculation.
    added an option (-s / --use-signal) to activate the use of the signal strength for network position calculation.
  • Aug 04, 2008
    WarXingHowto (a quick and dirty warXing howto.) Wiki page edited by richard.sammet
  • Aug 03, 2008
    r18 (updated the project url in the README file... ) committed by richard.sammet   -   updated the project url in the README file...
    updated the project url in the README file...
  • Aug 01, 2008
    WarXingHowto (a quick and dirty warXing howto.) Wiki page edited by richard.sammet
  • Aug 01, 2008
    WarXingHowto (a quick and dirty warXing howto.) Wiki page edited by richard.sammet
  • Aug 01, 2008
    2 Wiki pages changed by richard.sammet   -  
    Deleted PageName
    Deleted PageName
  • Aug 01, 2008
    PageName (a quick and dirty warXing howto.) Wiki page added by richard.sammet
  • Aug 01, 2008
    r13 (a "little" improvement wich should help to make the position...) committed by richard.sammet   -   a "little" improvement wich should help to make the positioning more accurate.
    a "little" improvement wich should help to make the positioning more accurate.
  • Jul 30, 2008
    r12 (some CHANGES changes ;) ) committed by richard.sammet   -   some CHANGES changes ;)
    some CHANGES changes ;)
  • Jul 30, 2008
    r11 (added a new version tag for 0.01e. ) committed by richard.sammet   -   added a new version tag for 0.01e.
    added a new version tag for 0.01e.
  • Jul 30, 2008
    FeatureList (Planned and already implemented features.) Wiki page edited by richard.sammet
  • Jul 30, 2008
    r9 (* added an option (-G/--gps) to tell kisgearth to make use o...) committed by richard.sammet   -   * added an option (-G/--gps) to tell kisgearth to make use of the kismet collected gps data * changed the color management, added alot more colors * colors for the encryption states changed: - AES-CCM = GREEN - TKIP = YELLOW - WEP = ORANGE - None = RED
    * added an option (-G/--gps) to tell kisgearth to make use of the kismet collected gps data * changed the color management, added alot more colors * colors for the encryption states changed: - AES-CCM = GREEN - TKIP = YELLOW - WEP = ORANGE - None = RED
  • Jul 29, 2008
    FeatureList (Planned and already implemented features.) Wiki page edited by richard.sammet
  • Jul 29, 2008
    FeatureList (Planned and already implemented features.) Wiki page edited by richard.sammet
  • Jul 29, 2008
    FeatureList (Planned and already implemented features.) Wiki page added by richard.sammet
  • Jul 29, 2008
    PageName Wiki page deleted by richard.sammet
  • Jul 29, 2008
    PageName (Planned and already implemented features.) Wiki page added by richard.sammet
  • Jul 29, 2008
    r3 (added a version 0.01d tag... ) committed by richard.sammet   -   added a version 0.01d tag...
    added a version 0.01d tag...
  • Jul 28, 2008
    r2 (initial checking of version 0.01d. ) committed by richard.sammet   -   initial checking of version 0.01d.
    initial checking of version 0.01d.
  • Jul 27, 2008
    Project kisgearth created by richard.sammet   -   kisgearth is a small perl script that gives you the possibility to convert your kismet xml logfiles to google earth kml files.
    kisgearth is a small perl script that gives you the possibility to convert your kismet xml logfiles to google earth kml files.
  • Jul 27, 2008
    Project kisgearth created by richard.sammet   -   kisgearth is a small perl script that gives you the possibility to convert your kismet xml logfiles to google earth kml files.
    kisgearth is a small perl script that gives you the possibility to convert your kismet xml logfiles to google earth kml files.
  • Jul 27, 2008
    Project kisgearth created by richard.sammet   -   kisgearth is a small perl script that gives you the possibility to convert your kismet xml logfiles to google earth kml files.
    kisgearth is a small perl script that gives you the possibility to convert your kismet xml logfiles to google earth kml files.
 
Hosted by Google Code