hacking xbox dvd drive firmware

Hello guest,
default
To benefit from all extra features you need to log in or sign up.
Firmware Discuss, hacking xbox dvd drive firmware at Computer Hardware forum; Anyone up to the challenge of sticking it to Microsoft and firguring out the key exchange & decryption that takes place in the xbox dvd drive? I typed my guts out on a previous post and lost it I think cause I timed out....

Old Posted: 05-08-2004
default_avatar
bigfreak (New on Forum)
Posts: 1
  • Find More Posts by bigfreak
Anyone up to the challenge of sticking it to Microsoft and firguring out the key exchange & decryption that takes place in the xbox dvd drive?

I typed my guts out on a previous post and lost it I think cause I timed out....
default_avatar
Today (MyCE Staff)
Posts: 15,596
Old Posted: 07-08-2004
default_avatar
Black_Like_A_Cat (New on Forum)
Posts: 3
  • Find More Posts by Black_Like_A_Cat
I saw your post on XS and I'm very interested, but I don't really know how you would go about it. You seemed to be on the right track and I don't know how much I can help, but I know assembly and I know how to extract the kernel from the bios. I sure however, that's completely different from the Dvd-rom. I don't know the first thing about cd\dvd firmware.

After reading your post I immediately got the 605 and 616t firmware and compared them with hex edit just to see what was similar. As expected, nothing special. So then I tried to disasemble the firmware, you said an Intel 8051, but when I opened the drive I found a Mediatek MT1326f uP. I can't find the datasheet as of yet but I'm sure it's based on someone's core. It appears to be pretty common throughout dvd-roms so if we get this going, it should open up compatibility for a lot of other drives.

Also in my research I found forum.rpc1.org which seems to be more hardware oriented, you might try there.
Old Posted: 10-08-2004
Mr. Belvedere's Avatar
Mr. Belvedere (MyCE Resident)
Posts: 15,655
  • Find More Posts by Mr. Belvedere
does it actually take place in the drive or on the mainboard ?
I assume you are talking abou this firmware ? : http://www.xbox-scene.com/articles/samsung-616t.php
__________________
I might be evil... but
I might also give strange answers, because i want you to research for the rest of the answer by using the combined power of those trillions of nerve cells inside your head.


If Windows Vista is the answer, how stupid must have been the question?
Old Posted: 07-09-2004
default_avatar
Black_Like_A_Cat (New on Forum)
Posts: 3
  • Find More Posts by Black_Like_A_Cat
yeah, I think the copy protection scheme is built into the dvd-rom. In fact, I'm almost positive. You can swap the stock dvd-rom with any PC dvd-rom, you just have to figure out how to rewire the eject button to work with that yellow cable on the back of the stock drive. There's tuts on XS that show you how to do it, its fairly common. Only problem is that you won't be able to read Original game disks. That was my first clue that it had to be in the dvd firmware.

I managed to extract to system kernel with a guide from xbox-linux, look through it with a disassembler and found the section that mounts the dvd-rom (/device/CDROM0) and reads UDF disks. According to a PDF I found from OSTA, the calls seemed to match the sample code on the bottom of the doc. Plus that wouldn't explain why you couldn't read original disks after you swap the drive if the copy protection was in the kernel (after the data comes off the IDE cable). It has to be before, because the drive won't recognize the disk. A normal computer won't mount a Xbox DVD anyway, but you can read it with special programs that know what to look for in in the file system.

Something tells me this may be a lot harder than I first thought. It's not like you have to hunt down a bit and change the value. We probably have to find the jump call to the section that handles reading from the original firmware. Then find the same jump point on a normal drive and replace it withh the new function (assuming the assembler is written like oop).

So everyone fire up IDE and start lookin.
Old Posted: 08-09-2004
default_avatar
zoleet (New on Forum)
Posts: 5
  • Find More Posts by zoleet
Hope getting closer...
Old Posted: 16-10-2004
default_avatar
Black_Like_A_Cat (New on Forum)
Posts: 3
  • Find More Posts by Black_Like_A_Cat
I've made a some progress with the MediaTek firmware on the Samsung 605E in some xboxes. First, just to clarify I'm not trying to maliciously circumvent their copy protection... I just want to move the copy protection to a dvd-rom that's faster (the original is painstakinly slow) and one that can read my personally burned audio cd backups (2/3 of the drives in an xbox can't).

As mentioned before, the particular uC that is in this drive (MTK1629E) uses an instruction set compatible to an 8032. That uC is in turn similar to the 8052, or its older counterpart the 8051. There is a pretty good simulator called Simulator 2003 available from www.fstsoftware.com for these series chips.

