Author Topic: Xbox 360 slim models unlocked/jtagged  (Read 21322 times)

Offline crazy-modder

  • Research & Development
  • Acid Modder
  • *
  • Posts: 854
  • Post quality +34/-2
  • Gender: Male
Xbox 360 slim models unlocked/jtagged
« on: August 28, 2011, 05:14:47 PM »


It looks like it has finally happened, the new Xbox 360 Models have now been finally hacked and JTagged. So it seems that Microsoft’s new CD format which was supposed to increase the security of the Xbox 360 is now slightly pointless, however if its as hard as it was to do the JTAG on the fat Xbox 360 then this shouldn’t really have an effect on the amount of piracy there is. To explain it (very) simply, the chip sends little pulses to the processor in order to distabilize the console and make it believe a modified CB is correctly hashed and signed. This operation doesn't succeed every time, but it is repeated till it works. Once the modified/hacked CB is validated by the console, it has enough rights to launch unsigned code and in our case, XeLL, the Xenon Linux Loader. For full details, read GliGli's explanation of his hack, you can also have a look at the source code of Hack available here is a full explanation of the hack if you understand:


**********************************
* The Xbox 360 reset glitch hack *
**********************************

Introduction / some important facts
===================================

tmbinc said it himself, software based approaches of running unsigned code on the 360 mostly don’t work, it was designed to be secure from a software point of view.

The processor starts running code from ROM (1bl) , which then starts loading a RSA signed and RC4 crypted piece of code from NAND (CB).

CB then initialises the processor security engine, its task will be to do real time encryption and hash check of physical DRAM memory. From what we found, it’s using AES128 for crypto and strong (Toeplitz ?) hashing. The crypto is different each boot because it is seeded at least from:
- A hash of the entire fuseset.
- The timebase counter value.
- A truly random value that comes from the hardware random number generator the processor embeds. on fats, that RNG could be electronically deactivated, but there’s a check for “apparent randomness” (merely a count of 1 bits) in CB, it just waits for a seemingly proper random number.

CB can then run some kind of simple bytecode based software engine whose task will mainly be to initialise DRAM, CB can then load the next bootloader (CD) from NAND into it, and run it.

Basically, CD will load a base kernel from NAND, patch it and run it.

That kernel contains a small privileged piece of code (hypervisor), when the console runs, this is the only code that would have enough rights to run unsigned code.
In kernel versions 4532/4548, a critical flaw in it appeared, and all known 360 hacks needed to run one of those kernels and exploit that flaw to run unsigned code.
On current 360s, CD contains a hash of those 2 kernels and will stop the boot process if you try to load them.
The hypervisor is a relatively small piece of code to check for flaws and apparently no newer ones has any flaws that could allow running unsigned code.

On the other hand, tmbinc said the 360 wasn’t designed to withstand certain hardware attacks such as the timing attack and “glitching”.

Glitching here is basically the process of triggering processor bugs by electronical means.

This is the way we used to be able to run unsigned code.

The reset glitch in a few words
===============================

We found that by sending a tiny reset pulse to the processor while it is slowed down does not reset it but instead changes the way the code runs, it seems it’s very efficient at making bootloaders memcmp functions always return “no differences”. memcmp is often used to check the next bootloader SHA hash against a stored one, allowing it to run if they are the same. So we can put a bootloader that would fail hash check in NAND, glitch the previous one and that bootloader will run, allowing almost any code to run.

Details for the fat hack
========================

On fats, the bootloader we glitch is CB, so we can run the CD we want.

cjak found that by asserting the CPU_PLL_BYPASS signal, the CPU clock is slowed down a lot, there’s a test point on the motherboard that’s a fraction of CPU speed, it’s 200Mhz when the dash runs, 66.6Mhz when the console boots, and 520Khz when that signal is asserted.

So it goes like that:
- We assert CPU_PLL_BYPASS around POST code 36 (hex).
- We wait for POST 39 start (POST 39 is the memcmp between stored hash and image hash), and start a counter.
- When that counter has reached a precise value (it’s often around 62% of entire POST 39 length), we send a 100ns pulse on CPU_RESET.
- We wait some time and then we deassert CPU_PLL_BYPASS.
- The cpu speed goes back to normal, and with a bit of luck, instead of getting POST error AD, the boot process continues and CB runs our custom CD.

