XboxHacker BBS
 
*
Welcome, Guest. Please login or register.
Did you miss your activation email?
June 19, 2013, 05:37:29 PM


Login with username, password and session length


  Show Posts
Pages: 1 2 3 4 5 6 »
1  Research & Technical XboxHacking (Xbox 360) / Software (TECHNICAL) / Re: How the fcrt.bin is crypted ? on: August 29, 2012, 04:18:09 PM
This code is not guaranteed to be complete and/or working and would require other code/libraries to function properly. I reversed a lot of the sata code from the 20xxx kernel + hv, here is some that may be of use to someone idk: http://pastebin.com/RiFxR3fi
2  Xbox 360 / Xbox 360 General Discussion / Re: New homebrew hack ? on: June 05, 2012, 10:48:12 PM
Except that this instruction:
Code:
13F0: rldicr %r1, %r0, 2, 61
is from 4584, and the reason he needed multiple xbox consoles, is because he has a habit of putting Colgate toothpaste and peanut butter on them.

If it's from sevensins, it's guaranteed bull$#!t.
3  Xbox 360 / XboxHacking - General / Re: A Idea of a new xbox hack on: February 16, 2012, 10:15:52 PM
It would be cheaper to buy the f***ing game. Yea I went there.
4  Research & Technical XboxHacking (Xbox 360) / Software (TECHNICAL) / Re: source code flash360 on: January 30, 2012, 02:38:26 PM
Probably can be done, but you would have to reverse the MS method, then implement it across every drive and every FW revision. You are better off looking at the MS updates.

Then you have to ask yourself if it is worthwhile developing such an app when jtag/rgh xbox's will rarely require FW updates except for major overhauls such as XGD3.


XGD3 only required an update for the security, aka stuff that is 100% useless to hackers. You can play XDG3 just fine on any drive as long as you patch the security functions in the kernel.
5  Xbox 360 / XboxHacking - General / Re: A new revision of the Slim, no more Glitch? on: October 19, 2011, 07:13:53 AM
Corona finally shows its face. Shocked
More like a Trinity V2
No it is a corona. Trinity was being developed in 2009, Corona has been in development since winter 2010-2011.
6  Xbox 360 / XboxHacking - General / Re: Processor Glitching on: July 03, 2011, 12:00:46 PM
1bl is responsable for reading 2bl from flash into soc ram, verifying, decrypting and jumping to 2bl. The bootloaders in flash (CB, CD, CE, CF, CG) all come consecutively after the flash header, smc code, and kv. A descriptor can be found at offset 0 in flash to describe this section of flash by version, offset, size, and flags.
Code:
struct BOOTLOADER
    {
        WORD Magic;
        WORD Build;
        WORD Qfe;
        WORD Flags;
        DWORD EntryPoint;
        DWORD Size;
    };

All of 2bl except for the 16 byte nonce data and rsa signature are signed by said rsa signature. 1bl calls XeCryptRotSumSha on 2bl to form the SHA1 hash, then uses XeCryptBnQwSigVerify with the rsa signature, calculated SHA1 hash, and the salt XBOX_ROM_B to verify the rsa signature.
7  Xbox 360 / XboxHacking - General / Re: JASPER 16MB CB6750 - NAND SWAP NEEDED on: June 23, 2011, 06:08:31 AM
In my case although it showed ECC errors, the content was fine (there was no badblocks). But that freezing is probably a hardware fault. You might be lucky though - check the pins if they are shorting or something similar. You can replace the files but i doubt it will boot, since.

C000-0001:
Code:
The console needs to be repaired. Please contact Xbox Support.

