.comment-link {margin-left:.6em;}

Gaming - Xbox, 360 - PlaystationX 2, 3 Backup Copy Games

A place for all Gaming Tools, and other related info

Saturday, December 17, 2005

 

Armadillo v1.7 & IDentify! v2.0 - Tutorial

Armadillo v1.7 & IDentify! v2.0 - Tutorial
http://www.siliconrealms.com - Armadillo.
http://www.imptec.com - IDentify! v2.x.

Welcome dear readers. I'm going to be focusing a lot more now on the quality of my tutorials rather than quantity, as there is already enough here on my site for any basic reverser to be "up and reversing" in a fairly short time. Armadillo is a commercial protection for any Win32 program, yet its not a packer as such, as we'll soon see, no modification is actually made to the original PE structure. If you read their webpage you'll see that Armadillo was really written as a spin-off by the Silicon Realms programmers after one of their registered users found a crack for their other program MultiDesk (we can only speculate how said registered user stumbled across such an unfortunate discovery).

As well as adding a wrapper Armadillo also adds a fully featured registration system, this at first sounds pretty ingenious and the registration system doesn't look like much fun to try and break (based on 64-bit keys so they say), Armadillo also adds as you might expect some anti-debugging code and the simple fact that its mostly encrypted means you can forget disassembling. I recommend you take a look at the part on their webpage wrt "Has Armadillo been cracked", the most recent breach was by none other than Alexey Solodovnikov (ASPack's eminent author).

So time to sit back. Lets see what's under the hood of this protection. Running Armadillo we get a rather nice message box, it seems they don't like our SoftICE :-). I'll spare you the mindless tracing and tell you there are 3 methods used to thwart both Windows 95 & NT SoftICE users.

Method 1
0137:10002A17 PUSH EAX <-- //./SICE, //./NTICE, /.//SIWDEBUG.
0137:10002A18 CALL [KERNEL32!CreateFileA]
0137:10002A1E CMP EAX,-01
0137:10002A21 JZ 10002A2C <-- This obviously is a good jump.

This is of course the MeltICE detection, its pretty simple to beat, in fact the program also calls GetLastError() which returns the calling threads last error value, basically its checking that CreateFileA really did fail (so a soft patch editing EAX after the call to CreateFileA will actually be detected), so be sure to make an effective patch (say editing the strings in memory).

In the spirit of ameliorating our own tools lets see if we can remove this detection forever by patching our SoftICE against it. Using something like VxD Viewer (included with DriverStudio), we can see all of our device names :-), SICE, SIWDEBUG & SIWVID. Changing SICE to something like SICE4 is the easiest thing to do, take out your HEX editor and search for SICE inside Winice.exe, probably the first occurrence is the one you want, several bytes before you'll find the SDK version and SoftICE device ID (02 02), change one of the trailing 20h bytes to 34h and also update this new name inside nmtrans.dll (you'll find it as /.//SICE). You can fix the SIWVID (display driver name) by patching siwvid.386 similarly.

The //./SIWDEBUG device however poses a problem. I wasn't able to find even a DDB for it in any of the NuMega files, the problem seems actually to be not when we call CreateFileA, but after the call to GetLastError. The value of EAX on which GetLastError depends is set beneath CreateFileA. Here's the code from inside kernel32.dll :-

0137:BFF7D32A PUSH EDX <-- //./Device Name.
0137:BFF7D32B PUSH EAX <-- 1.
0137:BFF7D32C PUSH ESI <-- Device Name (without //./).
0137:BFF7D32D PUSH BFF99758 <-- Sleep() maybe.
0137:BFF7D332 PUSH 00
0137:BFF7D334 PUSH 002A001F <-- VWin32_Dispatch() VxD loading/unloading.
0137:BFF7D339 CALL KERNEL32!ORD_0001

As far as I know Service ID 002A001F is undocumented, yet VxD Viewer will come to our rescue. Unassembling at the device's Control Procedure reveals little more than a CLC (re-enable interrupts), scrolling the data window a little higher will find you the mangled device name SIWDxxxEBUGh (where x are 0xC7,0x40 & 0x10 on my system). Search this sequence inside Winice.exe and we can now change it :-).



Method 2
BOOL IsDebuggerPresent(VOID)

This function is exported from kernel32.dll, it returns non-zero in the presence of a debugger, its only implemented in Windows NT so 95/98 users need not apply (my guess is if you run NT you'll probably have to patch kernel32.dll itself against this).

Method 3
:? eax 4243484B 1111705675 "BCHK"

0137:0040212F MOV EBP,EAX <-- Place it in EBP.
0137:00402131 MOV EAX,00000004
0137:00402136 INT 3 <-- Are you here WINICE.EXE :-).

This is the BoundsChecker / SoftICE interface which was first documented about 3 years ago I think, its actually not a great idea to try and trace this INT 3 even if you modify the BCHK value before. You could settle for changing the 'BCHK' value in EAX to something else before its moved into EBP and then a bpmb someway past the INT 3 or you could HEX edit Armadillo so that the XOR which retrieves 'BCHK' is slightly different, alternatively as per Method 1 you could patch your SoftICE against this trick.

Search for the sequence 'KHCB' and you'll be looking at this very interesting routine.

.D105 CMP EBP, 04243484B <-- 'BCHK'.
.D10B JE 0007FAC1 <-- Far jump.
.D111 CMP SI, 04647 <-- 'FG'.
.D116 JNE .D142
.D118 CMP DI, 04A4D <-- 'JM'.
.D11D JNE .D142 <-- The INT 3 'FGJM interface is here too.
In this instance we'll patch just the 'BCHK' interface by modifying the 'BCHK' reference to something else, say BCHR (use your imagination). You should now be able to run Armadillo untroubled. Lets have a little read of the documentation, firstly we'll need our program to protect, say Start Menu Cleaner v1.2 - Note also that Armadillo doesn't seem to be a conventional packer, more of a wrapper. The registration system you can attach is 64-bit so won't be any fun to break, yet lets see how rigidly it is attached to our original program, it might well be possible to remove the wrapper (and thus the registration system) altogether.

Its probably a good idea to peruse the help file before creating your first Armadillo protected program, the text is actually very lucid and easy to follow (if a little patronising in places). When we are ready to protect our program we'll break in on SoftICE at the point at which our startcln.exe is accessed (see below for more about this). After protecting our program the file size has jumped from 31k to near 95k. Lets run it and see what we can observe.

i) When we run our program a temporary file is created, these are assigned names pseudo-randomly Armxxxx.tmp, if you disassemble this file you'll see that this is really a dll. A quick look at the StringRef's ought to give away its function. You can probably also see which jump you'd like to reverse to get the "Key Valid" message :-).