The NAND contains a zero-paired CB, our payload in a custom CD, and a modified SMC image.
A glitch being unreliable by nature, we use a modified SMC image that reboots infinitely (ie stock images reboot 5 times and then go RROD) until the console has booted properly.
In most cases, the glitch succeeds in less than 30 seconds from power on that way.

Details for the slim hack
=========================

The bootloader we glitch is CB_A, so we can run the CB_B we want.

On slims, we weren’t able to find a motherboard track for CPU_PLL_BYPASS.
Our first idea was to remove the 27Mhz master 360 crystal and generate our own clock instead but it was a difficult modification and it didn’t yield good results.
We then looked for other ways to slow the CPU clock down and found that the HANA chip had configurable PLL registers for the 100Mhz clock that feeds CPU and GPU differential pairs.
Apparently those registers are written by the SMC through an I2C bus.
I2C bus can be freely accessed, it’s even available on a header (J2C3).
So the HANA chip will now become our weapon of choice to slow the CPU down (sorry tmbinc, you can’t always be right, it isn’t boring and it does sit on an interesting bus

So it goes like that:
- We send an i2c command to the HANA to slow down the CPU at POST code D8 .
- We wait for POST DA start (POST DA is the memcmp between stored hash and image hash), and start a counter.
- When that counter has reached a precise value, we send a 20ns pulse on CPU_RESET.
- We wait some time and then we send an i2c command to the HANA to restore regular CPU clock.
- The cpu speed goes back to normal, and with a bit of luck, instead of getting POST error F2, the boot process continues and CB_A runs our custom CB_B.p>

When CB_B starts, DRAM isn’t initialised so we chose to only apply a few patches to it so that it can run any CD, the patches are:
- Always activate zero-paired mode, so that we can use a modified SMC image.
- Don’t decrypt CD, instead expect a plaintext CD in NAND.
- Don’t stop the boot process if CD hash isn’t good.

CB_B is RC4 crypted, the key comes from the CPU key, so how do we patch CB_B without knowing the CPU key?
RC4 is basically:
crypted = plaintext xor pseudo-random-keystream
So if we know plaintext and crypted, we can get the keystream, and with the keystream, we can encrypt our own code. It goes like that:
guessed-pseudo-random-keystream = crypted xor plaintext
new-crypted = guessed-pseudo-random-keystream xor plaintext-patch
You could think there’s a chicken and egg problem, how did we get plaintext in the first place?
Easy: we had plaintext CBs from fat consoles, and we thought the first few bytes of code would be the same as the new CB_B, so we could encrypt a tiny piece of code to dump the CPU key and decrypt CB_B!

The NAND contains CB_A, a patched CB_B, our payload in a custom plaintext CD, and a modified SMC image.
The SMC image is modified to have infinite reboot, and to prevent it from periodically sending I2C commands while we send ours.

Now, maybe you haven’t realised yet, but CB_A contains no checks on revocation fuses, so it’s an unpatchable hack !

Caveats
=======

Nothing is ever perfect, so there are a few caveats to that hack:
- Even in the glitch we found is pretty reliable (25% success rate per try on average), it can take up to a few minutes to boot to unsigned code.
- That success rate seems to depend on something like the hash of the modified bootloader we want to run (CD for fats and CB_B for slims).
- It requires precise and fast hardware to be able to send the reset pulse.

Our current implementation
==========================

We used a Xilinx CoolRunner II CPLD (xc2c64a) board, because it’s fast, precise, updatable, cheap and can work with 2 different voltage levels at the same time.
We use the 48Mhz standby clock from the 360 for the glitch counter. For the slim hack, the counter even runs at 96Mhz (incremented on rising and falling edges of clock)
The cpld code is written in VHDL.
We need it to be aware of the current POST code, our first implementations used the whole 8 bits POST port for this, but we are now able to detect the changes of only 1 POST bit, making wiring easier.

Conclusion
==========

We tried not to include any MS copyrighted code in the released hack tools.
The purpose of this hack is to run Xell and other free software, I (GliGli) did NOT do it to promote piracy or anything related, I just want to be able to do whatever I want with the hardware I bought, including running my own native code on it.

Credits
=======

GliGli, Tiros: Reverse engineering and hack development.
cOz: Reverse engineering, beta testing.
Razkar, tuxuser: beta testing.
cjak, Redline99, SeventhSon, tmbinc, anyone I forgot… : Prior reverse engineering and/or hacking work on the 360.

http://www.youtube.com/watch?v=JyYdL4L6vwE&feature=player_embedded


**Source** poop
« Last Edit: August 28, 2011, 06:41:56 PM by crazy-modder »

Offline snowcolt17

  • Moderator
  • Acid Modder
  • *
  • Posts: 552
  • Post quality +16/-1
  • Gender: Male
  • If all else fails, reflow it
Re: Xbox 360 slim models unlocked/jtagged
« Reply #1 on: August 28, 2011, 05:36:08 PM »
wanna be the first to try it crazy? :p


Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #2 on: August 28, 2011, 05:48:04 PM »
WTF  whats the purpose of keeping dashbords at  7371 or less now, pretty useless the old jtag consoles

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline crazy-modder

  • Research & Development
  • Acid Modder
  • *
  • Posts: 854
  • Post quality +34/-2
  • Gender: Male
Re: Xbox 360 slim models unlocked/jtagged
« Reply #3 on: August 28, 2011, 06:05:34 PM »
@ rodent, no the old jtags are able to host lobbies. THese ones cant. strictly offline only

Offline magic_man185

  • Who Farted ???
  • *
  • Posts: 229
  • Post quality +16/-0
  • Gender: Male
  • Acidmods User
Re: Xbox 360 slim models unlocked/jtagged
« Reply #4 on: August 28, 2011, 06:20:07 PM »
Good point Crazy-modder.  Also Rodent, this new method even says it can take some time, it can take up to a few minutes, and I think that means each time it boots.  It is great for everyone that cant get a old method JTAGable console, but not everyone is going to want to wait that long.  I would say your consoles are still valuable.  Maybe not quite as much as the were, but still valuable. 

Offline crazy-modder

  • Research & Development
  • Acid Modder
  • *
  • Posts: 854
  • Post quality +34/-2
  • Gender: Male
Re: Xbox 360 slim models unlocked/jtagged
« Reply #5 on: August 28, 2011, 06:26:29 PM »
Yeah im mainly gonna use this hack just to retrieve the dvd key from my xboxs that are missing dvd drives lol  :clap:

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #6 on: August 28, 2011, 06:36:31 PM »
Yeah im mainly gonna use this hack just to retrieve the dvd key from my xboxs that are missing dvd drives lol  :clap:
Thats what i am going to use it for also, at least then the 10 consoles i have that boot up will be worth selling again. 

Not worried about my jtagables , I can easly sell them for more here , as a regular console, but being theres modders out there that want them , they are getting harder to find, and seal consoles especially that work with no errors . gotta be worth something .

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline crazy-modder

  • Research & Development
  • Acid Modder
  • *
  • Posts: 854
  • Post quality +34/-2
  • Gender: Male
Re: Xbox 360 slim models unlocked/jtagged
« Reply #7 on: August 28, 2011, 06:39:51 PM »
Thats what i am going to use it for also, at least then the 10 consoles i have that boot up will be worth selling again. 

Not worried about my jtagables , I can easly sell them for more here , as a regular console, but being theres modders out there that want them , they are getting harder to find, and seal consoles especially that work with no errors . gotta be worth something .

Yeah most people can careless about it being sealed though cause there just gonna take it apart to jtag it. Thats why people dont want to pay what u want for them.

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #8 on: August 28, 2011, 06:44:01 PM »
they act like its alot, thought its a good deal considering I was throwing in power supply,AV cables and console, but hey thats cool let them go buy the extra stuff  a used power supply at game stop is $40 bucks alone. like i said also I can get  $150 for each console here, sell them as regular consoles and $180 for the  elites . I  will make my money + more might take time, but oh well,  i gave fair prices. let them B*itchs whine.

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline crazy-modder

  • Research & Development
  • Acid Modder
  • *
  • Posts: 854
  • Post quality +34/-2
  • Gender: Male
Re: Xbox 360 slim models unlocked/jtagged
« Reply #9 on: August 28, 2011, 06:46:43 PM »
they act like its alot, thought its a good deal considering I was throwing in power supply,AV cables and console, but hey thats cool let them go buy the extra stuff  a used power supply at game stop is $40 bucks alone. like i said also I can get  $150 for each console here, sell them as regular consoles and $180 for the  elites . I  will make my money + more might take time, but oh well,  i gave fair prices. let them B*itchs whine.

lol, yeah their douches but seems like your getting pretty upset yourself :rofl: and power supply on ebay is $20 and av cables are like $5.

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #10 on: August 28, 2011, 06:52:31 PM »
Not upset, just had a bad day and to deal with them dumb@sses, just put me over the top, trying to work on things and trying to talk to douches is very complicated. and  thats fine if there that price on e-bay , but its a packaged deal, with what i had and with e-bay cost and stuff that gets expensive,

I just hate having to prove myself thats all. I am good at what I do , I am honest and help allot of people out on here and in normal life , not just modding life...lol I take my work serious also and I am out to make some money . not get rich.

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline FOOKz™

  • Hardware Modder
  • Research & Development
  • E = MC² Mad Scientist
  • *
  • Posts: 2070
  • Post quality +37/-2
  • Electronics Expert Electrical Engineer
Re: Xbox 360 slim models unlocked/jtagged
« Reply #11 on: August 28, 2011, 06:59:51 PM »
yea rodent you are giving lot of great deals, i was trying to snag one from you for real cheap but you know it doesn't hurt to ask unless you try to offend someone, good thing i wasn't annoying the crap out of you like a doucher who resells jtagables for $400 a pop.

Its time to go buy/swap all my friend's new xboxes for cheap to enjoy this new hack.

Follow my Instagram and subscribe to my YouTube

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #12 on: August 28, 2011, 07:05:22 PM »
Fookz I tried to make an offer to you the other day you signed off on me ...lol

Tried to get crazy-modder to  make me an offer on the MW2 also he said $20 I said *800 ... bahahahaha , cheap@ss he is..lmao
« Last Edit: August 28, 2011, 07:07:07 PM by Rodent »

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline Phantom

  • Club AM VIP
  • Granny Spanker
  • *
  • Posts: 355
  • Post quality +11/-1
  • Gender: Male
Re: Xbox 360 slim models unlocked/jtagged
« Reply #13 on: August 28, 2011, 11:38:40 PM »
it was only a matter of time..

the wiring diagram for the fat 360 is in the download

or here http://board.gulli.com/thread/1670746-xbox-360-glitch-h4ck-for-all-homebrew-fuer-slim-und-phat/


in german lol

Offline Mogler

  • Research & Development
  • Who Farted ???
  • *
  • Posts: 219
  • Post quality +11/-0
  • Gender: Male
  • Seeding bittorrents like a digital pimp, son.
    • Indie Game Zone
Re: Xbox 360 slim models unlocked/jtagged
« Reply #14 on: August 29, 2011, 12:07:56 PM »
Is this hack patchable? or is it implemented into the hardware.


Youtube: CallawayINC
Blog: Mogler

Offline magic_man185

  • Who Farted ???
  • *
  • Posts: 229
  • Post quality +16/-0
  • Gender: Male
  • Acidmods User
Re: Xbox 360 slim models unlocked/jtagged
« Reply #15 on: August 29, 2011, 12:29:18 PM »

Is this hack patchable? or is it implemented into the hardware.

Now, maybe you haven’t realised yet, but CB_A contains no checks on revocation fuses, so it’s an unpatchable hack !


This is referring to the slim console.  It doesn't explicitly state it on the fat console, but I think it is a reasonable assumption that the fat would be unpatchable also.  Of course, time will tell.  You never know what Microsoft might come up with.  I hope it isn't patchable.  I will probably try this on my banned Jasper when freeboot or something comes out.

lamson88

  • Guest
Re: Xbox 360 slim models unlocked/jtagged
« Reply #16 on: September 21, 2011, 08:00:31 AM »
it seems it's very prompt at making bootloaders memcmp functions ever regaining "no differences". memcmp is ofttimes victimized to restraint the close bootloader SHA hash against a stored one, allowing it to run if they are the duplicate. So we can put a bootloader that would die hash delay in NAND, glitch the previous one and that bootloader give run, allowing nearly any encipher to run.

Offline Anonamous

  • The Unknown Identity
  • Granny Spanker
  • *
  • Posts: 472
  • Post quality +14/-1
  • Gender: Male
  • Electrical Engineering Student
Re: Xbox 360 slim models unlocked/jtagged
« Reply #17 on: September 21, 2011, 08:02:06 AM »
they arent jtaged lol its got absolutely nothing to do with a jtag. anyway im doing this the now on my jasper but i tore a pad (should have used 30 awg wire :/) and i cracked the resistor. xbox wont turn on now lol

Offline NSG! ModWar

  • Guppy
  • *
  • Posts: 9
  • Post quality +0/-0
  • Gender: Male
  • Acidmods User
Re: Xbox 360 slim models unlocked/jtagged
« Reply #18 on: September 24, 2011, 11:46:37 AM »
To be Clear, the new ones are NOT Jtagged. All they have done is a Reset Glitch hack. This is nothing like the Old jtags, in any way besides it can run unsigned/ homebrew code.

That, and the new hack has WAYYY more possibilities...

But, there is also not a Rebooter yet, and probably wont be for a little while either.

Offline Anonamous

  • The Unknown Identity
  • Granny Spanker
  • *
  • Posts: 472
  • Post quality +14/-1
  • Gender: Male
  • Electrical Engineering Student
Re: Xbox 360 slim models unlocked/jtagged
« Reply #19 on: September 25, 2011, 06:07:50 PM »
For anybody who is wondering you can now also do this to falcon motherboards. I did this to mine and after it boots the first time (which takes a while) it then boots almost instantly every time after that.

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #20 on: September 25, 2011, 06:22:29 PM »
old style falcon i  take it? could you retrieve the dvd key? did you use the matrx chip ? or cmod chip?

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline Anonamous

  • The Unknown Identity
  • Granny Spanker
  • *
  • Posts: 472
  • Post quality +14/-1
  • Gender: Male
  • Electrical Engineering Student
Re: Xbox 360 slim models unlocked/jtagged
« Reply #21 on: September 25, 2011, 07:01:37 PM »
old style falcon i  take it? could you retrieve the dvd key? did you use the matrx chip ? or cmod chip?
yep got the dvd key and cpu key. I used the diligent cmod and can now happily play mario kart 64 again :)

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #22 on: September 25, 2011, 07:03:57 PM »
yep got the dvd key and cpu key. I used the diligent cmod and can now happily play mario kart 64 again :)
Cool I just ordered that dilligent cmod chip so now hopefully i can fix the 9 consoles i have, that have no keys thanks for the  infor Anonamous

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline Anonamous

  • The Unknown Identity
  • Granny Spanker
  • *
  • Posts: 472
  • Post quality +14/-1
  • Gender: Male
  • Electrical Engineering Student