There is a wealth of knowledge about the chip and how to program it on www.8052.com. On that website I learned that you can only address 64k of memory at a time on the chip. Which seems odd because the firmware for the 605e is 128k and the firmware for the 616t is 256k. If you break the firmware up into 64k chunks you can see by the hex dumps that there is code common to all of them. I've read on mailing lists for the MTK13x9 uC that there is code that sets up the stack for paging, and there are jump tables for paging. Setting the common portions of the pages aside there is still a substantial amount of data.

What I've been trying to do so far is to try to identify the different subroutines. I'm not sure which subroutine is the main program yet because I don't have a dump of the eeprom to see the entry point. Once I've got a list of subroutines, I'll then compare the subroutines from the 605e (xbox) with the 616t (generic). Hopefully then I'll have a better idea of what additionally is required to run an xbox dvd.

btw there is a gnu dissasmbler called d52 thats good for this stuff. get it from http://www.8052.com/users/disasm/.

Black
Old Posted: 20-12-2004
default_avatar
zoleet (New on Forum)
Posts: 5
  • Find More Posts by zoleet
Any progress?
Old Posted: 01-01-2005
default_avatar
thor918 (New on Forum)
Posts: 4
  • Find More Posts by thor918
Interesting!
I have looked on the assambly code for 605B.I'm looking for the booktype check.
Would like to patch the firmware to take dvdr+ booktype.
It may be a good tip to check out the "SCSI Multimedia Commands" http://ftp.t10.org/ftp/t10/drafts/mmc3/mmc3r10g.pdf

Have you found out anyything from looking at the assambly code?
Old Posted: 01-01-2005
default_avatar
thor918 (New on Forum)
Posts: 4
  • Find More Posts by thor918
hmm do you have the firmware for 605E?
Old Posted: 03-01-2005
default_avatar
jimmsta (New on Forum)
Posts: 23
  • Find More Posts by jimmsta
I honestly believe that the decryption occurs in the firmware, however, the biggest difference between a regular dvd-rom drive is that the xbox drive might actually be spinning in reverse.... thus, it's more of a barrier to get across... I believe that the data is read backwards, but according to the XDVD format, it's forwards...

Layer1 is read 'backwards' to the DVD-Video specification, but correct for the XDVD spec.
Layer0 contains 3.2GB of XDVD-formatted data, and approx 100MB of DVD-Video data. The 3.2GB partition can be used for game data, while the DVD-Video partition is always used for a video file that states something along the lines of "This is an xbox game disc. It cannot be played on this device"...

A regular DVD-Rom drive, connected to a PC, can read the DVD-Video partition, but cannot even SEE the XDVD partition/Layer1.

I'm guessing that the XDVD format is programmed into the drive firmware in a low-level state... it's the only thing that makes sense.

Thus, both XDVD-formatted and DVD-Video formatted layers can exist on a single disc.
__________________
NEC 3500AG w/LD & Herrie's 2.18 v2 beta 3 FW
Liteon 411S@811S HS0K patched w/OP
Old Posted: 03-01-2005
kwkard's Avatar
kwkard (CDFreaks Resident)
Posts: 1,813
  • Find More Posts by kwkard
Here's another interesting thing. Putting the xbox game into the xbox and browsing it with a file explorer or via ftp, you can only see the xbox data, and not the other session.
__________________
I smart, learn fast.
The Coolest Page Ever

My drives:
Benq 1640 BSLB
Benq 1625 BBHA (Rebadge HP 640c)(Lightscribe)
LG GSA-4163B A104
NEC ND-3520A 1.04
NEC ND-3500AG LD 2.FD
Liteon SOHW-812s@832s VS0E
Liteon SOHW-1633S BS41
Liteon SOHC 5232K NK0H
Yamaha CRW-F1 1.0g

And yes these are all in one PC. Hehe.
Old Posted: 03-01-2005
default_avatar
jimmsta (New on Forum)
Posts: 23
  • Find More Posts by jimmsta
Actually, sometimes, if your xbox is modded, and manages to not read a game dvd correctly, it can sometimes see the DVD-Video partition.... which is always a strange occurance, because we're not expecting to see something that says VIDEO_TS in a file explorer on an xbox, with an xbox game inserted....
__________________
NEC 3500AG w/LD & Herrie's 2.18 v2 beta 3 FW
Liteon 411S@811S HS0K patched w/OP
Old Posted: 03-01-2005
default_avatar
thor918 (New on Forum)
Posts: 4
  • Find More Posts by thor918