ii) Another file named original_name.TMP0 is created. Take a really good look at this one, its an absolute gift :-), this file is virtually an exact replica of the original unprotected file barring the .text section (which is filled with 58h) and some very minor PE changes. Even the entry point and resource/import tables are all present. When we quit, this file is deleted.

Our task would therefore seem simple. Find the original .text section in unencrypted form, dump its correct raw size using IceDump, then simply paste the dump on top of the .TMP file created by the protected program and eliminate Armadillo completely. Our reminder is created with a call to DialogBoxParamA, we'll follow from the clicking of the OK button what happens after.

As I set about following my own advice (tracing from the DialogBox) I realised this is a very tedious and pointless task indeed as you'll probably not learn anything substantial doing so. I'd probably divide the unwrapping process into 4 distinct phases, the first is a long trace through calls to SetEnvironmentVariable which as you might expect sets up all those Armadillo internal variables such as DAYSLEFT, USESLEFT etc. The second stage executes the time-trial check, and its pretty good too, lots of subtle arithmetic tricks and checking of dates of other Windows files using CompareFileTime.

The third phase is based heavily on CreateFileA & WriteFile and sets up the temporary .TMP0 file, filling the .text section with 58h. The fourth phase is what I was most interested in, a call to WriteProcessMemory takes 0x3912 as nSize (the size of the .text section) and its here we can simply dump the memory pointer lpBuffer from SoftICE to a file and effect a virginity restoration (you'll benefit if you look at this as a BoundsChecker log).

So with Identify! v2.0 it sounds very simple indeed, but it isn't so :-), Armadillo also has a checkbox named Disable Debug/CopyMem protection which in the example above I left checked, lets see what effect this has on our preliminary technique above by running this through BoundsChecker too. Everything looks identical up until CreateProcessA and then things really differ, the key things to note are the CreateThread, Sleep, WriteProcessMemory & ResumeThread calls, with this option enabled our earlier technique will not work.

So all Armadillo is really doing is executing our thread in a suspended state, you'll see that WriteProcessMemory is called 4 times (1000h per call) to write the real code. This of course is merely a minor inconvenience, below I present the code from Identify! v2.0 (0x3F800 or 260,098 bytes need to be dumped). Just use a good HEX editor, say isn't UltraEdit just such a thing :-), the amount of bytes can be found several lines before this snippet.

0137:00401C9F PUSH EAX <-- Write from here (lpBuffer).
0137:00401CA0 PUSH EBX <-- Write here (lpBaseAddress).
0137:00401CA1 PUSH DWORD PTR [EBP+08]
0137:00401CA4 CALL EDI <-- WriteProcessMemory().
0137:00401CA6 TEST EAX,EAX <-- Check API status.
0137:00401CA8 JZ 00401C5C <-- Jump API failed.

Running our newly unwrapped Identify.exe we see from the about that our trial has so say expired, yet we know it hasn't really (or is it :-) ), otherwise you wouldn't be able to run the program. Perfectionists might like to null the legacy 58h bytes left at the end of the .text section, you could also disassemble the program if the mood takes you. If you feel so inclined, you might like also to unpack Armadillo itself.



--------------------------------------------------------------------------------



Packers Return to Main Index



--------------------------------------------------------------------------------
13th December 1999.

 





Details Related Popular More From Bruenet

Saturday, August 27, 2005

 

PS2Xbox



Debug Applications

Top