Re: Xbox 360 slim models unlocked/jtagged
« Reply #23 on: September 25, 2011, 07:14:59 PM »
Cool I just ordered that dilligent cmod chip so now hopefully i can fix the 9 consoles i have, that have no keys thanks for the  infor Anonamous
no problem, and just a word of advice. Use 30 awg wire for everything except for the ground. and after you solder the 30 awg wire to the motherboard points, TAPE OR GLUE THEM DOWN. There are some pads that if you tare off, you might as well just empty a couple of rounds into it because you will end up with player indicator lights 3 and 4 flashing red. Yeah, I lost my retail jasper doing it lol

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #24 on: September 25, 2011, 07:33:05 PM »
couple of rounds ? like shot the thing?...lol or tape or hot glue over the wire?

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline Anonamous

  • The Unknown Identity
  • Granny Spanker
  • *
  • Posts: 472
  • Post quality +14/-1
  • Gender: Male
  • Electrical Engineering Student
Re: Xbox 360 slim models unlocked/jtagged
« Reply #25 on: September 25, 2011, 07:40:30 PM »
couple of rounds ? like shot the thing?...lol or tape or hot glue over the wire?

no lol after you solder the wire to the points on the motherboard lay a piece of electrical tape on it to hold it in place so u dont tear the pads. place a piece over the solder points and on the wire a little bit farther away from the points. The FT6U7 point had no trace connecting to it because it goes into the board. If you tear off that pad the console will not boot and it is not fixable.

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #26 on: September 25, 2011, 07:44:43 PM »
no lol after you solder the wire to the points on the motherboard lay a piece of electrical tape on it to hold it in place so u dont tear the pads. place a piece over the solder points and on the wire a little bit farther away from the points. The FT6U7 point had no trace connecting to it because it goes into the board. If you tear off that pad the console will not boot and it is not fixable.
Ok thanks If i have any troubles i  will be coming to you for help . still waiting for the cmod chip to  come in. can i remove the chip after i get the dvd key?  and did you have to program the cmod chip? i know the matrix chip you have to program

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #27 on: October 08, 2011, 09:44:32 AM »
Lpt Programmer





