Talk:Nintendo Zone: Difference between revisions
LuigiBlood (talk | contribs) No edit summary |
No edit summary |
||
(17 intermediate revisions by 2 users not shown) | |||
Line 17: | Line 17: | ||
--[[User:LuigiBlood|LuigiBlood]] 20:27, 25 April 2012 (CEST) A friend of mine (Prof. 9) recently tested "_The Cloud" as SSID, and it works, and has access to the Europe Nintendo Zone. MAC filtering can be enabled. | --[[User:LuigiBlood|LuigiBlood]] 20:27, 25 April 2012 (CEST) A friend of mine (Prof. 9) recently tested "_The Cloud" as SSID, and it works, and has access to the Europe Nintendo Zone. MAC filtering can be enabled. | ||
"_The Cloud" SSID is still usable by european consoles without a beacon, but was deleted from the list --[[User:Duke srg|Duke srg]] 07:53, 14 May 2012 (CEST) | |||
On the other hand, some hotspots from a list is not usable without a beacon at least. --[[User:Duke srg|Duke srg]] 22:14, 14 May 2012 (CEST) | |||
== hotspot.conf for fw9 == | |||
Is it possible to get hotspot.conf from fw9? Really need this one to maintain the homepass scripts --[[User:Duke srg|Duke srg]] 08:22, 14 October 2014 (CEST) | |||
Any chance hotspot.conf info will be updated with fw 9.3 changes? --[[User:Duke srg|Duke srg]] 21:28, 9 December 2014 (CET) | |||
:I thought of doing some sort of hotspot.conf parser which would be located somewhere under [http://yls8.mtheall.com], with certain data stripped out, but I haven't bothered yet(upload hotspot.conf files myself -> server lets the site visitors see the extracted data). --[[User:Yellows8|Yellows8]] 22:44, 10 December 2014 (CET) | |||
:: I already have the parser in Perl with the exact BASE64 alphabet sequence and able to host the decoder online or provide it for you to use on that host. I actually do not have any exploitable or dev unit to rip the actual data. As long as I manintan one of the homepass script implementation I always need the up to date hotspot list with the flags. Diff patch from the previous version will be enough --[[User:Duke srg|Duke srg]] 10:50, 11 December 2014 (CET) | |||
::: Paste your script then. --[[User:Yellows8|Yellows8]] 17:35, 11 December 2014 (CET) | |||
:::: | |||
#!/usr/bin/perl | |||
use strict; | |||
use MIME::Base64 qw( decode_base64 ); | |||
open INFILE,$ARGV[0] or die; | |||
my @res; | |||
while (<INFILE>) { | |||
if ($_ =~ /.*,\d,\d$/) { | |||
@res = split(',',$_); | |||
$res[3] =~ s/\./+/gs; | |||
$res[3] =~ s/-/\//gs; | |||
$res[3] =~ s/\*/=/gs; | |||
$res[3] = decode_base64($res[3]); | |||
$res[3] =~ s/(.)/sprintf("%02X",ord($1))/egs; | |||
$res[3] = ""; | |||
$res[5] = ""; | |||
printf "%s,%s,%s,%s", decode_base64(shift(@res)),decode_base64(shift(@res)),decode_base64(shift(@res)),join(',',@res); | |||
}else{ | |||
print $_; | |||
} | |||
} | |||
close INFILE; | |||
Will open file specified as a parameter and print the result with base64 decoded strings and key date inf hex string format. --[[User:Duke srg|Duke srg]] 18:18, 11 December 2014 (CET) | |||
:"with certain data stripped out" <- I was referring to the ApNum and SecurityKey field values. --[[User:Yellows8|Yellows8]] 18:42, 11 December 2014 (CET) | |||
:: Fixed with blank values --[[User:Duke srg|Duke srg]] 18:57, 11 December 2014 (CET) |