my 616t firmware is 128KB
I too have read up at that yahoo group,
What are your findings till now?
I have managed to find the same botstrap in both 605B and 616T.
Then delete all botstrap, then split the remainding into 64KB chunks,
I will get 1 64KB file and 1 17KB with 8031/8051 bin, dissasmable that, And looking on those asm files, I see that there are many similarityes, many jump adresses are alittle different, but it looks very alike. But I'm very interested in knowing what Black_Like_A_Cat have found out!

anyway I think the secrect of reading xbox discs lies in the arm prossessor code (the bin file consist of 8052,arm, and dsp.. or something like that), as I have read on the yahoo group this code is compressed and lies after the bootstrap code. The 12th hex from the bootstrap code will give the number of blocks compressed, I read 3c=60 in my hex editor. But I'm not sure it that is correct. anyway the decompressing code is availeble on the yahoogroup.

If any of you find the routine that has something to do with the booktype reading (4 bits located in the leadin at every dvd disc), please let me know!
Old Posted: 07-01-2005
TheDangerousBros's Avatar
TheDangerousBros (FirmWare Freaks)
Posts: 471
  • Find More Posts by TheDangerousBros
Quote:
Originally Posted by jimmsta
the biggest difference between a regular dvd-rom drive is that the xbox drive might actually be spinning in reverse....
It doesn't spin backward, how would it play DVD's? The motor hack is on the TRAY motor, which is reversed between the XBOX vs retail Samsung units. Layer 1 of a DVD can be read two different ways, OTP (opposite track path) and PTP (parallel track path), discs are pressed one way or the other. OTP is typical for Video DVD as the head doesn't have to seek at the layer transition, the head starts at the inner edge, moves to the outer edge, transistions layer, and then moves back to the inner edge. The drive motor does not change direction.

There is no ARM code in MTK drive chipsets, the 8051/ARM chip is used in a stand alone DVD player chipset. The ROMs on the 8051/ARM chips are typically 1MB+, not 128KB

Brother Vlad
Old Posted: 07-01-2005
default_avatar
thor918 (New on Forum)
Posts: 4
  • Find More Posts by thor918
Hi there, Thanks!
this clears up some. (on the reverse thing)

hmm no arm code? are you sure?
I know there is a big difference in dvdplayer roms on the size, but there we have, sounds,pictures, menues and all sorts of data.
If there is no arm code, it must have been a coincidence that I found the exact same hex that is the bootstrap in a stand alone dvdplayer rom with mtk chipset.

_
Old Posted: 11-01-2005
default_avatar
jimmsta (New on Forum)
Posts: 23
  • Find More Posts by jimmsta
Ah, alright. What I was meaning by the reverse thing: The actual data is read backwards -- IE: Big Endian. What gets me, however, is that we can burn xbox dvds, but not read them... If anything, we should be able to read them, but not burn them....
__________________
NEC 3500AG w/LD & Herrie's 2.18 v2 beta 3 FW
Liteon 411S@811S HS0K patched w/OP
Old Posted: 13-01-2005
default_avatar
zoleet (New on Forum)
Posts: 5
  • Find More Posts by zoleet
Try 2 check the Starwars extra DVD, it also has Xbox content,but its a video dvd, maybe it helps. (The original trilogy)
Old Posted: 05-03-2005
default_avatar
zoleet (New on Forum)
Posts: 5
  • Find More Posts by zoleet
Think it's over now... ((
Old Posted: 11-03-2005
Mr. Belvedere's Avatar
Mr. Belvedere (MyCE Resident)
Posts: 15,655
  • Find More Posts by Mr. Belvedere
Quote:
Originally Posted by jimmsta
Ah, alright. What I was meaning by the reverse thing: The actual data is read backwards -- IE: Big Endian. What gets me, however, is that we can burn xbox dvds, but not read them... If anything, we should be able to read them, but not burn them....
can't writing be a total different engine than the reading engine?
__________________
I might be evil... but
I might also give strange answers, because i want you to research for the rest of the answer by using the combined power of those trillions of nerve cells inside your head.


If Windows Vista is the answer, how stupid must have been the question?
Old Posted: 24-03-2005
default_avatar
micked (New on Forum)
Posts: 6
  • Find More Posts by micked
http://www.xbox-scene.com/tutorials.php?p=191|192|#192
Old Posted: 02-04-2005
Jesterrace's Avatar
Jesterrace (Moderator)
Posts: 4,841
  • Find More Posts by Jesterrace
Quote:
Originally Posted by Mr. Belvedere
does it actually take place in the drive or on the mainboard ?
I assume you are talking abou this firmware ? : http://www.xbox-scene.com/articles/samsung-616t.php
It takes place on the motherboard. That is why you can't just pop a modded Samsung 616T in an unmodded XBOX and expect it to play backups. There is a 2048bit encryption key that is built into the mobo. Good luck cracking that.
Old Posted: 18-04-2005
default_avatar
kocoman (New on Forum)
Posts: 5
  • Find More Posts by kocoman
