Wardriving
Wardriving
Does anyone know of any good mapping progz for wardriving?
[url=http://sigs.spywire.net/index.html][img]http://sigs.spywire.net/sig3.gif[/img][/url]
- bad_brain
- Site Owner
- Posts: 11638
- Joined: 06 Apr 2005, 16:00
- 19
- Location: In your eye floaters.
- Contact:
Hey mate...
What OS and what program are you using?
If you´re using Netstumbler/Windows get Stumb Verter, it´s in the dl-section. You can export the Netstumbler log files into Microsoft MapPoint 2004 maps with it, very comfy...(should be np to get MapPoint somewhere )
Also really nice is "Netstumbler 2 GPS Trackmaker", it´s also in the dl-section, you don´t need MS´s Mappoint for it...
If you´re using Linux/Kismet you need to have Perl installed, then you can simply convert the Kismet output files into Mappoint files with this script:
Hope this helped a bit...
Oops,here´s the link to GPS Trackmaker if you need it: http://www.gpstm.com/
What OS and what program are you using?
If you´re using Netstumbler/Windows get Stumb Verter, it´s in the dl-section. You can export the Netstumbler log files into Microsoft MapPoint 2004 maps with it, very comfy...(should be np to get MapPoint somewhere )
Also really nice is "Netstumbler 2 GPS Trackmaker", it´s also in the dl-section, you don´t need MS´s Mappoint for it...
If you´re using Linux/Kismet you need to have Perl installed, then you can simply convert the Kismet output files into Mappoint files with this script:
Code: Select all
#
# perl script for kimset .csv files konvert 2 mappoint 2004 english
#
# (c) by wardriving.ch
#
# release: 1.0b
# date : 24.Nov 2003
#
#
#
#
# creat different output files
#
# map file with all AP Points
# null file with AP, who have Lat. 0.00000
# wep file with AP WEP = YES
# nowep file with AP WEP = NO
# total file with WEP/NOWEP feld
#
#
#
#################
#
# file selection
#
#################
print "Enter filename: ";
my $filename =<>;
chomp $filename;
my $outputfile = ">map_".$filename;
my $outputfile1 = ">null_".$filename;
my $outputfile2 = ">wep_".$filename;
my $outputfile3 = ">nowep_".$filename;
my $outputfile4 = ">total_".$filename;
open IN, $filename or die "Cannot open ".$filename." for reading";
open MAPOUT, $outputfile or die "Cannot open ".$outputfile." for writing";
open NIXKOR, $outputfile1 or die "Cannot open ".$outputfile1." for writing";
open WEPOUT, $outputfile2 or die "Cannot open ".$outputfile2." for writing";
open NOWEPOUT, $outputfile3 or die "Cannot open ".$outputfile3." for writing";
open TOTAL, $outputfile4 or die "Cannot open ".$outputfile4." for writing";
#################
#
# file selection
#
# Writing Header Map-Point German needs: Breitengrad Längengrad Name Name2
#
#################
print "Processing............\n";
print MAPOUT "Latitude\tLongitude\tName\tAddress 1\tName 2\n";
print NIXKOR "Latitude\tLongitude\tName\tAddress 1\tName 2\n";
print WEPOUT "Latitude\tLongitude\tName\tAddress 1\tName 2\n";
print NOWEPOUT "Latitude\tLongitude\tName\tAddress 1\tName 2\n";
print TOTAL "Latitude\tLongitude\tName\tAddress 1\tName 2\n";
#################
#
# read / processing / write Data
#
#################
while (<IN>)
{
chomp;
if (m/^Network/)
{
print "Found a header line - skipping.\n";
}
else
{
($Lat, $Long, $SSID, $MAC, $FLAG) = (split /;/)[18,19,2,3,7];
chomp $Lat, $Long, $SSID, $MAC, $FLAG;
$FLAG=~s/Yes/WEP/;
$FLAG=~s/No/NOWEP/;
chomp $Lat, $Long, $SSID, $MAC, $FLAG;
print $Lat,"\t", $Long, "\t", $SSID,"\t", $MAC,"\t", $FLAG,"\n";
print TOTAL $Lat,"\t", $Long, "\t", $SSID,"\t", $MAC,"\t", $FLAG,"\n";
#################
#
# write AP with NO Lat / Log to a sep. file
#
#################
if (($Lat =~ "0.000000") or ($Long =~ "-0.000000"))
{
print "NULL Koordinaten LAT\n";
print NIXKOR $Lat,"\t", $Long, "\t", $SSID,"\t", $MAC,"\t", $FLAG,"\n";
if ( $FLAG =~ "\^WEP\$")
{
print WEPOUT $Lat,"\t", $Long, "\t", $SSID,"\t", $MAC,"\t", $FLAG,"\n";
}
elsif ( $FLAG =~ "NOWEP" )
{
print NOWEPOUT $Lat,"\t", $Long, "\t", $SSID,"\t", $MAC,"\t", $FLAG,"\n";
}
else
{
print NOWEPOUT $Lat,"\t", $Long, "\t", $SSID,"\t", $MAC,"\t", $FLAG,"\n";
}
}
#################
#
# write AP to the mapfile / wepfile / nowepfile
#
#################
else
{
print MAPOUT $Lat,"\t", $Long, "\t", $SSID,"\t", $MAC,"\t", $FLAG,"\n";
if ( $FLAG =~ "\^WEP\$")
{
print WEPOUT $Lat,"\t", $Long, "\t", $SSID,"\t", $MAC,"\t", $FLAG,"\n";
}
elsif ( $FLAG =~ "NOWEP" )
{
print NOWEPOUT $Lat,"\t", $Long, "\t", $SSID,"\t", $MAC,"\t", $FLAG,"\n";
}
else
{
print NOWEPOUT $Lat,"\t", $Long, "\t", $SSID,"\t", $MAC,"\t", $FLAG,"\n";
}
}
}
}
#################
#
# cleanup
#
#################
print "Finished!\n";
close IN;
close MAPOUT;
close NIXKOR;
close NOWEPOUT;
close WEPOUT;
close TOTAL;
Oops,here´s the link to GPS Trackmaker if you need it: http://www.gpstm.com/
Last edited by bad_brain on 28 Jun 2005, 14:13, edited 1 time in total.