power cable to  power the  chip


« Last Edit: October 20, 2011, 03:30:39 AM by Rodent »

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline hyper999

  • Acidmods Alumni
  • Millennium Poster
  • *
  • Posts: 1158
  • Post quality +544/-3
  • Research and Development
Re: Xbox 360 slim models unlocked/jtagged
« Reply #28 on: October 08, 2011, 04:09:49 PM »
Nice work on that programming cable looks tidy :)

Offline Anonamous

  • The Unknown Identity
  • Granny Spanker
  • *
  • Posts: 472
  • Post quality +14/-1
  • Gender: Male
  • Electrical Engineering Student
Re: Xbox 360 slim models unlocked/jtagged
« Reply #29 on: October 08, 2011, 04:27:53 PM »
Nice work on that programming cable looks tidy :)

looks a lot better than the one I first made thats for sure. I just slapped it together because I knew id only use it once then take it apart lol.

EDIT: Hey Rodent, why is your cmod thing different from mine?
« Last Edit: October 08, 2011, 04:29:09 PM by Anonamous »

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #30 on: October 08, 2011, 04:28:02 PM »
Nice work on that programming cable looks tidy :)
Thanks hyper i try to keep it neat and clean as possible in all my work :)

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline 3D0kassiah

  • Acid Modder
  • *
  • Posts: 809
  • Post quality +19/-2
  • Gender: Male
  • Acidmods User