please tell me the name of the yahoo group you are looking at?
Old Posted: 18-04-2005
default_avatar
zoleet (New on Forum)
Posts: 5
  • Find More Posts by zoleet
Quote:
Originally Posted by Jesterrace
It takes place on the motherboard. That is why you can't just pop a modded Samsung 616T in an unmodded XBOX and expect it to play backups. There is a 2048bit encryption key that is built into the mobo. Good luck cracking that.
Don't hink anybody wants to play backups in an unmodded XB!
We only want a cheap replacement-drive, that reads ORIGINAL XB DVD-s in any XB! Like SD 616, reads original, and backup too in a modded XB!
Old Posted: 03-04-2007
default_avatar
chrishill (New on Forum)
Posts: 4
  • Find More Posts by chrishill
i have been reviewing the posts on this topic and i can see theres a lot of spin of weels so i hopeing with my knoleg of drive mods and programing to shead light now i rember my dell haveing the same problem (come to think og it it in flames now ) but not becuse of the mod anyways the dell laptop was asking me for a hd drive passcode that was 4 numbers long so i figured i try combanations then i rebooted and it never asked me for it again so i thought noting of it till i pluged my hd drive of my x box in to my home computer and it asked me for the same thing so i did soeme resurch on the drive passcodeds the code is not on the mother board it is writen itn to the device be it a hd or dvd drive now in order for this to be verifyed there has to be a way to ask the user for that input and comapre it right well i not good at any other langwiges that basic ones but if my understanding right all some one that good at the more computer level langwiges whould have to do is find a code that whould do that but this is just hypethicly spkeing but another thing is i rembered a frend took a borad of some sort out of his cd drive that always asked him for a pass code inserted a board frome a spare that did not and reasembled the drive and it never asked for the code not shure if this helps but i hope it does
Old Posted: 03-04-2007
_chef_'s Avatar
_chef_ (MyCE Resident)
Posts: 27,399
  • Find More Posts by _chef_
chrishill, could you please use "." for your sentences?
It is really not easy to read so.
__________________
'Things are now in motion that cannot be undone.' [Gandalf, LoTR]

Enable DMA with micrAp$0ft Enable DMA free at your will busTRACE => Upper/Lower Filters Util
DevCon
***HOW TO ... Delete the Upper & Lower Filters!***

If you expect help then please start now by using the powerful SEARCH.
....................... sick of spam? Try free Spybot and Threatfire ..........................
There's more to MyCE.com

Listen up, we've got more. Product information on 107,830 products. Our experts have written 523 articles. We've gathered 16,131 news items for you to always keep updated.

Active Commenters

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