.:NAME:.
.:DESCRIPTION:.
.:AUTHOR:.
.:HOMEPAGE:.
.:DOWNLOAD:.
BanshInject GUIA GUI made for the Banshinject program, which was made by Kornkobjimmsta 
CdriveThis file adds \\Device\\Harddisk0\\Partition2 (C: drive) support to the XDK Launcher.Team-Assemblywww.team-assembly.com/ 
DebuggerClient/server package that will let you send send debug messages from your XBOX to your computer via TCP/IP. XPortxport.xbox-scene.com 
EvoX Skin CreatorA Evox Skin maker that requires .NET framework. Includes spinning evox logo's and full customizationevoxsc.anandpatel.com/ 
FdriveThis file adds \\Device\\Harddisk0\\Partition6 (F: drive) support to the XDK Launcher. PiXEL8pixel8.xboxhacker.net 
NodebugThis file reboots a debug xbox with debugging turned off. PiXEL8pixel8.xboxhacker.net 
PPFInfoThis will convert an ppf file to an txt file with all the offsets and the changesXBOX War3zusers.pandora.be/-_X_-/HCE/ 
Ram DelimitRemoves the 64mb limit flag that most apps/games have set. Useful if you upgraded your xbox to 128MB RAM. noptical 
XDebug ServerThis package contains the components required to format and send debug string messages from an XBox application under development to a target PC.www.xboxmediaplayer.de 
xend0rYou can configure it to connect to evox, send the neccesary xbe and files, and execute it once its finished. Hartecwww.dextrose.com 
xSwitchTurns off debug mode so complex 1.02 will even run certain retail games like halo (they don't work on complex1.02 due minor bug). It releases and renews the ip adress incase a network card has problems and the connection dies. www.dextrose.com 

Emulators

Top

.:NAME:.
.:DESCRIPTION:.
.:AUTHOR:.
.:HOMEPAGE:.
.:DOWNLOAD:.
AdamXEmulates Adam / Collecovison. Ported from AdamEm Xportxport.xbox-scene.com 
AtariXLBoxEmulates Atari 800/5200/130/320/XL/XE. Comes with the full feature set as all the other XPort releases!XPortxport.xbox-scene.com 
BlissIntellivision Emulator XPortxport.xbox-scene.com 
Bochsx86 emulator. Runs DOS and some older games, and can be convinced to load windows 3.11 and 95 (very slowly). XPortxport.xbox-scene.com 
CXBXA attempt in the works for a full xbox emulator on the pc. caustikwww.caustik.com 
Daedalus XA daedalus port to the xbox. Current version has no sound and small compatibilityHikaru90-26.port5.com/ 
DaphneXDaphne Laserdisc Arcade Emulatorkubik 
DC64-xCommodore 64 Emulator. BigBoyclassicgaming.dcemulation.com 
DgenGreat Genesis/Mastersystem emulator. XPortxport.xbox-scene.com 
DOSXBoxA 286/386 emulator for the xbox. Based on DosBox.XPortxport.xbox-scene.com/ 
DreamspecOpenXDK Spectrum emulator.. doesnt really work yet (no input) BigBoyclassicgaming.dcemulation.com 
ExtremeGBBuggy Gameboy/GBC emulator. Anon216.167.73.47/~emuxbox/extremegb.htm 
FBAxNear perfect CPS2 emulator. Lantus/anonymouswww.lantus-x.com 
FCE Ultra NES-xNES emulator XPortxport.xbox-scene.com 
FMSXBoxMSX/MSX2/MSX2+ emulator XPortxport.xbox-scene.com 
Frodo-XCommodore 64 emulator DragonZ, Lantus, and Flagg 
GBAXGameboy Advance emulator  
Gba_ch3Gameboy advance emulator Shinji Chiba 
GensSega CD and 32X emulator. The later versions after v3 are known as NeoGenesisXPortxport.xbox-scene.com 
Gens-XSega CD and 32X emulator. Hiraku90-26.port5.com 
Gnuboy_xboxGameboy / Gameboy Color Emulator XPortxport.xbox-scene.com 
HandyxAtari Lynx emulator  
Hugo-XPC Engine / Turbo Grafix 16 emulator XPortxport.xbox-scene.com 
Kaster-XSega Master System emulator SiRioKDwww.siriokds.emuita.it 
Kawa-XA port of the windows based emulator Kawaks. It allows to play titles from the Capcom CPS1, CPS2 and SNK NeoGeo library. Pretty much all games are supported, even these 90mb monsters that would normally not fit into the XBox's limited 64mb RAMMHz 
KegsXKegsX is an Apple IIgs/e/c/+ emulator. XportXport.Xbox-scene.com 
KoboXKoboX is a port of Kobo Deluxe for the XBox. XportXport.Xbox-scene.com 
Koleko-xColeco emulator SiRioKDwww.siriokds.emuita.it 
MAME-XA Multiple Arcade Machine Emulator Superfrowww.mame-x.net 
MAMEoXA Multiple Arcade Machine Emulator based upon superfr0's MAME-X sources.eabairsourceforge.net/projects/mameox/ 
MirrorMagicXMirrorMagicX is a port of Mirror Magic for the XBox. XportXport.Xbox-scene.com 
NeoGenesisA Sega Genesis/Megadrive/32X/SegaCD/MegaCD Emulator for XBox, It is the 2nd version of the Gens port release.XPortxport.xbox-scene.com 
NeoPopXNeo Geo Pocket emulator XPortxport.xbox-scene.com 
NesterxNES and SNES emulator. Hiraku90-26.port5.com 
pcsxboxA Playstation emulator that supports Memory Card manager, Save States, Cheat code searching, Gameshark cheat code database with codes for over 1700 games, Throttle/speed-up and MP3 XPortxport.xbox-scene.com 
PJ64-XA port of PJ64 to the xbox, mainly using Rice's opensource graphics plugin, and Zilmar's basic sound pluginAnonomous 
SarienXA Sierra AGI interpreter engine that will play many of the old Sierra adventure games including Leisure Suit Larry 1, Kings Quest 1, 2 and 3 and others. Lantuswww.lantus-x.com 
SC3xSega SC-1000/3000 emulator SiRioKDwww.siriokds.emuita.it 
ScummVMxA emulator for several classic point-and-click adventure games such as Monkey Island, Sam and Max, Full Throttle and Beneath a Steel Sky.GuyBrushwww.scummvm.org/ 
SMSplusSega Master System emulator XPortxport.xbox-scene.com 
Snes9x-XRough Snes9x port. Hiraku90-26.port5.com 
StellaAtari 2600 emulator. Z26X was later ported by XPort, and is superior to Stella.XPortxport.xbox-scene.com 
U64-XKiller instinct 1 and 2 emulatorlantuswww.lantus-x.com 
UAE-XAmiga emulator r0n.uaex.sf.net 
UltraXLEA port of the latest open source UltraHLEoDD 
VBAxGameboy Advance emulator COMPLEX (original) and Hiraku (unofficial)90-26.port5.com 
Vice20XVice20X is a Commodore VIC-20 emulator. XportXport.Xbox-scene.com 
Vice64XA Commodore 64 emulator with all the features of the normal XPort releases.XPortxport.xbox-scene.com 
VicePETXVicePETX is a Commodore PET emulator. XportXport.Xbox-scene.com 
WinstonXAtari ST emulator. XPortxport.xbox-scene.com 
WonderSwanXA wonderswam emulator.Xportxport.xbox-scene.com 
XBoyAdvanceA GBA/GBC/GB/SGB/SGB2 Emulator for XBox XPortxport.xbox-scene.com 
XenesisA excellent port of Gens to the xboxCarcharius 
XNESNES emulator Anonymous 
XPCE-XA port of XPCE to the Xbox game console. XPCE is a PC-Engine emulator. Hiraku90-26.port5.com 
xSnes9xNear perfect port of Snes9x. Better than the PC version in many aspects. Lantuswww.lantus-x.com 
z26A Atari 2600 emulator that plays supercharger games, and is more compatible than stellaXPort xport.xbox-scene.com 

Homebrew Games

Top

.:NAME:.
.:DESCRIPTION:.
.:AUTHOR:.
.:HOMEPAGE:.
.:DOWNLOAD:.
Baku Baku XA Baku Baku game written from scratchby SHiZNOwww.xfactordev.net/index.php 
BallzyHomebrew game where you move a marble around a maze Author: Team N`Vision  
BlasteroidsXYes, as the name fortell's, its a asteroids game...but more advanced.xfactordevwww.xfactordev.net 
Bubble Trouble SXOriginal game was for Mac, despite popular demand to port to windows the publisher denied, denied and denied...well now it really doesnt matter because i cloned the game and its almost exactly the same (despite a few differences, eg: useless powerups ignored)SHiZNOwww.xfactordev.net/ 
CentipedeHomebrew port of Centipede _Seagal_www.elotrolado.net 
Connect4A remake of the game Connect4! for the xbox.jippiemembers.lycos.co.uk/jippie666 
DoomXHomebrew port of the original doom. Lantuswww.lantus-x.com 
DuckShootA game, that, is explained quite well in the title: Shooting ducks.xfactordevwww.xfactordev.net 
Duke3d XDuke Nukem 3d for Xbox. Lantuswww.lantus-x.com 
InvaderXHomebrew clone of Invader Xfactorwww.xfactordev.net 
MineXweeperThe classic minesweeper game. jippiecome.to/jippie 
PacMan3DX3D pacman clone Xfactorwww.xfactordev.net 
PacmanXPacman clone Xfactorwww.xfactordev.net 
Quake2xExcellent Quake 2 port Repi 
QuakeXThis is a port of SDLQuake for the xboxlantuswww.lantus-x.com/ClassicX 
ROTTXRise of the Triad port Lantuswww.lantus-x.com 
SensitiveXA remake of the commodore 64 game Sensitive. Jamie Fullerwww.jamiefuller.co.uk 
StepManiaXStepManiaX is a StepMania port for XBox. XportXport.Xbox-scene.com 
WormSA homebrew game similar to old snakes game Xfactorwww.xfactordev.net 
X-MarblesAddictive puzzle game. Code based around 'bubbles' game for pocket-pc. Mastermind 
XBOMBERBOXInspired the Hudson-award-winning series Bomberman. xboxemul.free.fr/xbomberbox 
XpiredXPired is a port of X-Pired for the XBox XportXport.Xbox-scene.com 
Xpong3d Pong game XL Productions 
xRickA clone of Rick Dangerous - popular 1980's computer game.lantuswww.lantus-x.com/SDLx 
XSokoban - KonbanwaXsokoban is a port of the PC game to the xbox. It is a strategy maze type gameFuiRiPpu 

Xbox Applications

Top

.:NAME:.
.:DESCRIPTION:.
.:AUTHOR:.
.:HOMEPAGE:.
.:DOWNLOAD:.
007 TSOP Flash KitA kit prebuilt to help you flash your tsop with the 007 exploit method. Based on linux and raincoatwww.eurasia.nu 
Audio ExploitThere are serious bugs in the xbox song database file ST.DB. Using the supplied file in place can prepare your xbox to run any xbe after a combination of buttons in the audio part of the dashboard.Alex B 
AvalaunchA dashboard replacement, with such features as a IRC client, file manager, ftp server, telnet, etc. TJ_CRS,Blazed, and lyswww.teamavalaunch.com 
BigFontsA set of .xtf font files that are used as a exploit in order to run unsigned code. Based off Free-X's original 'Bert and Ernie' font file release. 
Bo-XLinkA xbox tunneling program used in conjunction with the XLink Messenger. First Tunneling service created on the xbox.XLinkwww.xboxlink.co.uk 
Boot.From.Media.Bios.Collection-COMPLEXA release of various Bootable From Media bios's for use in conjunction with the Phoenix Bios Loader.COMPLEX 
BoxplorerExcellent File management and ripping tool T'ulkas 
CDX MenuThis is the cdx menu that comes with the newer xbox games to launch demo's, music, and trailersTheNut 
CHIHIROXA Xbox dashboard replacement that has hikaru's various emulator ports included Hikaru90-26x.port5.com/ 
COMPLEX !loaderA dashboard made to be used with various exploits. It patches the kernel on the fly, making it useful for people without a modchip.COMPLEX 
Config MagicLock/Unlock Drives and manage your EEPROM with this useful tool Team Assembly.www.team-assembly.com 
DVD X-MENUMenu creator to launch apps/games from a CD or DVD, similar to that of Microsoft.Hacked.MenuX.XBOX-COMPLEX. kenny_fr 
DVD-XVersion 1 is an alternative to the Microsoft DVD Player and uses the remote. Version 2 does the same but without the remote. Team Xecuterwww.teamxecuter.com 
dvd2xboxBased upon XBCopy, it includes such features as multiple dvd copies without reboot, patches media flag, and warning if over 42 charactersWiSo 
EEPROM DumperDumps the contents of your Xbox EEPROM device to the TV screen. Dysfunction 
EEPROM magic Allows you to Backup and Restore your XBOX EEPROM from a valid 256 EEPROM image file Team-Assemblywww.teamassembly.com 
EEPromer Dumps your current eeprom to a .bin file, and can use a .bin file to program your eeprom. superfrowww.dextrose.com 
Eject and Close TrayTwo XBE"s whom purpose is to Eject and Close the tray when executedDgege 
Professional flash disc based on raincoat 0.5. Zip file includes an .iso ready to burn on dvdr or cdrw. Use Nero (win) or cdrecord (unix) to burn and make sure the disc is finalized (fixated/session closed). Boot the disc in your xbox and when prompted, insert a dvdr or cdrw with your preferred xbox bios named bios.bin (lower case). Flash progress is displayed on screen.www.eurasia.nuEvolution-X (dash)Excellent replacement dashboard and ftp server Team Evoxwww.evolutionx.info 
Using a buffer overflow, it allows any xbe to be executed from the dashboard.lists.netsys.com/pipermail/full-disclosure/2003-July/010895.htmlgentoox.shallax.com 
Allows to edit Halo maps directly on your Xboxusers.pandora.be/-_X_-/HCE/libSDLxSimple DirectMedia Layer is a cross-platform multimedia library designed to provide level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux port of "Civilization: Call To PowerLantuswww.lantus-x.com/SDLx/ 
LoaderConfigAllows you to create Evox menu items for loading different BFM BIOSes. Pass the path to the Phoenix loader and the name of the config file to use.NghtShd 
MediaXMenuAlternative Dashboard with alot of features. BenJeremy 
Microsoft.Hacked.MenuX.XBOX-COMPLEXUsed to create iso's with multiple games in one, with a menu to choose from. Originally made by microsoft for game demo's COMPLEX 
MIKXBOXThis is a port of MikMod/MikWin 3.1.10 to XBOX for all the tracker music fans. It supports 18 different formats.PeteGabe 
NexgenAn alternative dashboard. xecuterwww.teamxecuter.com 
Phoenix Bios LoaderBased off the linux XBE loader, when executed, this will load a bootable from media bios thats within its folder, on ANY retail/debug systemThe Phoenix Project 
PX HD LoaderRipping tool used to extract games from dvd to the harddrive. Project-X 
Shutdown_and_RebootXBEs that when run shutdown and reboot your system anonymous 
Slayers Evox InstallerA Evolution-x installer pre-packaged with all the well known xbox applications. Has such functions as formatting harddrives, and setting up apps.Slayer 
SuperDiscA Evolution-X installer disk similar to Slayers 
TATX "AnyDash" pluginBoot Any Dashboard with TATX Debug Dual, specify any Disk/partition and .xbe to load in a file, works with Any Debug BIOS. Team Assemblywww.team-assembly.com 
UnleashXA replacement dashboard for the xbox. Has Evox feel, with a mix of avalaunch/nexgen look. Includes all the basics, like FTP, auto search games and apps. Includes a built in filemanager. 
Video Mode SelectLets you switch the xbox between PAL and NTSC. Some games have protection and will not display video when run on the "wrong" mode. Also, dvd videos aren't smooth when played in the wrong setting.. i.e. if a PAL user wants to play a NTSC dvd, he has to switch to ntsc to get smooth playback. Enigmah 
X-PassA password protection utility for the xbox, that prevents a user from launchinge xbe's without permission.Smuggl0rwww.xfactordev.net 
X-SelectorA dashboard and application selector for your Xbox. Features quick-pick menus, and selectable default dashboard. Includes password protection to prevent access (when not booting via the DVD drive)BenJermy 
XBC-LinkA simple tool which lets you use XBConnect (another popular XBox tunnel application) on your XBox - rather like Bo-XLinkXLinkwww.xboxlink.co.uk/xbclink-about.php 
XBCopyFirst xbox game extraction tool that went straight from the DVD drive to the hardrive. Flagg- 
XBFileZillaA port of the FileZilla FTP server to the XBox console. It is intended to be used as a module in other XBox software. sourceforge.net 
XBftpFTP client TheJoker_CRSwww.crusaders.no 
XBMSP4JavaThis is a Java xbmsp-server (for XboxMediaPlayer and XboxMediaCenter). The implementation follows XBMS 0.30.6 quite closely. The server requires JRE/JDK 1.4.x. sourceforge.net/projects/xbplayer/ 
XBOX MEDIA CENTER (XBMC)XBMC is a media center for the xbox. It is based upon XBMP sources, and is a attempt to make itself more solid than XBMP.www.xboxmediacenter.de 
Xbox Media PlayerExcellent opensource media player capable of streaming video from your pc as well as running it from cd/hard drive. Authors: d7o3g4q, RUNTiME, and Frodo www.xboxmediaplayer.de 
Xbox-OSAlternative dashboard SinnerSolxbox-os.kl0wn.com 
Xbox_WatchSNMP clock updater Tser 
XcommanderFile management tool Zhivago 
Xdisca new front end tool for extract-xiso for all the Mac OS X users trackfive 
XFlashThe first standalone flash program made for the xbox. Dysfunction 
XMenu_XBox_Title_Launcher_Repack-WAMXMenu is an app that can be placed on your own CD/DVD compilations enabling you to launch one of several titles using your XBOX controller. WAM 
XpadText editor Pagefault 
xToolboxFile management tool Tritium 
YAMPOpensource media player that later merged with Xbox Media Player Frodowww.xboxmediaplayer.de 

PC Applications

Top

.:NAME:.
.:DESCRIPTION:.
.:AUTHOR:.
.:HOMEPAGE:.
.:DOWNLOAD:.
5659 Dash Full NoXip Resign PatchThis Patch is only for XBDash Live 2.0.17e4cd00 (or named 5659). Will allow you to mod original xip's without having to resign your xboxdash.xbe. Adding xip's still need a resign but only once, after you can modify your freshly added xip's without resigning. Moreover this patch include no-reboot on XBDash (IGR still works).fuckdbwww.xboxdash.net 
AquaductA game server similar to xbconnect made for Mac OS X. Postposepostpose.com 
AseToXMwill convert a 3DMax exported ASE file to XM format and XM to ASE. Supports mesh and texturing.jimk 
AVAxmlA XML file generator for AvalaunchA_Snowman 
baMXMconfiga utility to help you modify the MXM.XML file that MXM uses to run. It will download the XML file from your XBox, parse it, and upload it back when you're done editing.jinx_removing 
baRenameXA file renaming utility to make files Xbox legal. It has a variety of options to provide flexibility when naming files. Also has a preview window so that you can preview what files will be named based on the various user defined settings.jinx_removing 
BatchFile MakerA concept release, to show one of the upcoming features that may be implemented in WinHME GUIjimmsta 
Bios checkerBased on XFLASH source code of Dysfunction. Its purpose is to check which version bios you have. CrackJackwww.darkmoon.org 
Bios slicerCuts a 1MB bios into 256k. WiNNe 
BioXX_FlasherMade to flash a BioXX aka open xbox modchip. LabMaster 
bxStreamAn XNS Protocol server program that will you let share your media to your XBOX media playerWindragz 
CartographerA halo map editor that supports editing of images, titles and descriptions.eXentricwww.solersoft.com/Projects/Cartographer/ 
ccXStreamA XStream server made for windows and linux. PuhPuhwww.xboxmediaplayer.de 
CDDISSECTThis tool dumps all data tracks on a CD to ISO files, dumps\ all audio tracks on a CD to MP3 files, and creates a cue sheet with all the proper filenames. Used mainly for HUGO PCE cd's. XPortxport.xbox-scene.com 
CheapLPCCheapLPC is designed to pretend to be a slow LPC host so you can talk to LPC interface devices directly from your PC Printer port. This means you will be able to program LPC flashes, for exampleandywww.warmcat.com/milksop/cheapLPC.html 
CloneXBA iso creation tool that utilizes the xbox's ftp server to grab the contents straight off the xbox dvd-rom, and is saved on your PC's harddrive.CloneXB 
Copyhaunters XBEISO patcherA program that patches the xbe directly or from within a iso to change a media directory value that was altered in later xbox games. Copyhaunters 
CraxtionCreate and Extract *true* XBOX Iso using GDFImage and XDFSextract. Craxtion has also implemented a MultiGame Wizard that simplifies the process of creating MultiGame Disc's. Craxtionusers.bestweb.net 
CXBEConverts from Windows "EXE" format into the XBox "XBE" format. CXBE is already functional, and is being used as an integral part of the OpenXDK project. caustikwww.caustik.com 
dds2imgConverts dds files to other formats. dds is an image format used some xbox games like DOA and DOAXVB. NghtShd 
DX-DexbeView/Edit XBE-Data and extract Code/Data Sections. Dextrosewww.dextrose.com 
DX-DexipExtract files from *.xip files found on the XBOX HDD. Dextrosewww.dextrose.com 
Easy Phoenix Bios LoaderDesigned to help the installation of xbox exploits. Current features are backup/restore original HD config, automated installation of choosen exploit, and more.woogerworks.servehttp.com/epi 
EEPMODEasily edit eeprom dumps so they can be reflashed to your eeprom (using a program such as eepromer on the xbox). Authors: superfro / Dextrose www.dextrose.com 
Evo previewerA html based evolution-x configuration tool that has real time visualization. !DUR 
EvoX configuratorA tool to help configure the evolutionx .ini file. JayZee 
EvoX dashboard patcherThis tool will allow you patch your evolution-x to support a 7th partitionoz_paulb 
Evox Skin DesignerA skin designer program used to make skins for evolution-x. kAMiKAZekamikaze.linuxgods.com 
EvoX SkinnerA Windows program to aid you in editing the 'menu.ini' file used the Evolution-X program, as a alternative to editing it manually in a text editor.keiths 
EvtoolA bios editor based on xbtool - for the evolutionx m8+ biosNghtShdhome.alltel.net/nghtshd/evtool.html 
exmenuedOne of the First Evolution-x ini editors. has a built in ftp client to allow you to connect to your xbox to edit your evox ini in a friendly manner. Supports only first few versions of evolution-xkeiths  
extract-xisoA XBOX iso extraction, and creation tool, that is fully optimized for the xbox iso format. All other iso creation tools reley upon Microsoft's GDFIMAGE tool, which was inefficiently written. Versions include a linux, mac osx and freebsdin 
FanCboxWell, this program lets you get fancy with your bios... Change the color of the XBOX logo, remove animation, replace the error screen, etc..superfro / Dextrosewww.dextrose.com 
Fast xbx2dds2imgXBX <-> DDS <-> IMG (Support .tga, .bmp, .gif, .ppm, .jpg, .tif)fuckdbwww.xboxdash.net 
Game Size EditorAllows you to edit the dat files from "XBOX Game Size" so you change, add & delete items from the listXBOX War3z 
GdfimageA Microsoft made tool from the XDK that compiles folders/files into .iso format. Microsoftwww.microsoft.com 
GreenProgGreenProg software is for use with the GreenProgrammer available at http://CheapLPC.com . It will program the SST49LF020, read back, and verify the contents of the chip.GreenGiantcheaplpc.com/greenprog/ 
Halo Map PatcherThis program allows the user to make patches for Halo's maps. No need for third party apps the apply patches with, this makes the patch in EXE format. This allows users who dont have access to cache make patches for everyone. CLuis 
Halo Map Tools(Formerly known as Halo Sound Tools) A tool that allow you to extract as well as inject over any existing sound data in a Halo Xbox map file. Also supports texture extraction/injection.MonoxideC 
Halo Patch MakerA utility to make ppf files to apply on halo CLuis 
Halo XBE HackerA editing program that allows you to change some of the text strings in HaloCLuis 
Halo XBox Weapon EditorHalo xbox weapon editor is a program to simplify the editing much of the data stored in the weapon structuretjc's 
Hard-Drive PasswordA safe Macintosh hard drive utility to UNLOCK a security-locked ATA-IDE hard drive when the hard drive MASTER password is known (For MAC) 
HCE CustomizerA skin maker for HCE, Halo Cache Editor by XBOX_War3z . Supports All features supported in the skinCLuis & raz0r 
Hdd DriverLets you access files on the Xbox hard drive from windows. You can copy from it and to it through a windows GUI. T00GG 
Hdd PassA linux compiled app used to generate xbox harddrive passwords. SpeedBump 
Hdd PrepareUsed to zero a harddrive in preperation to put it into your xbox. Ziki 
Hdd UnlockA set of tools which enable you to create a boot disc that allows you to lock/unlock a xbox HD on your pc through dos. Imh0 
HexbeAn application that easily allows you to change up to 39 textures in "xboxdash.xbe" directly over ftp in just a couple of clicksXtech & Vulgusprofanum 
HT EditorA file viewer, editor and analyzer for text, binary, Ionichte.sourceforge.net 
Image to xbxDesigned to create title.xbx files from images to use with such programs like nexgen. Team HoRnEyDvLvolure.zapto.org 
ISO ReaderUsed to read, extract, and preview files from the xbox iso format. ector^mdl^dxm 
IsoMakerUsed to create a xbox iso image based upon microsoft's gdfimage. CdRsKuLLwww.x-forums.co.uk 
ISOX CreatorUsed to create a xbox iso image. HyperG, sd00, and Chossy 
JaxstreamerStream server for linux. It works well with xbmp 2.2. LIM 
Live 2.0 XboxDash-Hacked-tHcA Hack of the Microsoft 2.0 live dashboard. Includes Color changes and added menu entries.tHcwww.xboxdash.net 
LiveinfoA very usefull all around tool for editing configurations in your xbox. Edit Serial, Mac, OnlineKey, HDDKey, XBERegion, Confounder, Video Mode and DVDZone, convert EEPROM images between V1.0 and V1.1, view HDD Password of attached IDE Drive and much more. Team Assemblywww.team-assembly.com 
LOGO-XThis program allows you to change logos, such as the 'microsoft' text upon boot. logo-x made buy superfro, GUI GreenGian 
Mac OS X Box ToolsA GUI interface for the Mac OSX version of extract-xisoEl_Oy 
Map ModifierA Halo Map ModifierCLuis 
mcpx1.1 ToolkitThe latest way of hacking a bios, factoring the RSA key inside the intro flashfranz 
Media X Project CreatorA configuration tool used to help create .xml files for Medix X Menu (MXM). headstrong 
Mega X-KeyA program used to transfer saves between the xbox and/or their product, the mega x-key, which is a usb based memory card alternative with up to 32mb capacity. xbox-saves.comwww.xbox-saves.com 
milkMilk is a command-line application that controls Milksop, CheapLPC, Filtror and Jektor Jtag Programmingandywww.warmcat.com/milksop/milk.html 
MP3 FAT-X RenamerA Win32 application (coded in Delphi) which allow you to transfer (and synchronize) your MP3 collection from your computer to the Xbox's build-in hard drive.mp3fatx.de.vu/ 
Mp3ImageTagExtractorThis utility is ideal for building thumbnails of album art suitable for use with the XBOX Media player.mp3imagetagextr.sourceforge.net/ 
MXM SkinnerA WYSIWYG (almost) program, done in VB to make skins for MediaXMenugeniusalz 
Mxm Xml EditorA MediaXmenu xml editor program. TotalEcl 
Myx-liteExtremely stripped-down version of Myxomatosis for a very basic XML auto-directory menu authoring solution for Media X Menu .9m or laterStrongBad 
MyxomatosisA Complete XML menu authoring solution for Media X Menu .9m or later StrongBad 
namechangerA windows based program that has a built in ftp client that allows you to connect to your xbox and change the boxes name. 
New HD EvoXA installer that sets up evolution-x on new harddrives. Auto formats it, and installs apps and MS dashboard as long as you include it on the cd. GreenGian 
Nexgen RemoteControl the features of neXgen through your pc. CX2cx2.cxgames.co.uk 
neXgen-eration RemoteA nexgen 'installer' and configuration tool used through nexgen/evolution-x's ftp server. xbefinderwww.xbefinder.tk 
OpenGLXMviewerAn XM viewer based off Voltaics extracted xm files. It will display the xm mesh using OpenGL instead of D3D.jimk 
OpenXDKA opensource project made to replace the microsoft xbox development kit.Project admin: caustik(Aaron Robinson) All developers: caustik(Aaron Robinson), dreamspec(Bigboy), ector, fma(Martinez Fabrice), hartec(Dextrose), Lantus, pricetfa(Price), siliconice(Dan Johnson -Project Manager), superfro sourceforge.net/projects/openxdk 
Operation ProjectxA brute force operation to find the private key to sign XBOX xbe files. www.operationprojectx.com 
OzXFlashFirst 'legal' flasher. Used on a cd to flash the OzX chip. OzX teamwww.ozxchip.com 
OZXMemoryStick ExplorerA tool for loading and saving FATX Images onto USB memory Sticks and USB memory devices for use in the X-Box Console for transferring and saving Save Games, Music and Exploits.OzXChipwww.ozxchip.com 
ParcheadorPatches XBE's with the XDK to make it run on retail modded xbox's. Yursoftwww.xbox-dev.cjb.net 
pixitpixit is a PC utility to manipulate Xbox Archive files (XIP)Voltaic 
PreXBoxCopyToolA tool used to renamed files and directories using configurable intelligence, to optimize for fatx partitioning. Very good for renaming ROM's. AceHack @ Project BombRock 
Progressive PatcherPatches xbe to make the app/game/DVD compatible with progressive scan displays. Only info availble about who made it is "The friend of Jerbil2k"  
QuixThis is a excellent iso utility. Has double optimization, burst mode transfers, game manager...and too much else to list. jjsmitherforums.xbox-scene.com/index.php?act=SF&f=342 
QwixQwix is a new Xbox and ISO management tool for the Windows platform. Connection manager makes it easy to keep settings specific to different Xboxes or dashboards. Offers alot of management and useful features in combination with Avalaunch dashboard. Also allows extremely fast filetransfers between PC and Xbox.Team Avalaunchwww.teamavalaunch.com/ 
Relax serverStream server program that will let share your media to XBMP for viewing. remcowww.raforce.nl 
ScgenA linux shell script that will generate xbmp .sc files of the top 20 Shoutcast streams. echto 
sfd2mpgA tool written to utilize a few other tools that work in conjunction to convert sfd files into mpg format. XB0X_Mod 
SHOUTcastPlsDownloaderThis Utility navigates the excellent shoutcast.com web site and downloads to a local directory a copy of the PLS files referenced on the websiteSanjay Madhavanmp3imagetagextr.sourceforge.net/ShoutcastPlsDownloader/index.html 
ShoutCocoaThis MacOS X program Fetches the HTML from a given "Shoutcast.com">"-URL and then generates XBoxMediaPlayer ".sc" files for all contained shoutcast stream playlists. ravemaxwww.dextrose.com 
Creates a XP/Win2k/NT service which runs in the background and periodically scrapes the shoutcast site, creating .sc files, tbn's and genre folders in a root folder accessible either RelaX or some other streaming server. SimpleX ISO v0.2aA easy to use xbox iso creator/extractor program. XoXoX 
A evox skinner. www.xboxzone.co.kr 
Sparkedit is a mapviewer for xbox halo. It was created to give modders insight into how the maps were constructed by the original developers. At the moment you can't edit anything, just look. It's possible to preview cachefile mods that change textures.www.halomods.comUK TV GrabberA Windows application that grabs a UK TV listings from the web to a file that can be used by XBMP's TV-Guide. It supports all UK channels and includes a logo pack for those that prefer the logo's instead of text.BigLarrywww.x-digital.addr.com/ 
An all in one program for your hard drive. This Program is based on source code from Martin Gerdes, an editor of the german "c't" magazine.Now will Lock your hard drive or unlock and disable passwords all in one program !! 2) Will backup your password to a file and will not over-write it 3) Password backup file is time stamped. 4) No need to use atapwd.exe to view drive status.You can see at a glance if your drive is locked or unlocked. 5) Now you only have to enter your password one time. Requirements 1) UnLockX.exe must be run in pure DOS Mode,No windows dos box. 2) Drive must be on the primary IDE channel ( Master Or Slave)mruell 
a program allowing you to change much of the data stored in the weapon structure (or metadata) for Halo. It gives you control over almost every aspect of the weapon.www.angelfire.com/oz/tjc2k4/WinHME GUIA halo map editor GUIjimmstausers.rcn.com/jmg68/ 
Program made to flash the matrix. Originally based upon the Milksop code. www.xodus-chip.com 
A easy to use xbox iso creation tool based on GDFimage. VB6 Runtimes required.Bob McGeeX-Link MessengerA Xbox tunneling software similar to the popular XBconnect.www.xboxlink.co.uk 
A XAP file editor, that will also import xaps directly from XIP fileswww.xb-news.co.uk 
XbCapture is a utility to take screen shots from your xbox utilizing the XDK www.northsouth.tk/xbe finderA tool that uses the xbox ftp server to connect and find xbe's. www.xbefinder.tk 
XBE Renamer is a program which can modify the default Title Names for XBE's. www.loser-console.org 
Was written by franz@caos.at from xbox linux, and was based upon the original XBE Dumper by Michael Steil. It has been ported to windows in usage with signing xbe's for the 007 gamesave trick, aswell as the dashboard font exploit. www.xbox-linux.comXBEMIDPA patcher to change a media directory value that was altered in later xbox games. L!M!T 
The first publicly available packer and crypter for XBOX executable files. 
A batch file that gives your computer a temporary private IP address for FTPing to your Xbox, and reassigns a DHCP address after your FTP session has ended.XBINS-TIRCThis is a IRC client based on MIRC to automate the process of using xbins. {Ghost}cowww.trackpads.net/ghost/html/index.php 
An iso extraction utillity for xdvdfs images for linux. sourceforge.net 
A AppleScript Studio Front-End for various *NIX binaries and config files. It was built to handle your media for use with the Xbox Media Player. XBMP.Config.HelperA tool to help you configure xbox media player. Authors: HyperG, sd00, and ChossyHyperG, sd00, and Chossy 
A configuration tool used to help edit your XBMP .xml file. www.allxboxskins.comwipux2.wifo.uni-mannheim.de 
A gui for the xbox media server. Current systems supported is OSX and FreeBSDXbox Backup ToolkitA Native OS X Gui/util that allows you to backup your original retail game and FTP to PC, and then ISO. trackfive 
Linux application that allows files on an xbox hard disk to be dumped out.  
A driver that enables the Xbox USB gamepad, DVD remote, and other Xbox devices on Mac OS Xhomepage.mac.com/walisser/xboxhiddriver/XBOX ISOA xbox iso creator program based on Microsofts gdfimage tool. cryogenwww.siriokds.emuita.it 
Allows you to change your XBOX's name. www.xboxdeveloper.netwww.xbox-saves.com 
Was the first step in a project to create xbe's without the use of the XDK. www.dextrose.comxboxdash dvd region free patchA MS Dashboard Dvd Region Free Patchslyver 
A patching program that allows you to alter certian elements of your original live enabled microsoft dashboard.www.xboxdash.netxboxify.berlios.de 
Tool used to create xbox iso's without the use of gdfimage. www.tehnewxboxside.deXBThingyAn easy way to keep all your games and apps spread across multiple drives or directories cleanly organized. Parnicwww.parnic.com 
A bios editor based on the idea of superfro's fanCbox. Does such things as change the color of the xbox logo upon boot, remove animation, change boot partition etc.. home.alltel.net/nghtshd/xbtool.htmlMomDadwww.allxboxskins.com 
A codec that allows you to play and encode xbox ADPCM content on your pc. Released XConfiguratorAllows you to open Avalaunch Xml configuration file and reads all config parameters from it. Full Avalaunch Config file object support.cchojinwww.chojin.be/xconfig/ 
A skin editor for use with evolution-x skins. xcover.xodus-chip.com/www.codeunderground.com 
Previously known as WinXAP, A program to build menus and submenus in the original xboxdashboard.XDFSextractWill print out the contents of a XDFS formated iSO file in a format. IPS & Team PS2Ownz 
View and extract files from the xbox iso format (XDFS). www.xboxdeveloper.net 
Create and Manage ALL known bios's with full bios programming functions. www.teamxecuter.comXeonA XBOX emulator for windows. It currently only supports one commercial game (halo), still in early development._SF_ 
A xbox game refernce utility that shows various statistics about the selected xbox game. Includes a browser that directs to xbox.com for game refernces aswell.archon.cs.unm.edu 
A PC driver for the XBOX controller. xpad.xbox-scene.comxISOA xbox iso extraction and creation tool. Yursoftwww.yursoft.com 
A iso extraction utility that can load and extract a iso directly to the xbox via ftp. limit.agent55.com 
A Xbox ISO creation/extraction utility based off the sources of xISO xFERXMconverterXm converter was created to convert many xm files at oncejimk 
Drag any files onto the app and set the destination path, the app will then watch for date stamp changes and send on change-=StuAngel=-XcalibEr 
XMreader will allow you to read what an XM file has(face count, verts,coord, ect..).XmViewerA program to view XMV files.Voltaic 
A Shoutcast/Icecast stream relayer for use with XBMP. Authors: Tusse/nonSense 
Extracts DDS files from a XPR filedoa3booster.bravepages.com/XSaveSigCalculates and displays the www.xbox-saves.comwww.xbox-saves.com 
Calculates and displays the "signature" for XBox game save data based on a www.xbox-saves.comwww.osirishq.com 
XStream Network is an installable service for Windows computers running Microsoft's .NET Framework. It will enable your XBOX to connect to your PC across a LAN and stream movies live. xtender scramblerScrambles/Descrambles the xtender bios. TOSHi 
Create multigames menu disk using the MenuX of a simple and fast form. It allows the use of themes (send, download, manage) and to copy the games to the root directory of the DVD, since some games only works if they are in the root directory of the DVD.zonaxbox.indicedivx.com/modules.php?name=zxb&d_op=Ingles 

Linux Distributions & Applicationss

Top

.:NAME:.
.:DESCRIPTION:.
.:AUTHOR:.
.:HOMEPAGE:.
.:DOWNLOAD:.
dyne:bolicA GNU/Linux distribution simply running from a CD, without the need to install anything, able to recognize most of your devices and periferals: sound, video, TV, network cards and more.www.dynebolic.orgwww.dynebolic.org 
Ed's Xbox Debian GNU/LinuxEd's Debian is a full Debian-based Linux distribution which contains the latest features of Xbox Linux development. Edwww.xbox-linux.com 
Ed'x XebianThis is the title for the previously named Ed's Debian. xbox-linux.sourceforge.net/ 
GentooXA port of Gentoo for the xbox. ShALLaXgentoox.shallax.com 
HaloMapExpanderHME is a Halo map editing tool for win32 and linuxsourceforge.net/project/showfiles.php?group_id=93876&release_id=198533 
SlothboxSlothbox is a Linux distribution based on Slackware, targeted at the Xboxslaxbox.atxconsulting.com 
Xbox FreevoFreevo (don't mix up with Free-Evox!) is a multimedia shell around Mplayer or Xine. It is very easyly customisable using plugins. It is written in Pythonxbox-linux.sourceforge.net/docs/multimedia.html 
Xbox Linux Live SystemA Linux system that does not install on hard disk and supports plugins. www.xbox-linux.com 
Xbox Linux Mandrake 9.0An Xbox port of the Mandrake Linux 9.0 distribution. It is the same as a standard 1-CD installation of Mandrake 9 and fully compatible with it. www.xbox-linux.com 

BIOS

Top

.:NAME:.
.:DESCRIPTION:.
.:AUTHOR:.
.:HOMEPAGE:.
.:DOWNLOAD:.
COMPLEXCOMPLEX has released numerous original MS bios's, including retail and debug.COMPLEX 
CromwellMost Current Version: 2.27 (beta). The only linux bios availible. Used to boot the various distributions availible for the xbox. For futher info you must read check out the latest cvs.www.xbox-linux.net 
Dominion-XMost current version: 0902. Based on the Evolution-X D6 bios, this features the latest media flag patching support, with > 137GB supportDominion-X 
Enigmah-XMost Current Version: RIP. Extracted from the first generation modchip www.china-enigmah.com 
Evolution-XMost Current Version: M7. The Crew that brought you the first bios and dashboard release. Current features are: HD Replace, no patch hack, macrovision removed, eject trick and auto media patch.Evolution-Xwww.evolutionx.info 
OzXBiosMost Current Version: 2.12. OzXBios (Cromwell) is a customized version of the Cromwell bios for distribution with the OzXChip modchip, it has been changed to incorporate a modchip flashing feature that requires a CD with BIOS.BIN to be inserted in the XBox's DVD-Rom drive. Once a CD is inserted into the drive the bios looks for a BIOS.BIN file and if it is found it will flash this onto the modchip (provided it has flash support in the bios for the modchip type), if the BIOS.BIN file is not found (or is the wrong size) the bios will attempt to boot Linux off the CD.OzXChip & Team OzXwww.ozxchip.com 
PandoraMost Current Version: RIP. Part of the second generation of modchips, this bios was ripped off a Pandora chip. Based on (xtender / enigmah ?) code. Supports Macrovision off, no patch hack, and eject trick.www.pandorachip.com/ 
Team-AssemblyMust Current Version: Dual Debug. This bios, based off COMPLEX's 1.03 Debug bios release, supports both 1.0 and 1.1 debug xbox's.Team-Assemblywww.team-assembly.com 
Xecuter2Most Current Version: 4983.xx. Features include IGR, no patch hack 1/2, Macrovision off, debug, eject trick, eject fix, HD Replacement, xbox live blocking, clock error checking, and no dvd rom check. | 4979.xx supports launching of embedded xbe's. It was released with a ftp server built in.Team Xecuterwww.teamxecuter.com 
XtenderMost Current Version: 1.3. The first TSOP replacement bios ripped, it supports No Macrovision(only on 1.1), no patch hack(only on 1.1) and eject trick(only on 1.0)Xtenderwww.xtender.info 

Archives

2005-07-24   2005-07-31   2005-08-21   2005-12-11  

This page is powered by Blogger. Isn't yours?