Re: Xbox 360 slim models unlocked/jtagged
« Reply #31 on: October 19, 2011, 05:13:56 PM »
how do we restore the original nand if we decide to take  off the reset glitch hack
thanks for posting the pic knew i could count on u
« Last Edit: October 19, 2011, 05:50:06 PM by edokassiah »
Tracey: f off Rodent
rodent:i would of flew it to bill gates and shoved it up his a$$

Offline Anonamous

  • The Unknown Identity
  • Granny Spanker
  • *
  • Posts: 472
  • Post quality +14/-1
  • Gender: Male
  • Electrical Engineering Student
Re: Xbox 360 slim models unlocked/jtagged
« Reply #32 on: October 19, 2011, 07:24:13 PM »
how do we restore the original nand if we decide to take  off the reset glitch hack
thanks for posting the pic knew i could count on u

go into nandpro and write your unmodified nand image back that you first dumped before doing the hack.

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #33 on: October 20, 2011, 03:41:59 AM »
Lpt Programmer




power cable to  power the  chip

Cmod Chip wired

I have been working on this in my spare time , being that I do repairs and modding, I try to make things simple as can be by programming certain cmod chips so all i have to do is install the chip for which board I need to retrieve the keys from. and alot of people asked why my chip is different from theres, theres abunch of different ones and got some sites that have wiring for all  so thanks to the sites for your help links posted below. This will save you time and keep your mind straight when searching, thats the greatest thing about Acidmods. Your one stop place that members share with others to help others get the things done they need to.

site that supplied these thank you Gulli
http://board.gulli.com/thread/1670746-xbox-360-glitch-h4ck-for-all-homebrew-fuer-slim-und-phat/

FAT
http://img7.imagebanana.com/img/s5fxq6lb/coolrunner2_fat.png
http://img7.imagebanana.com/img/uekp5xdq/fullviewupdate20110905.jpg
http://s.gullipics.com/image/7/2/s/hq2x3b-juypxj-sg7u/img.jpeg
http://img7.imagebanana.com/img/m88uwbml/glitch48nofullpost.png

SLIM
http://img7.imagebanana.com/img/uekp5xdq/fullviewupdate20110905.jpg
http://img7.imagebanana.com/img/ukife1on/coolrunner2_slim.png
http://img6.imagebanana.com/img/ggldwy3j/haoyu_slim.png
http://img6.imagebanana.com/img/cq9kw4yx/glitchslim.png
« Last Edit: November 08, 2011, 06:41:01 AM by Rodent »

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline Anonamous

  • The Unknown Identity
  • Granny Spanker
  • *
  • Posts: 472
  • Post quality +14/-1
  • Gender: Male
  • Electrical Engineering Student
Re: Xbox 360 slim models unlocked/jtagged
« Reply #34 on: October 20, 2011, 06:52:54 AM »
Oh Rodent, if you happen to have some trouble booting with some Jasper consoles, switch the 1k resistor with a 10k resistor

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #35 on: October 20, 2011, 06:54:41 AM »
Oh Rodent, if you happen to have some trouble booting with some Jasper consoles, switch the 1k resistor with a 10k resistor
thanks thats good info , Probably make a tut on this after just trying to get as much info as possible on AM right no and showing what needs to be done .

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline Anonamous

  • The Unknown Identity
  • Granny Spanker
  • *
  • Posts: 472
  • Post quality +14/-1
  • Gender: Male
  • Electrical Engineering Student