People who found this also searched for

  • recognize xbox dvd drive
  • site club.cdfreaks.com xbox firmware
  • this is an xbox game disc replaced
  • use xbox drive
  • what is xbox firmware
  • which firmware do i have xbox360
  • xbox 360 drive firmware update
  • xbox dvd firmware hacke for xbox 1 dvd drive
  • #fw xbox
  • 360 backward compatibility after the dvd firmware has been flashed
  • 360 drive firmware encryption
  • 360 extract lost dvd key
  • 360 liteon instruction set
  • after my xbox 360 is flashed do i always have to take my dvd drive out to flash it?
  • any way to get dvd key from mobo
  • anyway to check what firmware i have on my 360 drive
  • atualizar firmware xbox drive dvd
  • bios doesnt recognize my xbox 360 benq drive
  • burn dvd for un modded xbox
  • can hacked 360 drive play dvd
  • can i place a new drive in my xbox 360 by exchanging the chips
  • can i swap a flashed dvd drive with a stock drive on my 360?
  • can i switch modded dvd drive from xbox to another
  • can i update xbox dvd firmware with a laptop
  • can i use an xbox 360 motherboard with a different cd rom driver
  • can i use xbox drive on different xbox
  • can u use a deffirent moddeddvddrive to a xbox360
  • can xbox see a firmware upgrade to drive
  • can you change dvd drives in a xbox 360
  • can you use a regular dvd drive for xboxdvd drive
  • can you use a usb drive to update to firmware 1.6 xbox?
  • can you use regular dvd drive in xbox how to firmware
  • change 360 drive type
  • change dvd drive hack xbox
  • change firmware on xbox drive
  • change firmware xbox
  • change firmware xbox dvd
  • change over dvd drive xbox
  • change xbox dvd firmware
  • change xbox dvd to regular dvd
  • change xbox firmware
  • changed out dvd drive original xbox
  • changeing dvd drive on xbox
  • changing firmware on xbox
  • check dvd drive if hacked properly
  • check firmware xbox
  • check flashed xbox drive firmware
  • check what drive in in my xbox
  • check what firmware xbox drive is
  • check which dvd drive your xbox has
  • check xbox drive
  • checking dvd firmware xbox
  • checking to see what xbox drive firmware i have
  • chipped 360 motherboard verses cd drive mod
  • como saber a firmware do xbox
  • como saber o firmware da drive xbox
  • como saber o firmware do drive do xbox
  • como saber o firmware do drive xbox
  • compatible motherboards list for flashing xbox360 benq dvd reader
  • computer won't read xbox dvd drive
  • computer wont recognize xbox drive
  • cord xbox 360 dvd drives difference
  • create xbox firmware
  • dell computer doesn't recognize xbox 360 drive
  • diferences on 360 dvd roms
  • difference between xbox drive and pc drive
  • different xbox drive
  • different xbox drives
  • do i have to be up to date on the firmware xbox
  • does hacked xbox dvd drives show up on the console
  • download firmware xbox
  • download xbox 1 firmware
  • download xbox firmware
  • drive firmware update xbox
  • drive firmware xbox
  • dvd hack xbox
  • dvd key hacked drive xbox
  • dvd rom on unmodded xbox
  • dvd-rom firmware which enables your pc dvd-rom player to read xbox dvds
  • Чтение xbox дисков на pc
  • easy way to use firmware for xbox
  • extract firmware xbox from motherboard
  • extract key from 360 board
  • figure out what dvd drive is in your xbox
  • find my xbox dvd drive
  • find out firmware on xbox
  • find out what type of dvd drive xbox has
  • find out what xbox dvd drive you have
  • find out xbox dvd drive version
  • find out your xbox 360 drive firmware
  • find xbox fw
  • finding dvd code on 360 samsung
  • finding firmware from 360 motherboard
  • firmware 360 dvd drive
  • firmware chip in xbox disck drive
  • firmware compatible xbox drives
  • firmware download xbox
  • firmware drive xbox
  • firmware dvd drive xbox
  • firmware fix 360
  • firmware flash hack cd
  • firmware for different dvd drive xbox
  • firmware for newer xbox drive
  • firmware for xbox
  • firmware hacked xbox360 wont read disc
  • firmware masterizzatore xbox
  • firmware mod xbox 360 hd dvd drive
  • firmware modding xbox dvd drive with console power
  • firmware pc dvd rom drive read 360
  • firmware read xbox
  • firmware xbox
  • firmware xbox dvd drive
  • firmware xbox dvd drive vista
  • firmware xbox elite
  • firmware xbox motherboard
  • firmware xbox which drive do i have
  • firmwared xbox
  • fitmware xbox cd drive
  • fix 360 drive firmware
  • flash 360 cant find dvd rom
  • flash a dvd drive to work in a different xbox
  • flash dvd drive xbox ready
  • flash firmware dvd drive xbox
  • flash firmware xbox dvd
  • flash the dvd drive with the original fw
  • flash xbox 360 dvd drive to system board
  • flash xbox dvd drive firmware
  • flashed his firmware on the dvd drive xbox
  • flashing regular xbox dvd drive firmware
  • fw xbox
  • get firmware xbox dvd drive
  • get key from 360 drive
  • get xbox dvd firmware on a normal dvd drive
  • getting to dvd drive on 360
  • hack 360 disc drive firmware
  • hack cd for xbox
  • hack external dvd drive 360
  • hack samsung xbox dvd
  • hack xbox black console read backup disk
  • hack xbox cd drive
  • hack xbox dvd drive
  • hack xbox dvd drive 8050l
  • hack xbox from cd
  • hack xbox play dvd movies
  • hack xbox to read blu ray
  • hackable xbox disc drives
  • hacked 360 reading game as dvd
  • hacked xbox doesn't read dvd
  • hacked xbox firmware -360
  • hacking 360 dvd drive with usb
  • hacking 8052 chips
  • hacking firmware site http club.cdfreaks.com
  • hacking xbox
  • hacking xbox by cd
  • hacking xbox change dvd player
  • hacking xbox copy
  • hacking xbox dvd rom
  • hdd driver hacker xbox
  • hex read dvd disc
  • how big is the original firmware on xbox 360 dvd drives?
  • how can i check firmware on 360 drive
  • how can i come to know about which firmware im using in my xbox 360 and which dvd drive
  • how can i find out what firmware my 360 has
  • how can i found my firmware?xbox
  • how can i know which firmware xbox i have
  • how can i tell a difrence beetween xbox drives dvd
  • how come my xbox 360 drive wont spin
  • how do i check what firmware my xbox dvd drive has
  • how do i check which firmware do i have on my xbox
  • how do i find out what firmware my xbox has
  • how do i find out what firmware my xbox is
  • how do i find out which firmware is on my xbox
  • how do i firmware my xbox ?
  • how do i identify my xbox 360 dvd rom type?
  • how do i identify my xbox cd drive
  • how do i know firmware xbox
  • how do i know what firmware is my xbox
  • how do i know which firmware i have xbox
  • how do i tell what firmware my 360 dvd drive has
  • how do you check the type of dvd drive on an xbox
  • how do you update ur xbox driver firmware
  • how identify your xbox dvd player
  • how much is firmware for new xbox
  • how read dvd with xbox
  • how to change an xbox chip so another dvd drive will be recognized
  • how to change drive key in firmware xbox
  • how to change firmware on dvd drive
  • how to change firmware on xbox 360 drive
  • how to change firmware on xbox drive
  • how to change firmware xbox
  • how to change over key on xbox dvd
  • how to change the firmware of an xbox dvd drive
  • how to change the firmware of my xbox 360 drive
  • how to change the firmware on an xbox dvd rom
  • how to change xbox dvd drive firmware
  • how to change xbox dvd drive key
  • how to check drive frimware xbox
  • how to check dvd xbox
  • how to check if my xbox drive is hacked
  • how to check my xbox dvd drive
  • how to check see what dvd drive you have for your 360
  • how to check what dvd drive is in the xbox
  • how to check what firmware there is on my xbox 360
  • how to check which dvd drive xbox
  • how to check xbox drive firmware
  • how to check xbox dvd drive firmware
  • how to check xbox dvd firmware
  • how to copy dvd key to new xbox drive
  • how to copy keys in xbox dvd
  • how to determine xbox dvd firmware
  • how to edit xbox drive firmware
  • how to erase the key on xbox drive so many drive can be used
  • how to extract firmware from xbox 360 drive
  • how to extract firmware from xbox dvd drive
  • how to extract key from xbox 360 motherboard
  • how to extract key from xbox dvd drive
  • how to fash the key driver dvd xbox to another dvd
  • how to figure out drive xbox
  • how to figure out firmware of xbox
  • how to figure out orignal firmware on xbox 360
  • how to figure out what xbox dvd drive you have
  • how to figure out xbox dvd firmware version
  • how to find an xbox 360 key with no drive
  • how to find dvd drive key without original dvd drive xbox 360
  • how to find dvd key from replaced drive
  • how to find dvd key from xbox 360 system board
  • how to find dvd key on xbox 360 motherboard
  • how to find my xbox motherboard dvd key
  • how to find out my firmware and drive on xbox
  • how to find out what drive is in the xbox and firmware
  • how to find out what dvd firmware my xbox has
  • how to find out what firmware your xbox
  • how to find out what xbox drive firmware you have
  • how to find out what xbox drive you have
  • how to find out which xbox dvd drive
  • how to find out xbox dvd drive
  • how to find the code off the xbox dvd drive
  • how to find what xbox drive you have
  • how to find which drive i have on 360
  • how to find your 360 dvd key
  • how to firmware an xbox
  • how to firmwire xbox
  • how to flash benq xbox dvd without opening xbox
  • how to flash cd drive to work on another xbox
  • how to flash the firmware on a xbox
  • how to flash xbox dvd
  • how to flash xbox dvd drive firmware
  • how to get an xbox 360 to reconigse a new dvd drive
  • how to get an xbox dvd drive to work with another motherboard
  • how to get encryption key from a xbox dvd drive
  • how to get firmware on 360
  • how to get pc to recognize xbox dvd drive
  • how to get the dvd key from a xbox mother board
  • how to get the dvd key off 360 drive
  • how to get xbox dvd drive key
  • how to get your computer to identify xbox dvd drives
  • how to hack xbox 360 drive firmware
  • how to hack xbox dvd
  • how to hack xbox dvd drive vis usb
  • how to hack xbox dvd firmware
  • how to hex edit xbox firmware
  • how to identify my 360 drive type
  • how to identify xbox 360 cd rom
  • how to identify xbox 360 drive
  • how to identify xbox 360 firmware
  • how to identify your xbox cd drive
  • how to know what firmware to use for 360
  • how to know what firmware xbox
  • how to know what xbox firmware
  • how to know xbox dvd firmware
  • how to make another dvd drive work on different xbox
  • how to make pc read xbox dvd
  • how to obtain xbox original firmware
  • how to power a xbox dvd drive on the pc
  • how to read dvd xbox
  • how to read xbox dvd key
  • how to read xbox dvd on pc
  • how to read xbox dvds
  • how to swap a benq dvd drive with a samsung dvd drive on my 360
  • how to swap out cd drive of a xbox 360 to moutherboard that has no drive key
  • how to tell difference between xbox dvd drives
  • how to tell what drive it is drive xbox
  • how to tell what firmware 360 has
  • how to tell what firmware xbox
  • how to update 360 dvd rom firmware
  • how to update firmware on xbox without opening up the console
  • how to update xbox 360 cd rom firmware
  • how to update xbox drive firmware
  • how to update xbox firmware
  • how to xbox dvd drive other
  • how update xbox firmware drive
  • how-to flash your pc dvd-rom with a xbox dvd-rom drive firmware
  • hp 640c dvd writer to burn xbox 360 games
  • hp drive wont burn xbox
  • i cant see xbox hack cd in my computer
  • i dont know how to check what firmware my xbox has
  • i dont know what firmware my xbox has
  • i switched my xbox 360 disc drive and it wont work
  • identfy xbox dvd drive type
  • identify xbox drive
  • identify xbox dvd drive
  • is hacking the basic xbox similar to the new xbox 360
  • is there a hacked hd dvd firmware for 360
  • is there any way to get the dvd key from a xbox with no drive
  • ΧΒΟΧ ΦΙΡΜςΑΡΕ ΠΡΟΒΛΕΜ ΠΛΑΥ ΔΩΔ
  • jak firmware xbox
  • key code from xbox drive
  • know the firmware for your 360 drive
  • latest firmware drive xbox
  • liteon sohw-1633s to read xbox 360 game
  • lost dvd key on xbox
  • lost dvd key xbox 360
  • lost firmware key xbox 360
  • lost key for xbox drive
  • lost xbox dvd key
  • make dvd drive spin backwards
  • microsoft xbox dvd drive yellow cable
  • microsoft xbox firmware
  • mod my original xbox dvd drive wont read disc
  • modded and unmodded xbox dvd drive
  • mount xbox 360 dvd drive computer
  • mount xbox drive in computer
  • mt1326f
  • mt1326f pdf mediatek
  • mtk13x9 edit
  • must have original disc drive firmware
  • my cd rom doesnt want to read a xbox dvd
  • my new dvd drive wont work in my xbox
  • my xbox 360 dvd drive has two yellow cable
  • my xbox 360 dvd drive wont work after i erased my key sectors
  • my xbox recognize game like move
  • my xbox won't read discs firmware hacked
  • new disk drive firmware 360
  • new drive dvd xbox don't recognized
  • new motor for 360 dvd drive
  • new xbox firmware
  • new xbox firmware update
  • online with firmware xbox
  • original firmware nötig xbox
  • original firmwares xbox
  • original xbox dvd firmware
  • original xbox firmware
  • pc dont recongize xbox 360 drive
  • pc drives compatible burn 360
  • pc dvd read xbox disc
  • pc dvd writer firmware hack 360
  • pc will not recognize xbox dvd drive
  • pc won't regognize benq drive xbox
  • pc wont recognize xbox samsung
  • play dvds on 360 with the drive
  • power xbox without dvd drive
  • que dvd driver de pc son compatibles con el xbox
  • read dvd xbox on pc
  • read key code on xbox drive
  • read original firmware 360
  • read xbox dvd
  • read xbox dvd in pc
  • read xbox dvd on pc
  • read xbox dvds
  • reading dvd key xbox motherboards
  • reading firmware hex editor
  • reading hacked xbox file system
  • recognize xbox dvd model
  • remove cdrom firmware xbox
  • rever the xbox to its original firmware
  • samsung xbox dvd hex value
  • sd-605b firmware download
  • sign xbox 1 dvd to work with unmodded xbox
  • swap hacked drive between 360's
  • tell the difference between xbox drives
  • the difference between xbox dvd drives
  • them the dvd player starts and xbox recognizes it as a dvd not a game disk
  • two yellow cable xbox dvd drive
  • type of dvd drive xbox 360 yellow cable
  • up date firmware drive xbox
  • update 360 firmware
  • update firmware 360 drive
  • update firmware xbox
  • update previously hacked xbox drive
  • update xbox drive firmware
  • update xbox firmware
  • use xbox dvd drive on pc
  • using xbox dvd drive in computer
  • vista read xbox dvd
  • w to find out what firmware version is my xbox 360
  • what code is xbox original firmware 2005
  • what firmware to use on 360
  • what is firmware in xbox
  • what is xbox firmware
  • what is xbox firmware?
  • what the newest firmware block so microsoft cant find out that u have a modded xbox
  • what xbox firmware do i have
  • where to get xbox firmware
  • which firmware does xbox have
  • which kind of dvd drive xbox has
  • which program tells you what fw version xbox 360 drive is
  • which xbox drive cannot be modded
  • which xbox dvd drives cant be hacked
  • why hack xbox dvd drive
  • why my xbox games recognize like dvd video
  • why upgrade firmware on xbox dvd drive
  • why wount a different dvd drive work on a different xbox model
  • will flashing my xbox 360 drive make it spin again
  • windows won't recognize my xbox 360 dvdrom drive
  • windows won't recognize xbox dvd drive
  • x box reads dvd flash
  • x-box dvd firm ware
  • x360 firmware reverse assemble
  • xbox #fw
  • xbox -360 modded dvd drive
  • xbox 1 dvd drive firmware
  • xbox 1 firmware
  • xbox 360 discs spin backwards
  • xbox 360 dvd drive but no key
  • xbox 360 dvd drive change key in firmware
  • xbox 360 dvd drive flash endian
  • xbox 360 dvd drive no firmware original
  • xbox 360 dvd drive reading firmwares
  • xbox 360 dvd drive two yellow cable flash
  • xbox 360 dvd drive yellow cable
  • xbox 360 dvd drive yellow cables
  • xbox 360 fw yapma
  • xbox 360 intel 8051 controller
  • xbox 360 saber dvd drive
  • xbox 616t
  • xbox cd rom firmware
  • xbox change the dvd drive key eeprom
  • xbox disc drive firmware
  • xbox disc drive firmware modding
  • xbox drive does not read dvd
  • xbox drive firmware
  • xbox drive firmware update
  • xbox drive firmwares
  • xbox drive firmwares asus
  • xbox drive flash firmware
  • xbox dvd code
  • xbox dvd disk drive mod
  • xbox dvd doesn't open
  • xbox dvd drive
  • xbox dvd drive does not recognize games
  • xbox dvd drive doesn't spin
  • xbox dvd drive firmware
  • xbox dvd drive firmware flashing
  • xbox dvd drive firmware update
  • xbox dvd drive flash firmware x
  • xbox dvd drive in pc
  • xbox dvd drive mod firmware
  • xbox dvd drive motor
  • xbox dvd drive not found
  • xbox dvd drive numbers
  • xbox dvd drive power
  • xbox dvd drive power cord backwards
  • xbox dvd drive replacement
  • xbox dvd drive to pc
  • xbox dvd drive won't open
  • xbox dvd drive wont close
  • xbox dvd drive wont read
  • xbox dvd drivers
  • xbox dvd drives
  • xbox dvd drives mod able
  • xbox dvd firmware
  • xbox dvd firmware download
  • xbox dvd firmware that reads on pc
  • xbox dvd firmware update
  • xbox dvd flash
  • xbox dvd hack
  • xbox dvd key
  • xbox dvd key decrypter
  • xbox dvd key off motherboard
  • xbox dvd power cable type
  • xbox dvd read
  • xbox dvd replace
  • xbox dvd rom drive
  • xbox dvd rom firmware
  • xbox dvd rom firmware upgrade
  • xbox dvd rom hack
  • xbox dvd yellow
  • xbox dvd-rom firmware
  • xbox dvdrom firmware
  • xbox dvdrom firmware update
  • xbox explorer cant find my drives
  • xbox find out what dvd drive
  • xbox firmware
  • xbox firmware -360
  • xbox firmware ??
  • xbox firmware download
  • xbox firmware drive
  • xbox firmware dvd
  • xbox firmware editor
  • xbox firmware flashing
  • xbox firmware original
  • xbox firmware update
  • xbox firmware update for dvd drive
  • xbox firmware version
  • xbox firmware?
  • xbox firmwares
  • xbox fw
  • xbox fw resimli
  • xbox fw yapma
  • xbox fw yapmak
  • xbox game read as dvd
  • xbox hackable dvd drive
  • xbox hacked cd drive
  • xbox hacked says play dvd
  • xbox hacking
  • xbox hacking tool
  • xbox key code for dvd
  • xbox lost dvd key
  • xbox new firmware update
  • xbox new frimware
  • xbox not recognizing flashed dvd drive
  • xbox original dvd drive will not reconize original xbox game
  • xbox recognize game as dvd
  • xbox replacement drive hacked
  • xbox replacement dvd drive flash
  • xbox update firmware
  • xbox without dvd drive
  • xbox xbox dvd doesn't spin up drive
  • xbox360 change firmware without original
  • yellow cable on xbox dvd drive
  • yellow cables xbox dvd drive
  • yellow cord for the xbox dvd drive
  • your xbox can't recognize this disc. make sure it's an xbox game samsung 616t
  • `download xbox dvd-rom firmware
All times are GMT +2. The time now is 12:21.
Top