XboxHacker BBS
 
*
Welcome, Guest. Please login or register.
Did you miss your activation email?
June 19, 2013, 04:11:37 AM


Login with username, password and session length


Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 »
  Print  
Author Topic: 360 Flash Dump Tool V0.1  (Read 145344 times)
jester
Master Hacker
****
Posts: 192


View Profile
« Reply #260 on: August 16, 2009, 04:29:43 PM »

Nice bump, thanks a lot arnezami!
Logged
Textbook
Member
**
Posts: 46


Future Hacker


View Profile WWW
« Reply #261 on: August 20, 2009, 05:52:00 PM »

I have a 4552 kernel system that I dumped using Tiros' Nandpro 2.0 (LPT dump).  I dumped the NAND twice , and both dumps had matching MD5 checksums.  What I did notice though was that these dumps had a block read error @ 300 though.



The dump opens up just fine with Flash Tool 88b without the cpu key.

I flashed the NAND with the Xenon hack to load Xell and this gave me the cpu key.  When I set Flash Tool to use the cpu key and 1BL key (and yes, it's the right 1BL key), then try to load the dump, Flash Tool crashes.

Here is my cpu key via Xell output: 000f343821ff9cee35aa7acc753648ed



I can upload the nand dump I made with nandpro, but I was unsure of the rules regarding linking to that.  If this is allowed, I can do that and you can try it for yourself.

I just wanted to know if Flash Tool has a problem with dumps from chips with bad blocks or some other explanation.  I do not know the DVD drive key for this system and this is preventing me from obtaining it.  Thanks.
Logged

welly_59
Master Hacker
****
Posts: 101


View Profile
« Reply #262 on: August 21, 2009, 01:02:11 AM »

Try it without entering the 1bl key. I'm sure it states somewhere in this thread that onkly the cpukey was needed to decrypt the keyvault with this tool after a certain revision by robinsod
Logged
welly_59
Master Hacker
****
Posts: 101


View Profile
« Reply #263 on: August 21, 2009, 01:15:59 AM »

Have a look at reply 111. He added this in flashtool 0.81
Logged
Textbook
Member
**
Posts: 46


Future Hacker


View Profile WWW
« Reply #264 on: August 21, 2009, 02:28:51 AM »

Tried that, still crashes.  It loads fine with no CPU key and with a wrong CPU key (but obviously says key is bad).  When I set the correct key and try to open it, that's when it crashes.
Logged

welly_59
Master Hacker
****
Posts: 101


View Profile
« Reply #265 on: August 21, 2009, 03:16:33 AM »

Message me a link to the dump if u want mate and I'll have a look when I finish work
Logged
gupek
Master Hacker
****
Posts: 154



View Profile
« Reply #266 on: August 21, 2009, 08:32:13 AM »

its quite strange, if U want me to see it too U can m@il me dump
Logged
arnezami
Master Hacker
****
Posts: 214


View Profile
« Reply #267 on: August 21, 2009, 02:38:46 PM »

Info on small bug.

If a processor key starts with 00 then the program crashed. This was because of this (quick and dirty) check in KV decryption (CXSection.cpp)

Code:
if(*pK0 == 0x00)
{
return FALSE;
}

This code was probably meant to stop decypting if the key was all 00's. So when you replace it with this code:

Code:
BYTE SomeZeros[0x10];
memset(SomeZeros,0,0x10);

if(memcmp(pK0,SomeZeros, 0x10) == 0)
{
return FALSE;
}

then you won't have any problem decrypting your flash/kv (no crash).

Regards,

arnezami

PS. Here a fixed flash tool (based on 88a, I don't have source of 88b)
Logged
zouzzz
Master Hacker
****
Posts: 326


View Profile
« Reply #268 on: August 21, 2009, 03:04:59 PM »

Good job (again).
Logged

gupek
Master Hacker
****
Posts: 154



View Profile
« Reply #269 on: August 21, 2009, 04:46:20 PM »

yeah, now it works, thx
Logged
Textbook
Member
**
Posts: 46


Future Hacker


View Profile WWW
« Reply #270 on: August 21, 2009, 04:47:04 PM »

Yeah, that fixed it.  Thanks arnezami.
Logged

Cpasjuste
Master Hacker
****
Posts: 126


View Profile
« Reply #271 on: August 21, 2009, 04:59:10 PM »

Textbook you should not post your fuseset.
Logged
DarkstarTM
Member
**
Posts: 45


View Profile
« Reply #272 on: August 22, 2009, 06:26:08 AM »

The fixed version still crashes when I try to extract from a dump that I made from a Falcon box.

CB/CD is 5770. Also I had the following error while dumping:

Quote
Error: 250 reading block 304
Logged
arnezami
Master Hacker
****
Posts: 214


View Profile
« Reply #273 on: August 22, 2009, 11:52:15 AM »

The fixed version still crashes when I try to extract from a dump that I made from a Falcon box.

CB/CD is 5770. Also I had the following error while dumping:

Quote
Error: 250 reading block 304

I've looked at this and Flash Dump Tool doesn't check if the CPU key is available when it comes to decrypting CD, CE, CF and CG (only needed when you have CB/CD 1920 or higher). This means it crashes on the decompression algos (it can't decompress random data).

In other words: as long as you don't have your CPU and have 1920 or higher then Flash Dump Tool can only decrypt CB for you (and it then crashes). You need to get the CPU key from the jtag exploit first. But for that you need a proper CD section. From what I understand this CD section has to be "guessed" from a previous CD version (which is probably 99% the same or so) and a hash in the new CB version (that is decrypted by this Flash Dump Tool) and that will match if the guesses are correct. tmbinc probably knows much more details.

Does anybody have a CB/CD version of 1921 btw?

Regards,

arnezami
Logged
tmbinc
Global Moderator
Master Hacker
*****
Posts: 286


View Profile
« Reply #274 on: August 22, 2009, 12:40:02 PM »

Yes, that's how i obtained 1921: I've disassembled 1920 back into something which assembled byte-identical, and then inserted the TA-fix until it matched the target hash.
Logged

Please don't copy/quote full text outside this board. Instead, summarize and link to this post. Thanks! This lets me keep information updated and doesn't pull things out of context.
reddwarfusa
Member
**
Posts: 27


View Profile
« Reply #275 on: August 25, 2009, 10:28:12 AM »

HELP

Ok I obtained by nand dump via the lpt and its perfect, grabbed twice and compared they are the same.  I try to open the 360 flash dump tool (.88b) retail and it opens,  as soon as I search for my nand dump it crashes with mfc application error.  This happens every time.  I then (for fits and giggles) tried the devkit version and the dump gets opened.  Does any one have any ideas?  Seems strange and will stop me obtaining my DVD key.  Can i use the devkit version of and then enter cpu key to check for DVD key or is there anything i can do to get hte retail verison working?

Thanks
Logged
agaputo
Newbie
*
Posts: 3


View Profile
« Reply #276 on: August 25, 2009, 01:56:30 PM »

Hi,

I put the 360 Flash Tool v. 088b on hotfile.

http://hotfile.com/dl/10853411/6462cbe/360_Flash_Tool_Retail.exe.html

http://rapidshare.com/files/271423102/360_Flash_Tool_Retail.exe.html
« Last Edit: August 25, 2009, 01:58:18 PM by agaputo » Logged
Pimp_My_Console
Member
**
Posts: 34


View Profile
« Reply #277 on: September 21, 2009, 02:13:45 PM »

i have a prolem...my nand backup can't uploaded by 360 Flash Tool v. 088b.the program freezing..but before th program can load the nand bacup..todey make me an error..the nand backup are ok!!!!today freeze the program!!!why???
can i get dvd key whitout this program?

noo
noo
sorry sorry my mistake!!!sorry again
« Last Edit: September 21, 2009, 02:19:05 PM by Pimp_My_Console » Logged
AHippyHop
Hacker
***
Posts: 53


View Profile
« Reply #278 on: November 08, 2009, 10:03:32 AM »

Hello,

Just dumped my 7371 NAND using Cygnos v2. It has two bad blocks at 0x3FE 0x3FF. I already have my CPU key.

When I move to extract the RAW file system to obtain my smc.bin and smc_config.bin for XeLL/image construction,
using 360 Flash Tool, they are missing. All other files are present and correct.

Am I doing something wrong?  Smiley

Any help welcome! Hope I've put this question in the right category.

AHippyhop




*****UPDATE******
 
Solved it. My fault.

You need to install Visual C++ 2008 Express Edition or the Visual C++ Runtime Library
and use the 360 Flash Tool included in the freeBOOT 0.01 package. No other 360 Flash Tool
version will extract the smc.bin and smc_config.bin properly.

I got this info from .ISO and icekiller posts from a month ago. Many thanks

*****UPDATE ENDS***
« Last Edit: November 09, 2009, 12:38:29 PM by AHippyHop » Logged
APE
Newbie
*
Posts: 8


View Profile
« Reply #279 on: November 10, 2009, 07:47:40 PM »

Getting crashes on all versions with my NAND dump. Dumping it again to compare and check to see if it is even a *good* dump. Grabbing this from a Zephyr mobo if that matters at all.
Logged
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM