Hacking [GUIDE] Upgrading 8.1.0-0J to 9.2.0-20J

Ichii Giki

Well-Known Member
Member
Joined
Mar 12, 2015
Messages
284
Trophies
0
XP
241
Country
United States
Well crap. I get an error when trying to update and the 3DS restarts.

Tried twice so far, and I have these two entries in the log:

Hmm, seems like it's not getting to the next step. You should have log entries like, if successful:

1. ... GetSystemTitleHash detected ...
2. ... GetSystemUpdate detected ...
3. ... GetSystemCommonETicket detected ...

Since it's apparently breaking at the "GetSystemTitleHash" step, I would suggest double-checking:
1. You need to change the TitleHash value (in GetSystemTitleHash_response.xml) to match the one in GetSystemUpdate_response.xml: 8564645C8A1B36E6E13F93D6C5348763
2. You need to change the NusURL value (in GetAccountStatus_response.xml) to match the path of your webserver host!
3. Make sure you have all 3 if/elseif statements in your update.php script.
4. Make sure you are not blocking 3DS update servers (if you normally do this in your router/etc.).

I assume the "listprocess()" command in NTRclient properly returned a list of running processes including NIM? If so then you were definitely connected to your 3DS. I hope these suggestions help!
 

Click This

Surgite!
Member
Joined
Feb 18, 2012
Messages
545
Trophies
0
Location
New York, New York
XP
286
Country
United States
Hmm, seems like it's not getting to the next step. You should have log entries like, if successful:

1. ... GetSystemTitleHash detected ...
2. ... GetSystemUpdate detected ...
3. ... GetSystemCommonETicket detected ...

Since it's apparently breaking at the "GetSystemTitleHash" step, I would suggest double-checking:
1. You need to change the TitleHash value (in GetSystemTitleHash_response.xml) to match the one in GetSystemUpdate_response.xml: 8564645C8A1B36E6E13F93D6C5348763
2. You need to change the NusURL value (in GetAccountStatus_response.xml) to match the path of your webserver host!
3. Make sure you have all 3 if/elseif statements in your update.php script.
4. Make sure you are not blocking 3DS update servers (if you normally do this in your router/etc.).

I assume the "listprocess()" command in NTRclient properly returned a list of running processes including NIM? If so then you were definitely connected to your 3DS. I hope these suggestions help!

Aha, it's the php file. Everything else looks correct. I only count two elseifs. How would I fix this?

<?php

header('Content-Type: text/xml');

$headers = apache_request_headers();
$myfile = fopen("log3ds.txt","a");

foreach ($headers as $header => $value) {

fwrite($myfile, $header);
fwrite($myfile, ": ");
fwrite($myfile, $value);
fwrite($myfile, "\n");

if($header == "SOAPAction") {
if($value == "urn:nus.wsapi.broadon.com/GetSystemUpdate") {
fwrite($myfile, "GetSystemUpdate detected\n");
echo file_get_contents("GetSystemUpdate_response.xml");
} elseif ($value == "urn:nus.wsapi.broadon.com/GetSystemTitleHash") {
fwrite($myfile, "GetSystemTitleHash detected\n");
echo file_get_contents("GetSystemTitleHash_response.xml");
} elseif ($value == "urn:nus.wsapi.broadon.com/GetSystemCommonETicket") {
fwrite($myfile, "GetSystemCommonETicket detected\n");
echo file_get_contents("GetSystemCommonETicket_response.xml");
}
}

}
fwrite($myfile, "\n");
fclose($myfile);
die();

?>
 

Ichii Giki

Well-Known Member
Member
Joined
Mar 12, 2015
Messages
284
Trophies
0
XP
241
Country
United States
I left the device ID as 'xxx' in the GetCommonETicket_response.xml file and it worked for me.

Sorry about if/elseif confusion, I meant 3 statements overall between the 2nd 'if' and the 2 other 'elseif' statments. The 'update.php' file you pasted looks correct. I was more sure the problem would lie in the hash value in 'GetSystemTitleHash_response.xml' not being correct.

The only things I had to change from the original files/templates given in the OP were:
1. Hash in GetSystemTitleHash_response.xml to match the value from GetSystemUpdate_response.xml
2. NusURL value in GetAccountStatus_response.xml
3. Adding elseif for GetCommonETicket case in update.php

Otherwise, I didn't have to change anything elsewhere in the files for it to work for me.
 

xerosagas

Well-Known Member
Newcomer
Joined
Feb 9, 2015
Messages
75
Trophies
0
Age
30
XP
96
Country
United States
I'm just having issues with getting NTRDebugger to work. Seems like nothing I type actually does anything.
I've done everything else including enabling it on NTR CFW.
 

clock

Well-Known Member
Newcomer
Joined
Sep 18, 2008
Messages
48
Trophies
1
XP
560
Country
I thought the NUSURL is yourhost/yourphpfile.php?

Don't have my n3ds jp here to test but I'm set up my laptop to do the work tonight.
 

Ichii Giki

Well-Known Member
Member
Joined
Mar 12, 2015
Messages
284
Trophies
0
XP
241
Country
United States
I'm just having issues with getting NTRDebugger to work. Seems like nothing I type actually does anything.
I've done everything else including enabling it on NTR CFW.