a.k.a Hardware failing
0xC0000001 is just the error code returned from the last function that exeucted and is a general error. It does not mean in anyway his hardware is failing, even though that could be the case.
8  Xbox 360 / XboxHacking - General / Re: HV Syscall table? on: June 06, 2011, 07:25:06 PM
You are gunna have to change the max syscall number in the syscall handler. It should compare the syscall number, %r0, to 0x76, and if its greater than or equal it will fail and return. Change it to 0x78 and you should be good. Also peek/poke are the same thing, just with src and dst switched, might wanna make 1 syscall instead of 2.
9  Xbox 360 / Xbox 360 General Discussion / Re: Need 13146 Dump along with CPU Key on: June 02, 2011, 08:19:28 PM
Mean while in $Systemupdate\su20076000_00000000\xboxupd.bin...
10  Xbox 360 / XboxHacking - General / Re: Processor Glitching on: May 22, 2011, 09:55:38 AM
0x20000
The hv image is 0x40000 in size. Even though on older hv images the second 2 segments contained mostly runtime data, loading a newer hv image like that will only yield half the image, they moved executable code around and added a few new jump tables to make reversing it harder.
11  Research & Technical XboxHacking (Xbox 360) / Software (TECHNICAL) / Re: New Discovery! Method to Effectivly Disable CF/CG LDV Blacklisting on: May 15, 2011, 10:23:25 PM
If I'm not mistaken on retail CB has a SHA1 of CD, which has a SHA1 of the kernel patch, so you can't just swap in a new kernel patch. On devs CD is rsa signed and has a SHA1 of the kernel, so you can swap CD to other versions.
12  Research & Technical XboxHacking (Xbox 360) / Software (TECHNICAL) / Re: Creating 12625 Image on: February 11, 2011, 01:58:26 PM
Wanna go back to se7enskids?
13  Xbox 360 / Tech Support 360 / Re: Need some advice or tips booting Xellous on: February 01, 2011, 01:58:01 PM
You said you can boot into the dashboard but not into xell. Are you using hdmi? because I have consoles that display nothing on the screen when using hdmi and xellous. Try using SD, it may be booting into xellous and you just don't see anything on the screen. Also check to see if the rol plays the boot animation when you run it.
14  Xbox 360 / Xbox 360 General Discussion / Re: xdk nand on: January 25, 2011, 07:25:58 PM
Must only apply to retails as all my devkits the 3rd fuse line is 0x0000000000000000.
15  Xbox 360 / XboxHacking - General / Re: IDA basic setup for basefiles (non-kernel) on: January 22, 2011, 07:07:49 PM
Seems to work. Thanks!
I see, the 'x360_imports.idc' is just for IDA's idc folder.

Edit: I guess 'Imports' subview doesn't get filled by the idc script? It got much further now and some/most symbolic names (subview 'Names') are there i think but the 'import' subview remains empty compared to the xexloader.
Yea the Imports windows doesn't get used when you use the idc script, but they appear in the functions window. Just click on the function name column header and it will sort the list for you.
16  Xbox 360 / XboxHacking - General / Re: IDA basic setup for basefiles (non-kernel) on: January 22, 2011, 05:37:17 PM
Don't go to the entry point. Use the -i option to dump the idc loading script. Then after IDA says "you have just loaded a binary file", goto File-> IDC File and select the dumped idc file. It will do all the analyzing stuff for you.
17  Xbox 360 / XboxHacking - General / Re: Jtag Devkit on: January 22, 2011, 02:28:42 PM
This is seriously getting out of hand. The cpu key on a devkit is 100% useless. There is not one legit reason you would EVER need it EVER. I can take any final hardware devkit, erase all of flash, and without knowing a god dam thing about the console, or having any sort of flash backup, recover the kit to a fully functional state (and get on partner net.....

I call bull$#!t on that.
Erasing the flash will destroy the CPU KEY ENCODED console certificate.
You can create a generic image and boot up until it fails loading the kv, at which point you can shadow boot a recovery and it will generate you a "temp" offline kv and you can use your console as normal. I've done it numerous times while working on a misc project.
i just learned that there is a xex file that will help to reveal the cpu key...if someone got a link that would be great...
Yes that app was leaked, can you guess who made it? Not that it matters any more, but its rediculous that it is now being traded back and forth to people for recoveries and money.
yep thats how the world is run, now in the dire times.

and I believe anthony made the xex, as I herd from rumors.
It has my name on it when you run it, I even had one of the idiots who messaged me about confirm that along with all the file names...
18  Xbox 360 / XboxHacking - General / Re: Jtag Devkit on: January 22, 2011, 05:52:36 AM
i just learned that there is a xex file that will help to reveal the cpu key...if someone got a link that would be great...
This is seriously getting out of hand. The cpu key on a devkit is 100% useless. There is not one legit reason you would EVER need it EVER. I can take any final hardware devkit, erase all of flash, and without knowing a god dam thing about the console, or having any sort of flash backup, recover the kit to a fully functional state (and get on partner net, which is COMPLETLY besides the point I am trying to make here). If people spent less time trying to steal and leak $#!t, and learned how the hardware they have works, then we wouldn't have problems with people leaking $#!t in the first place. Yes that app was leaked, can you guess who made it? Not that it matters any more, but its rediculous that it is now being traded back and forth to people for recoveries and money.
19  Xbox 360 / XboxHacking - General / Re: Open xboxkrnl.12611.exe In IDA on: January 18, 2011, 06:25:11 AM
0x80040000 is the loading address for the kernel. But you must split the kernel and hv before you can load it at that address.
20  Xbox 360 / Xbox 360 General Discussion / Re: Best Security feature on the 360? on: January 14, 2011, 11:11:18 PM
Having all executable code encrypted. If it wasen't for the 1bl key being released, then we still would not be able to decrypt and disassemble a lot of the code on the console.
Pages: 1 2 3 4 5 6 »
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