Re: Xbox 360 slim models unlocked/jtagged
« Reply #36 on: October 20, 2011, 07:28:59 AM »
ok. I honestly would make a tut, but I am absolutely horrible at making them. When I try and describe how to do something I tend to get off track and repetitive, and just confuse the hell out of people.

Offline Rodent

  • XBOX,XBOX360,PS3,WII
  • Moderator
  • Around the block
  • *
  • Posts: 2983
  • Post quality +75/-5
  • Gender: Male
  • MODDER, REPAIR, CUSTOM IDEAS.
Re: Xbox 360 slim models unlocked/jtagged
« Reply #37 on: October 20, 2011, 07:31:28 AM »
ok. I honestly would make a tut, but I am absolutely horrible at making them. When I try and describe how to do something I tend to get off track and repetitive, and just confuse the hell out of people.
well if we work together i am sure we can make it happen, Reason I started posting here pics in case people started before i got tut made seems to be helping so far.

edit: added the pdf in this post for the slim.
https://www.acidmods.com/forum/index.php/topic,40246.msg306184.html#msg306184
here is the the one for FAT


Thanks to snowcolt17 also for helping me find this info
Special thanks to xbox 360 iso. and Boback for making this tutorial:
Here is an update on the cmod chip if you want to add leds to show its working
How to add leds to a coolrunner chip on a RGH Console,
if your using this type of chipboard
this will come in handy for future debugging.
materials needed:
1. 3 differnt color leds.
2. 30AWG Kynar Wire.
3. 330ohm resistors.
4. solder pen, solder flux.

Step 1 prepare your coolrunner chip
pick the color led you want to use for
Power indicator,POST_OUT1, and your
CPU_RST.

Step 2 just follow the image below.
« Last Edit: December 12, 2011, 07:29:29 PM by Rodent »

 Tracey: I cant believe Rodent of all people made my damn day
3D0: snacks cartoons and naps  lol sounds like rodents typcial day :rofl:
Rodent consoles mods

Offline snowcolt17

  • Moderator
  • Acid Modder
  • *
  • Posts: 552
  • Post quality +16/-1
  • Gender: Male
  • If all else fails, reflow it
Re: Xbox 360 slim models unlocked/jtagged
« Reply #38 on: December 12, 2011, 07:25:18 PM »
thanks for adding it. hope it helps.  :tup:
« Last Edit: December 12, 2011, 07:32:49 PM by snowcolt17 »


 

SMF spam blocked by CleanTalk
SimplePortal 2.3.5 © 2008-2012, SimplePortal