If the 'connect' command in NTRclient isn't working, make sure you are using port '8000' like it says in the instructions after enabling the debugger on the New 3DS. Also be sure you are connecting to the proper IP address of your New 3DS (might have to sort it out by MAC address if you have lots of wireless devices connected to your router) If you have a firewall on the connecting computer that may also be blocking connectivity. I didn't have any firewall issues in Windows 8.1, but YMMV.
 

xerosagas

Well-Known Member
Newcomer
Joined
Feb 9, 2015
Messages
75
Trophies
0
Age
30
XP
96
Country
United States
If the 'connect' command in NTRclient isn't working, make sure you are using port '8000' like it says in the instructions after enabling the debugger on the New 3DS. Also be sure you are connecting to the proper IP address of your New 3DS (might have to sort it out by MAC address if you have lots of wireless devices connected to your router) If you have a firewall on the connecting computer that may also be blocking connectivity. I didn't have any firewall issues in Windows 8.1, but YMMV.

I have the right IP, I only have a few devices. It shows up as 3DS-XXXX in my router settings. I'm able to ping it just fine from my PC. I temporarily disabled my firewall and no dice.
EDIT:
I figured it out. God, I'm an idiot, I was typing in the wrong field.
 
  • Like
Reactions: Ichii Giki

Ichii Giki

Well-Known Member
Member
Joined
Mar 12, 2015
Messages
284
Trophies
0
XP
241
Country
United States
I have the right IP, I only have a few devices. It shows up as 3DS-XXXX in my router settings. I'm able to ping it just fine from my PC. I temporarily disabled my firewall and no dice.
EDIT:
I figured it out. God, I'm an idiot, I was typing in the wrong field.

LOL, nice, I did that too at first!

YES! Success! Fixed my scrub mistake and I'm now on 9.2.0-20J. :D

Thanks so much for your help!

Woot, great to hear, you are most welcome! :yaynds:
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • BigOnYa @ BigOnYa:
    Nighty night, wise one, thanks for trying to help.
  • Psionic Roshambo @ Psionic Roshambo:
    To sleep perchance to dream!
  • BigOnYa @ BigOnYa:
    My state has put a heavy tax on vape juice, taxing any juice with nicotine by the weight/oz. So to get around the bs, my local vape store only sells 0 nicotine vape juices, then they also sell straight nicotine in tiny bottles, and you mix it yourself to your 0% juice, lol
    +1
  • BigOnYa @ BigOnYa:
    Damn, is that Wing from South Park?
  • Psionic Roshambo @ Psionic Roshambo:
    BigOnYa hmmm I wonder how long until someone just vapes the straight nicotine lol
  • BigOnYa @ BigOnYa:
    I was gonna say people are not that dumb, but yea you right, some are.
    +1
  • K3Nv2 @ K3Nv2:
    People have put 50mg salt nic in straight subohm coils which is like more powerful hits
    +1
  • BigOnYa @ BigOnYa:
    Hey psi, do they have dress codes down there in FLa, here there are signs on stores that say "No shirt, no service" but curious bout down yonder
  • BigOnYa @ BigOnYa:
    Yea I tried the salts and too strong for me, I prefer the norm juice
  • K3Nv2 @ K3Nv2:
    In Florida they don't serve you if you have clothes on
    +1
  • K3Nv2 @ K3Nv2:
    Fucking raining again
  • BigOnYa @ BigOnYa:
    How can you tell, do you see rain drops on top of other rain drops?
    +1
  • K3Nv2 @ K3Nv2:
    I can tell by whenever your wife done letting out loud ass moans then I get her a ticket back home
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    @BigOnYa, yeah most places demand clothes and shoes, unless it's some really back water place that I am unaware of lol
    +1
  • BigOnYa @ BigOnYa:
    Cool, I got lunch money for tomorrow then.
  • BakerMan @ BakerMan:
    @K3Nv2 call uremum Sloppenheimer the way she givin me this bomb head
    +1
  • K3Nv2 @ K3Nv2:
    I call uremum alzheimer she forgets to leave
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Time to start a vape straight nicotine challenge, Darwin be praised!
    +1
  • K3Nv2 @ K3Nv2:
    Imagine if Hitler had vapes, we promise it's not cyanide it'll help you quit nicotine
    +1
  • BigOnYa @ BigOnYa:
    Please, walk into my patented vape chamber, aka the non smoking area
  • K3Nv2 @ K3Nv2:
    I do wonder how dominate Germany would've been if they just enlisted Jewish people
  • BigOnYa @ BigOnYa:
    They actually enlisted Muslims, seriously, because the Muslims hates Jews, even tho it was not the supreme race. He claimed common hate, is friendship.
  • K3Nv2 @ K3Nv2:
    He could've just made them walking shields kind of a dumb ass move
  • K3Nv2 @ K3Nv2:
    https://a.co/d/3km8bqC lol cd level quality I fucking hope so
    K3Nv2 @ K3Nv2: https://a.co/d/3km8bqC lol cd level quality I fucking hope so