![]() |
|
|||||||
| Register | Search | Today's Posts | Mark Forums Read |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|
#46 (permalink) |
|
Did you do the math?
Join Date: Apr 2002
Location: Villa Straylight
Posts: 10,096
|
liftman
jaylang@columbus.rr.com The IP Address is: 65.24.25.68. The host name is: cpe-65-24-25-68.columbus.res.rr.com.
__________________
Thorn "I'm The Doctor. I'm a Time Lord. I am from the planet Gallifrey in the constellation Kasterborous. I'm 903 years old and I am the man who is going to save your lives and all 6 billion people on the planet below... You got a problem with that?" |
|
|
|
|
|
#47 (permalink) | |
|
Heeere's your sign!
Join Date: May 2002
Location: Mexico Beach, FL
Posts: 1,166
|
Quote:
I spent the morning re-cabling a hotel network to provide internet access in front of the firewall. They are doing a fundraiser concert tonight and doing a webcast. They have a garage sale going on at the hotel today and tomorrow. Raised about $5K this morning. The hotel owner is going to match whatever the sale makes. Have you ever seen a garage sale where nobody haggles over the price? They just pay, and say "keep the change". My wife took a load of clothes up to a family staying there that lost everything. All the evacuees are staying free until they can do something permanent. People are coming up and offering rental homes on the beach and helping find jobs. It is now off season after this weekend, and I think all the $3500 per week homes will be filled up soon with refugees. Everyone that has been here very long understands hurricanes and is going out of their way to help. It could have been us very easily. The Friday before it hit, we were dead center of the projected path. Thanks for asking. MikeP
__________________
Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote. -- Benjamin Franklin, 1759 |
|
|
|
|
|
|
#48 (permalink) | |
|
Psychic Amish Stumbler
Join Date: Jul 2004
Location: Virginville, BlueBall, Bird In Hand, Intercourse, Paradise, PA
Posts: 11,837
|
Quote:
Hmm, now that you're in Columbus, OH, I wonder if their PD would be interested in an email with this thread attached. Then you can challenge your misconception of no laws relating to your theft in court. After that, you shall surely burn in hell.
__________________
"One of these days, I'm going to cut you to pieces." If you're offended by this post, please feel free to report it to one of the many helpful moderators of this forum. Thank you. |
|
|
|
|
|
|
#49 (permalink) |
|
Humourless EuroMod.
Join Date: Mar 2004
Location: City of Mermaids, Denmark
Posts: 6,813
|
So sayeth the preacher, and the preacher speaketh the gospel in the good book from the Church of WiFi :
"Connecteth thy to unauthorised networks, then thy is wicked and banneth thy be for eternity !" Dutch
__________________
All your answers are belong to Google. SEARCH DAMMIT! Warning. Warning. Low C8H10N4O2 level detected. Operator halted.... Last edited by Dutch : 09-03-2005 at 07:19 PM. |
|
|
|
|
|
#50 (permalink) | ||
|
I amuse you?
Join Date: Dec 2003
Posts: 9,127
|
.....
Quote:
Quote:
Last edited by wrzwaldo : 09-03-2005 at 05:20 PM. |
||
|
|
|
|
|
#51 (permalink) |
|
Mystical Philosopher
Join Date: Sep 2004
Posts: 3
|
I'm no expert, but I'm still having difficulty getting this conversion done. I'm using PXPerl (I know NOTHING about perl, by the way). I tried doing this thing with the fullsum.txt file and running the script, but thus far, no dice. Street Stumbler, well, that doesn't work for anything. I suppose if I weren't such a retard in the realm of programming, then I'd be doing a little better here : )
Anyone have any advice? BTW, been driving around Montgomery to familiarize myself with the area, and of course, I keep my laptop with me. Much of the heart of the city is wireless, and it's locked down for the most part. Of the few that are "open," they show up as fake on netstumbler. I do the same thing at home. I have my usable access point/router locked down, and I keep a second access point open. It's not connected to anything, but handy nonetheless : ) |
|
|
|
|
|
#52 (permalink) | |
|
Did you do the math?
Join Date: Apr 2002
Location: Villa Straylight
Posts: 10,096
|
Quote:
Try this script with ActivePERL. They are both known to have worked for hundreds of users. www.activeperl.com v1ALL.pl Code:
# V1ALL.TXT
# This script creates files for importing into MS S&T
# Export a summary text file from NS, and name it "Fullsum.txt".
# Then run the script in PERL. The script will create four files: wep_ap.txt,
# nowep_ap.txt, wep_ah.txt, and nowep_ah.txt. You can then import them
# to S&T using different symbols.
#
#The files are broken down thusly:
#
# Access Points running encryption: wep_ap.txt
# Access Points without encryption: nowep_ap.txt
# Ad Hoc networks running encryption: wep_ah.txt
# Ad Hoc networks without encryption: nowep_ah.txt
#
############################################################
open(FILE, 'FULLSUM.txt');
@file = <FILE>;
close FILE;
open (FILE2, '>>wep_ap.txt');
open (FILE3, '>>nowep_ap.txt');
open (FILE4, '>>wep_ah.txt');
open (FILE5, '>>nowep_ah.txt');
#open (FILE6, '>>debug.txt');
#FILE2: Access Points with WEP
#FILE3: Access Points without WEP
#FILE4: Ad Hoc networks with WEP
#FILE5: Ad Hoc networks without WEP
#FILE6: Debugging text file
print FILE2 "Latitude,Longitude,Name,Name2\n";
print FILE3 "Latitude,Longitude,Name,Name2\n";
print FILE4 "Latitude,Longitude,Name,Name2\n";
print FILE5 "Latitude,Longitude,Name,Name2\n";
while ($line = shift(@file))
{
#chomp;
if ($line =~ /^#/)
{
print "Found a header line - skipping.\n";
print $line;
}
else
{
print "Found a data line - processing...\n";
@line = split(/\t/, $line);
#Replace N and E for +, and S and W for - in the Longitude and Latitude
#Remove spaces
@line[0] =~ s/N /+/;
@line[0] =~ s/S /-/;
@line[1] =~ s/E /+/;
@line[1] =~ s/W /-/;
@line[2] =~ s/\( //;
@line[2] =~ s/ \)//;
@line[3] =~ s/\( //;
@line[3] =~ s/ \)//;
@line[4] =~ s/\( //;
@line[4] =~ s/ \)//;
$hex = "0x" . @line[8];
$dec = hex $hex;
$test = $dec & 16 ;
$nettype = @line[3];
# print "$nettype\n";
# print FILE6 "$nettype\n";
# if ($nettype eq "BSS")
# {
# print FILE6 "$nettype\n";
# }
# elsif ($nettype eq "ad-hoc")
# {
# print FILE6 "$nettype\n";
# }
if ( @line[0] ne "0.0000000" )
{
#Test for WEP
if ($test == 16)
{
# Test for Network type
if ($nettype eq "BSS")
{
print FILE2 "@line[0],@line[1],@line[2],@line[4]\n";
# print FILE6 "AP WEP\t@line[2]\t@line[8]\t$hex\t$dec\t$test\n";
# print "AP WEP\t@line[2]\t@line[3]\t@line[8]\t$hex\t$dec\t$test\n";
}
elsif ($nettype eq "ad-hoc")
{
print FILE4 "@line[0],@line[1],@line[2],@line[4]\n";
# print FILE6 "Ad-hoc WEP\t@line[2]\t@line[8]\t$hex\t$dec\t$test\n";
# print "Ad-hoc WEP\t@line[2]\t@line[3]\t@line[8]\t$hex\t$dec\t$test\n";
}
}
else
{
if ($nettype eq "BSS")
{
print FILE3 "@line[0],@line[1],@line[2],@line[4]\n";
# print FILE6 "AP No WEP\t@line[2]\t@line[8]\t$hex\t$dec\t$test\n";
# print "AP No WEP\t@line[2]\t@line[3]\t@line[8]\t$hex\t$dec\t$test\n";
}
elsif ($nettype eq "ad-hoc")
{
print FILE5 "@line[0],@line[1],@line[2],@line[4]\n";
# print FILE6 "Ad-hoc No WEP\t@line[2]\t@line[8]\t$hex\t$dec\t$test\n";
# print "Ad-hoc No WEP\t@line[2]\t@line[3]\t@line[8]\t$hex\t$dec\t$test\n";
}
}
}
}
}
close FILE2;
close FILE3;
close FILE4;
close FILE5;
#close FILE6;
__________________
Thorn "I'm The Doctor. I'm a Time Lord. I am from the planet Gallifrey in the constellation Kasterborous. I'm 903 years old and I am the man who is going to save your lives and all 6 billion people on the planet below... You got a problem with that?" Last edited by Thorn : 11-15-2005 at 02:13 PM. |
|
|
|
|
|
|
#54 (permalink) | |
|
Did you do the math?
Join Date: Apr 2002
Location: Villa Straylight
Posts: 10,096
|
Quote:
They files are broken down thusly: Access Points running encryption: wep_ap.txt Access Points without encryption: nowep_ap.txt Ad Hoc networks running encryption: wep_ah.txt Ad Hoc networks without encryption: nowep_ah.txt
__________________
Thorn "I'm The Doctor. I'm a Time Lord. I am from the planet Gallifrey in the constellation Kasterborous. I'm 903 years old and I am the man who is going to save your lives and all 6 billion people on the planet below... You got a problem with that?" |
|
|
|
|
|
|
#55 (permalink) |
|
Registered Member
Join Date: Jan 2006
Posts: 1
|
Redundancies
Well, I guess it's time to make my first post. Here goes nothing. I just got all my wardriving gear set up, and just went out and plotted about 20 AP's. I got home, converted the NS summary with the PERL script, and imported them into Streets and Trips.
My question is this: When I go on my next trip, and add those to Streets and Trips, will AP's I drive past again get imported a second time as well. For example, the Access Points on my street. If so, is there a way to filter them out, by MAC address perhaps, so I don't end up with 10 dots on my street all representing my neighbors AP? Thanks in advance, Blaine |
|
|
|
|
|
#56 (permalink) |
|
Where's my Guinness?
Join Date: Jun 2002
Location: Sq'rat on the loose!! Shoot 'im! (not you G8t)
Posts: 1,943
|
They will duplicate unless you merge the files to remove multiple entries. See beakmyn's sig for an app that can help.
__________________
When I was your age, television was called books. And this is a special book. It was the book my father used to read to me when I was sick, and I used to read it to your father. And today, I'm gonna read it to you. Rompipalle della Chiesa del WiFi SHAMELESS PLUG! "Are you trying to irritate my colon ? Because if you are, I'll shit all over you in such a way you'll end up in a sanatorium, never to be heard from again." --Dutch |
|
|
|
|
|
#57 (permalink) |
|
Registered Member
Join Date: Mar 2004
Posts: 4
|
Recently purchased Microsoft Streets and Maps w/gps and downloaded netstumbler. Attempting to do a town survey but I am having difficulty linking the open access points to the above mapping/gps software for ID purposes. I would appreciate a little written instruction on how to make the two apps and hardware play together. Thanks in advance, Steven
|
|
|
|
|
|
#58 (permalink) | |
|
Psychic Amish Stumbler
Join Date: Jul 2004
Location: Virginville, BlueBall, Bird In Hand, Intercourse, Paradise, PA
Posts: 11,837
|
Quote:
__________________
"One of these days, I'm going to cut you to pieces." If you're offended by this post, please feel free to report it to one of the many helpful moderators of this forum. Thank you. |
|
|
|
|
|
|
#59 (permalink) | |
|
I amuse you?
Join Date: Dec 2003
Posts: 9,127
|
Quote:
|
|
|
|
|
|
|
#60 (permalink) | |
|
Badger in heat
Join Date: Jun 2004
Location: Sacramento, CA
Posts: 414
|
Quote:
Justin |
|
|
|
|