Jump to content
RealModScene

igor242

Members
  • Content Count

    85
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by igor242

  1. Below is an Unofficial ReActPSN v2.23b fix update for any Rebug 4.XX PS3 CFW users whose USB device is named dev_usb006. I had this issue but managed to patch the ReActPSN ELF. After failing to get v2.23 ReActPSN working on 4.30.1 and 4.21.2 Rebug's, I found out that the ReActPSN ELF had hardcoded dev_usb000 paths. Since my usb path (and I would assume others too, since it's referenced by Rebug themselves) is dev_usb006, ReActPSN wouldn't work. I have tried this on Rebug 4.21.2 only, but as long as your usb device is named dev_usb006, and your vsh.self is patched, I see no reason this wouldn't work on other 4.x CFW's. The same issues as with v2.23 remain. I.e. a message that the system was shut down improperly and that it has to repair filesystem after ReActPSN reboots the PS3. THIS FIX IS FOR 4.x CFW USERS WHOSE USB DEVICE IS NAMED dev_usb006 ONLY! Of course you install and run this on your own risk. Credits go to the original creators. Enjoy the party! Source(PS3NEWS) reActPSN_v2.23b_Rebug421-430.rar
  2. News 05 - 01 - 2013 Cobra-USB CFW 4.30+ News Cobra users will be pleased to hear that the Cobra USB CFW 4.30+ is currently being BETA tested. We are pleased to confirm that the PS1, PS2, PSP and all other Cobra USB features have already been integrated into our CFW. Thanks to all Cobra users for their patience and support. * Please note that PS2 games on non backwards compatible machines is no longer supported, since this functionality was removed in 4.30 OFW. * Source(Cobra-USB)
  3. Now updated to 1.40 by PS3ITA Iris Manager is now on an updating frenzy, and PS3ITA has decided to release version 1.40 of the open-source, Wii UI-style backup manager Iris Manager has now been updated to version 1.40 by the PS3ITA scene group instead of D_Skywalk/Estwald, which now extends firmware support to the PS3ITA CFW4.21DEX and all REBUG REX firmwares in both retail (CEX) and debug (DEX) modes, and with the application package only taking up 1MB of storage space, this backup manager is ideal for those who only just want a simple and child-friendly backup manager without the more complex non-backup manager-related features that multiMAN has while saving up on the storage space for games and other important PS3-related files and media. Changelog: v1.40 - Support for ps3ita cfw 4.21 dex Support for rebug cfw in cex & dex mode SOURCE CODE: Iris Manager 1.40 - PS3ITA Release Source Code - PS3ITA OFFICAL SITE: PS3ITA Source(PS3Crunch) irismanager-4-x-(4.21dex_support).rar
  4. Following up on my last version, today I have updated McLowSlimMod to version 0.3 for Rogero 4.30 v2.03 PS3 CFW with the changes outlined below. OK here is McLow Mod v0.3 thx a lot to szalay for getting the package manager working!!! and thanx to exeedy for the alphabetical order function!!! McLow Mod v0.3 changelog: Package manager is now working from XMB!!! Alphabetical order added to PlayStation section!!! Have fun PS: Also the app home folder is now under homebrew... Source(PS3NEWS) McLowMod-V-0.3.rar
  5. Hi people, I wish you all a happy new year 2013 To begin it nice I will release a new tool called "PS PKG File Manager". With this tool you can easily: - Download PKG Files using the PS Multi Tools PS3 Live Menu (Mostly up2date) - Sign PKG Files - Decrypt & Extract PKG Files - Create PKG Files for PS3 & PSP. *Infos: Packages on top are extracted Packages which can be build with the tool. Packages on the bottom are not yet extracted (tool allows extracting SIGNED AND UNSIGNED** files). On the right you can see all the available options for now. On the very right you see a windows which shows all the informations about a pkg file. **If you get the message that you can't extract a debug package you only need to sign it and extract it again. Source(PS3HAX) PS_PKG_File_Manager_v1.rar
  6. German ps3 developer KDSBest has released a ‘tool’ to apply PS3usercheat hacks to eboots. // Patch PS3UserCheat Cheat to an ELF File // 1. Decrypt EBOOT.BIN to EBOOT.ELF // 2. Provide PATCH.TXT with the following Format (From PS3 Cheats Editor) // Example PATCH.TXT //00002000 0002A878 33FE034C // Another Example of PATCH.TXT //00002000 010AF534 00000000 //00002000 010AF538 00000000 //00002000 010AF53C 00000000 //00002000 010AF540 00000000 // 3. Run this Code // 4. Rencrypt EBOOT.KDSBest.ELF to EBOOT.BIN // 5. Replace EBOOT.BIN of your game with the new one // Sorry I couldn't provide a One Click Tool I lack in time // the 0000c001 patches are button mapping for cheat pkgs, since we fixed patch it this isn't supported. // Example Tales of Grace F Move Fast Speed (Press []) is the following PATCH.TXT //00002000 007DF6FC 3F800000 //0000C001 00000000 00000080 //00002000 007DF6FC 3FE00000 // If you don't want to patch the speed the PATCH.TXT you provide //00002000 007DF6FC 3F800000 // If you want constant faster speed you provide //00002000 007DF6FC 3FE00000 // It reads the following way // 00002000 = Patch Memory (Eboot) // 0000C001 = Button Event // Look how easy // If nothing is pressed // { //00002000 007DF6FC 3F800000 => Patch Memory At 007DF6FC to 3F800000 // } //0000C001 00000000 00000080 => else If(Button Event(00000080)) => 00000080 = [] // { //00002000 007DF6FC 3FE00000 => Patch Memory At 007DF6FC to 3FE00000 // } // Why I write this tool // I provided the patches by hand // 1. Load ELF in IDA // 2. Check bytes at Address // 3. Search Bytes from IDA (Which can parse the elf header and knows the exact locations) in Hex Editor // 4. Patch Bytes by hand // 5. .... // Why is this tool written like bullshit // I don't have the mood to write it clean using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace Patch_ELF_PS3UserCheat { class Program { public struct ELFLocation { public uint Offset; public uint OffsetFile; public uint Size; } public struct Patch { public uint Offset; public uint PatchValue; } public static uint byteToUInt(byte[] { return byteToUInt(b, 0); } public static uint byteToUInt(byte[] b, int offset) { uint a = (uint)b[offset] << 24; a |= (uint)b[offset + 1] << 16; a |= (uint)b[offset + 2] << 8; a |= (uint)b[offset + 3] << 0; return a; } public static byte[] uintToByte(uint i) { byte[] b = new byte[4]; b[0] = (byte)((i >> 24) & 0xFF); b[1] = (byte)((i >> 16) & 0xFF); b[2] = (byte)((i >> 8) & 0xFF); b[3] = (byte)((i) & 0xFF); return b; } public static int LoadElfPHDR(BinaryReader br, List Elf, uint phdr_offset, uint phdr_size, uint i) { byte[] phdr = new byte[phdr_size]; br.BaseStream.Seek(phdr_offset + phdr_size * i, SeekOrigin.Begin); br.Read(phdr, 0, phdr.Length); ELFLocation elfLocation = new ELFLocation(); elfLocation.OffsetFile = byteToUInt(phdr, 0x0C); elfLocation.Offset = byteToUInt(phdr, 0x14); elfLocation.Size = byteToUInt(phdr, 0x24); Elf.Add(elfLocation); return 0; } public static ushort byteToUShort(byte[] b, int offset) { ushort a = (ushort)(b[offset] << 8); a |= (ushort)b[offset + 1]; return a; } public static List LoadElf(string FileName) { List Elf = new List(); BinaryReader br = new BinaryReader(File.OpenRead(FileName)); byte[] elfMagic = new byte[4]; br.Read(elfMagic, 0, 4); if (elfMagic[0] != 0x7F || elfMagic[1] != 0x45 || elfMagic[2] != 0x4C || elfMagic[3] != 0x46) { Console.WriteLine("Elf Magic Wrong (" + FileName + ")"); br.Close(); return Elf; } br.BaseStream.Seek(0, SeekOrigin.Begin); byte[] eHDR = new byte[0x40]; br.Read(eHDR, 0, eHDR.Length); uint phdr_offset = byteToUInt(eHDR, 0x24); ushort n_phdrs = byteToUShort(eHDR, 0x38); ushort phdr_size = byteToUShort(eHDR, 0x36); for (ushort i = 0; i < n_phdrs; i++) { int error = LoadElfPHDR(br, Elf, phdr_offset, phdr_size, i); if (error == 1) Console.WriteLine("Didn't Load phdr " + i + " of File " + FileName); } br.Close(); return Elf; } public static List LoadPatchFile(string FileName) { List patches = new List(); StreamReader sr = new StreamReader(File.OpenRead(FileName)); string input; while(!string.IsNullOrEmpty(input = sr.ReadLine())) { string[] vals = input.Split(new char[] { ' ' }); if (vals.Length != 3 || vals[0] != "00002000") { Console.WriteLine("This is not an ELF Patch!"); patches.Clear(); return patches; } Patch p = new Patch(); try { p.Offset = uint.Parse(vals[1], System.Globalization.NumberStyles.AllowHexSpecifier); p.PatchValue = uint.Parse(vals[2], System.Globalization.NumberStyles.AllowHexSpecifier); patches.Add(p); } catch (Exception) { Console.WriteLine("Patch file wrong!"); patches.Clear(); return patches; } } return patches; } static void Main(string[] args) { if (!File.Exists("EBOOT.ELF")) { Console.WriteLine("Couldn't find EBOOT.ELF"); Console.ReadLine(); return; } if (!File.Exists("PATCH.TXT")) { Console.WriteLine("Couldn't find PATCH.TXT"); Console.ReadLine(); return; } if (File.Exists("EBOOT.KDSBest.ELF")) File.Delete("EBOOT.KDSBest.ELF"); List locations = LoadElf("EBOOT.ELF"); List patches = LoadPatchFile("PATCH.TXT"); for(int i = 0; i < patches.Count; i++) { ELFLocation? locationForPatch = null; Patch p = patches[i]; for (int ii = 0; ii < locations.Count; ii++) { if (p.Offset >= locations[ii].Offset && p.Offset < locations[ii].Offset + locations[ii].Size) { locationForPatch = locations[ii]; break; } } if (locationForPatch == null) { Console.WriteLine("Patch is not for this ELF!"); Console.ReadLine(); return; } else { p.Offset = p.Offset - locationForPatch.Value.Offset + locationForPatch.Value.OffsetFile; patches[i] = p; } } Console.WriteLine("Patching ELF..."); File.Copy("EBOOT.ELF", "EBOOT.KDSBest.ELF"); BinaryWriter bw = new BinaryWriter(File.OpenWrite("EBOOT.KDSBest.ELF")); foreach (Patch p in patches) { bw.Seek((int) p.Offset, SeekOrigin.Begin); bw.Write(uintToByte(p.PatchValue)); } bw.Close(); Console.WriteLine("DONE!"); Console.ReadLine(); } } } Source(PS3HAX)
  7. Following up on the 4.11, 4.10 and 4.00 PlayStation 3 Custom Firmware modification updates, today Szalay has shared a guide on bringing Install Package Files folder back to VSH on Rogero 4.30 CFW. To quote: Maybe it's just my opinion, but the Install Package via multiman and other Install PKG application are not the greatest options. Here's how to TRULY add back Install Package from the VSH directly like before in v3.41/v3.55 for CFW build's v4.30. ** All patches inside dev_flash tar files OFW: v4.30 PS3 explore_category_game.prx 1) install package: Find Data: F821FED17C0802A6FB8101103B810070 Replace With: 386000014E800020FB8101103B810070 explore_plugin.sprx 1) install package Find Data: F821FED17C0802A6FB8101103B810070 Replace With: 386000014E800020FB8101103B810070 category_game.xml 1) Add to the end like before: <View id="seg_gamedebug"> <Attributes> <Table key="game_debug"> <Pair key="icon_rsc"><String>tex_album_icon</String></Pair> <Pair key="title_rsc"><String>msg_tool_app_home_ps3_game</String></Pair> <Pair key="child"><String>segment</String></Pair> </Table> </Attributes> <Items> <Query class="type:x-xcb/game-debug" key="game_debug" attr="game_debug" /> </Items> </View> <View id="seg_package_files"> <Attributes> <Table key="host_device"> <Pair key="icon_rsc"><String>tex_album_icon</String></Pair> <Pair key="title_rsc"><String>msg_tool_install_file</String></Pair> <Pair key="child"><String>segment</String></Pair> <Pair key="ingame"><String>disable</String></Pair> </Table> </Attributes> <Items> <Query class="type:x-xmb/xmlpackagefolder" key="host_device" attr="host_device" src="#seg_packages" /> </Items> </View> <View id="seg_packages"> <Items> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_host" src="host://localhost/q?path=/app_home/&suffix=.pkg&subclass=x-host/package" /> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_bdvd" src="host://localhost/q?path=/dev_bdvd&suffix=.pkg&subclass=x-host/package" /> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_ms" src="host://localhost/q?path=/dev_ms&suffix=.pkg&subclass=x-host/package" /> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_usb0" src="host://localhost/q?path=/dev_usb000&suffix=.pkg&subclass=x-host/package" /> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_usb1" src="host://localhost/q?path=/dev_usb001&suffix=.pkg&subclass=x-host/package" /> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_usb2" src="host://localhost/q?path=/dev_usb002&suffix=.pkg&subclass=x-host/package" /> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_usb3" src="host://localhost/q?path=/dev_usb003&suffix=.pkg&subclass=x-host/package" /> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_usb4" src="host://localhost/q?path=/dev_usb004&suffix=.pkg&subclass=x-host/package" /> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_usb5" src="host://localhost/q?path=/dev_usb005&suffix=.pkg&subclass=x-host/package" /> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_usb6" src="host://localhost/q?path=/dev_usb006&suffix=.pkg&subclass=x-host/package" /> <Query class="type:x-xmb/xmlpackagefolder" key="host_provider_usb7" src="host://localhost/q?path=/dev_usb007&suffix=.pkg&subclass=x-host/package" /> </Items> </View> 2) Add into place where you wish for app_home and install package to show up: <Query class="type:x-xmb/folder-pixmap" key="seg_gamedebug" src="#seg_gamedebug" /> <Query class="type:x-xmb/folder-pixmap" key="seg_package_files" src="#seg_package_files" /> Happy New Year! Enjoy!! F.A.Q. How Does this Work? "The reason install package was blocked in later than 3.6x firmwares, was because from 3.6x and higher, they started checking for valid tokens, the new ecdsa signed tokens and then flags to enable Install Package to work. The patch done just fakes the SPRX's into thinking the token flag is set." Is This Safe? "As far as being dangerous, the creator of CFW should be able to decrypt said SPRX files and replace the patches and recrypt/resign files properly and package inside the PS3UPDAT.PUP for all future builds" Source(PS3NEWS) add_install_package.rar
  8. We all heard recently that 3k3y was shipping out BETA units So for all those non-believers, and fakers still out there, here is EXCLUSIVE proof that 3k3y is real and working! Well, I promised there would be some exclusive 3k3y news, after their last status update, so here it is to start the New Year 2013 off in our famous blasting Crunching News Style! Click the above-picture to see a close-up view of the actual 3k3y BETA PCBoard, (the case on the PHAT PS3 used for demo, does not need to be cut-away, that was done on purpose for the video shown below), and the small black box to left is the usb hdd port, power and 3k3y LCD screen interface to select the PS3 ISO on your external USB HDD similar in style to their famous original X360key ODD emulator. Now sit back and enjoy the video made by our Anonymous 3k3y Beta Tester (BTW, Many Thanks Whomever You Are!), as you nurse your video gaming body back into action from all those Happy New Year parties last night! http://youtu.be/f5n9EUt6r_A FOR MORE OFFICIAL INFO: http://www.3k3y.com Source(PS3Crunch)
  9. A list of tested xbox 1 emulators working on 360 using hacked emulation files arnold-x v5 (amstrad emu) STELLA V2 (atari 2600 emu) medafenx-lynx(atari lynx emu) bliss-x v10 (intellivision emu) adamx v6 (collecovision emu) vice64x (commodore 64 emu) x7800x v6 (atari 7800 emu) Z26X v7 (atari 2600 emu) AtariXLbox V8 Atari 800/5200/130/320/XL/XE emu for xbox. bluemsxbox v8 (msx/msx2 emu) neopopx v7 (neogeo pocket/colour emu) MednafenX-NES - NES/Famicom/NES FDS Emulator for XBox v15 medafenx-pce v6 (pc engine/turbographx/supergraphx/pc engine cd emu) wonderswanx v5 (wonderswan emu) x68000x v6 (sharp x68000 emu) NEOCDLX UNLEASHED (Neogeo CD Emulator) odysseyX v3 (odyssey 2 emu) PokemonminiX v3 (pokemon mini emu) classic99x v2 (texas instruments emu) SupervisionX v4 (supervision emu) Homebrew Gameports for xbox1. ZELDA TRILOGY. includes zelda oni links begin zelda return of the hylian zelda time to triumph. xbermuda xdink/dink smallwood streets of rage remakeX v5 Final Cave StoryX v2 (Great platforming game) quakeX v1.1 +Full Game and mission packs. quake 2X RoadfighterX (NEW HOMEBREW PORT) xMoG v1.0 SUPER TRANSBALL 2X
  10. dhewg from hackmii.com announce today the release of a new hackmii installer with a new HomeBrew Channel now compatible with the wii U (in Wii mode). For full details and information please read the official announcement Another year, another console, another Hackmii Installer! Despite all of the anti-reverse-engineering tricks we put into our last installment of the HackMii Installer, Nintendo managed to find the IOS exploit we used to install The Homebrew Channel and fix it sometime within the last two years. There never was a Wii system update for this, the fixed IOS versions can only be found on a Wii U. They also blocked our old title ID. Consequently, we have a new release with a new version of The Homebrew Channel; this will install on both Wii consoles, and inside the virtual Wii sandbox inside the Wii U. The currently used IOS exploit is courtesy of tueidj. Please note that this is not running in full Wii U mode; running this on a Wii U will probably work just like on a Wii. (See if you can find any differences, we can all try to hack the Wii U together from inside Wii mode!) Also, due to technical limitations of the virtual Wii mode, BootMii will not work on a Wii U. If we are able to resolve this, we will make a new release with BootMii support. As usual, grab the new installer here. If you’re unsure what do to with the installer, see this wiki page for a general tutorial on how to setup homebrew on your Wii, and this one at the brand new wiiubrew.org for savegame exploits that still work on a Wii U. Source(Homebrew Connection) hackmii_installer_v1.1.zip
  11. PS3 Custom Firmware dev Rogero has updated his 4.30 cfw to version 2.03 and it's full of changes. It has many bug fixes and new features such as install package files put back on xmb, but the most impressive one is no downgrade needed to install! For more information and download CLICK HERE
  12. Team Cobra is entering the PS3 Optical Drive Emulator market that they will be producing a ODE for Sony Playstation 3 consoles the market for installing an ODE in the PS3 scene world is heating up as the world's famous Team Cobra behind the Cobra-USB dongle is now going to be producing an Cobra-ODE for playing all your backup PS3 Blu-Ray Game Disc Images directly from any HDD without the need to have your PS3 console on 'custom firmware', which they claim will be 'most advanced PS3 Optical Drive Emulator' ever. No more infomation is available at the moment, except what is on their official websites, but stay tuned as we bring you more exclusive news! OFFICIAL SITE #1: http://www.cobra-ode.com/ OFFICIAL SITE #2: http://www.cobra-team.com/ Source(PS3HAX)
  13. Posted on Saturday 01/Dec/2012 MD5: 5f7434a46f7909689b00558a06071689 Size: 192 MB (201,591,424 bytes) For all the users that are having the Singstar Icon on XMB, please know that this is a pure Original FW 4.30/4.31 feature and it seems it is only showing for Europe users when they connect the PS3 to the internet. Here's two links to the SingStar problem with OFW4.30 : ---> Singstar Icon appeared after online update to FW 4.30 ---> Singstar Icon appeared after online update to FW 4.30 This CFW was tested on most PS3 Models by different testers and no problems were encountered. But as any CFW release you must install it with caution and by following proper instructions, No one will be held responsible for any damage caused. * This CFW can be installed fine from XMB Update over any OFW3.55/CFW3.55/CFW4.21/CFW4.30. * For details about Downgrading back to CFW/OFW3.55 Please read the Downgrade Guide below Rogero CFW4.30 v2.03 Details * Rebuilt from scratch using OFW4.30 files only (no DEX/SEX files) with official XMB and full features working as in OFW4.30 * All known problems like XMB icons sorting and Demo Mode issues from previous versions are now gone with the use of the official XMB. * New Improved "Install Package Files" Application added to XMB instead of using the traditional DEX Icon, to have a 100% original XMB. * Once the PS3 is booted, select the [app_home/PS3_GAME] Icon and It will change automatically to [* Install Package Files] * If you load a Game from multiMAN it will still be redirected and shown under the same [app_home/PS3_GAME] Icon * After loading a Game, you can restart the PS3 again to have [* Install Package Files] back on XMB * You can also Install the new stand-alone XMB application from Deank --> [* Install Package Files] to have it showing permanently on XMB. - [* Install Package Files] function supports: --- up to 256 pkg files --- split pkg files --- sorting --- queued PKG indication (in red) --- multipart (split) PKG indication (in yellow) --- copy/transfer progress --- Scanned locations: /dev_usb*** /dev_hdd0 /dev_bdvd in /PKG /packages and root folders --- Split files format: .0 - .63 / .66600 - .66663 / .001 - .064 * CFW Structure fixed to match the OFW 4.xx Structure: --- No more corrupted data error messages while Installing from XMB or Recovery Menu. --- The CFW can be installed fine from XMB Update over any OFW3.55/CFW3.55/CFW4.21/CFW4.30. --- HDD can be swapped/changed and the CFW4.30 v2.03 will re-install without any problem. * Patched LV1 to disable LV2 Protection. * Patched LV1 to add peek/poke support to replace hvc 182/183 (multiMAN Direct Disc Access is now working fine with CFW4.30 v2.03) * Patched LV1 to disable SYSTEM MANAGER INTEGRITY CHECK (to prevent Bricking on non-dehashed downgraded consoles) * Patched LV1 Core OS Hash Check (to prevent Bricking on non-dehashed downgraded consoles) * The CFW can be used directly for Downgrading with Hardware flashers /Flashing from FSM/Exiting from FSM, all works fine. * Patched LV2 to add peek/poke support. (for both LV1 and LV2) * Patched VSH to enable ReActPSN compatibility (Allow Unsigned act.dat and *.rif files, Disable Unlinking/Deleting of act.dat) * Spoofed the system version to latest OFW version 4.31. * PSN/SEN access is available as long as the current "passphrase" still the same. * Loading games from App_home Icon is now fixed. * It can run games signed with Keys up to version 4.30 without any Eboot/Sprx patching needed * Games can be loaded from Disc Icon (with Original game in BD) and from app_home (Disc-less, but not all games). * Current 3.55 homebrew applications can't be loaded on this CFW, applications must be re-signed properly for FW4.21/4.30 ATTENTION: 1- This CFW does have LV1 checks disabled and can be installed on Downgraded PS3 consoles even if not dehashed after downgrade. Just in case anyone still need to dehash, here's the link Link ----> Dehashing Tutorial 2- Always make a NOR/Nand dump using multiMAN before installing any CFW to have a recovery backup in case of any bricks. Having a valid NOR/Nand dump is an essential step before upgrading, because you will always have a chance to recover when you have a valid dump. ** A Hardware Flasher alone without a valid dump may not fix your bricked PS3 ** 3- The QA flag is better to be always Enabled on your PS3 for safer upgrading/downgrading operations. Link ----> toggle_qa.pkg 4- Please Check the MD5 of the downloaded PUP file before installing any CFW to avoid possible bricks. 5- DO NOT HAVE DISC IN PS3 WHEN UPDATING FIRMWARES..As the PS3 will take the UPDATE from the DISC First. 6- You need to be already on a 3.55OFW or 3.55CFW/4.21CFW/4.30CFW to install this. Installing from any OFW > 3.55 won't work. (Hardware Flasher needed) - Downgrading back to 3.55 is always possible using the following steps : - Download the Downgrader PUP ---> Downgrader PUP mirror ---> Downgrader PUP ...Size 176MB (184,595,263 bytes) MD5: 49d80e07fc1f5ca1b0840e02e94635db - Rename the downloaded file to "PS3UPDAT.PUP" and put it on your USB in: "USB\PS3\UPDATE\PS3UPDAT.PUP" - While on Rogero CFW4.30, go to System Update from XMB and install the Downgrader PUP. - After the Downgrader PUP installs you'll be on a hybrid CFW3.55 that will still shows the spoofed ver4.21 from system settings. - In case you didn't have it Set Before, Enable QA flag by following these steps: 1- Download the Rebug QA_Toggle package from here ---> toggle_qa.pkg 2- Put the "toggle_qa.pkg" on USB and Install it on the PS3. 3- Run the "Rebug Toggle QA" from XMB, the screen will go Black and you will see HDD Led activity then if all went fine you will hear 2 or 3 Beeps and the PS3 will Restart back to XMB. 4- If you want to make sure QA flag was set, go to "Network Settings" then apply the following key combo (all at the same time): [highlight=#ffff00]L1 + L2 + L3 (press left stick) + R1 + R2 + dpad_down[/highlight] You should see Edy Viewer, Debug Settings, and Install Package Files if done correctly. - Now put "Rogero CEX-3.55 CFW V3.7" on your USB in: "USB\PS3\UPDATE\PS3UPDAT.PUP" ---> Rogero CEX-3.55 CFW V3.7.PUP - Start the PS3 and install "Rogero CEX-3.55 CFW V3.7" using the System Update from XMB. - Once you're back on Rogero CFW3.55 v3.7 you can now install any CFW 3.55/4.21/4.30 using the System Update from XMB. This CFW was the result of the combined efforts and perseverance of many talented coders and FRIENDS, I would like to thank every single one of you guys who worked with me for the last week while researching, coding the needed tools and testing for many sleepless nights to make sure we have a good reliable and very stable CFW for everyone in the PS3 scene to enjoy. Now we can get some rest and get back to our lives, I believe this CFW is now good enough and I won't be updating it anytime soon, it was a fun ride indeed working on it with you guys. Thank you all. Credits to : *- Deank for his continuous efforts on Multiman, the new "Install Package Files" Function and all his assistance during the build process. *- Evilnat [Nathan_r32_69] for all his contribution with the code, awesome tools, and the Sleepless nights working/testing together --- ( I just hope you recover soon from your accident brother ) *- Abkarino [DVD4Arab] for all his research, coding, tools, and help (Good job my friend) *- The Anonymous source of valuable information, details and help ( you know who you are, much Respect ) *- Cyberskunk/Rebug Team for the hints about fixing the UPL package and the Build number, Thank you. *- All the Beta-Testers Domelec, Nice69, Satudara, and all the others... *- All Tortuga-Cove Staff from Admins and Moderators (Thank you Windrider for all the support provided) *- PS3DevWiki for the valuable and always up-to-date source of information. *- and Finally: all Tortuga-Cove members for their patience Source and Download(Tortuga-cove)
  14. The developer Crediar well known for his works on the first Wii (Freedom, preloader, SNEEK, Starfall, Dios Mios …) shared today this interresting picture showing the WiiMode keys of the Wii U and this message « The WiiMode keys are ours! ». Hope it will help hackers to have a better understanding of how this new system works … anyway It’s clearly one step forward for a future full Wii U hack. Source(Homebrew Connection)
  15. Posted on Tuesday 20/Nov/2012 Link -------> multiMAN ver 04.12.00 BASE CEX (20121120).pkg Prepared by DeanK for full compatibility with CFW v2.00 * Added full support for Rogero 4.30CFW Version 2.00 - LV1 peek/poke support - PS1 disc backups support - Direct Disc Access support * Added new function in "Home" column - "* Install Package Files" * Added new option in "Settings" - "Install Package Files Method" - User can pick from either "Standard" or "PSN Style (bubble)" modesf - Bubble mode shows installable packages as PSN downloaded content in Game column (or under Rebug's Package Manager/PSN Content) - To select a package file (*.pkg): -- Use [* Install Package Files] option in Home column or -- double click on a pkg file in mmOS/File Manager (when "bubble" method is used the PS3 will reboot) * Fixed copying of AVCHD/Blu-ray movie backups from Video column Link -------> Showtime ver 04.01.224.pkg N.B: You must have multiMAN version 04.12.00 installed on the PS3 before updating to CFW4.30 v2.00 or you won't be able to install Package files until you downgrade again to version 3.55 and Install multiMAN 04.12.00 Link -------> Rogero_CEX4.30_V2.00.PUP CFW4.30 Version 2.00 MD5: 116ecceb79b2adde8479fd24951a5a90 CFW4.30 Version 2.00 Size: 191 MB (201,263,364 bytes) Link -------> Rogero_CEX4.21_V2.00.PUP CFW4.21 Version 2.00 MD5: 9e3053031c58490ebaf5ea5e6c7cb34c CFW4.21 Version 2.00 Size: 191 MB (201,153,979 bytes) This CFW4.21 is almost the same as the 4.30 version except it have some add-ons that can't be added to ver 4.30 currently: 1- It does have the default "Install Package Files" node on XMB. (no need to have multiMAN installed before using it) 2- It does have LV1 Checks Disabled and can be used directly instead of Rogero3.55 v3.7 while downgrading with Hardware Flashers. 3- It does have the Proper Cinavia Disabled Files for the users who needs it. This CFW was tested on most PS3 Models by different testers and no problems were encountered. But as any CFW release you must install it with caution and by following proper instructions, No one will be held responsible for any damage caused. * For details about Updating from any CFW to CFW4.30/4.21 v2.00 Please read the Guide below * For details about Downgrading back to CFW/OFW3.55 Please read the Downgrade Guide below Rogero CFW4.30/4.21 v2.00 Details 4.30 v2.00 - Rebuilt from scratch using OFW4.30 files only (no DEX/SEX files) with official XMB and full features working as in OFW4.30 - All known problems like XMB icons sorting and Demo Mode issues from v 1.04 are now all gone with the use of the official XMB. - Removed the classical "Install Package Files" Icon from XMB to have a 100% original XMB (no DEX/SEX files used). - Installing Package Files can be done from multiMAN 04.12.00 (XMMB Home column or MMOS File Manager). - Patched LV1 to disable LV2 Protection. - Patched LV1 to add peek/poke support to replace hvc 182/183 (multiMAN Direct Disc Access is now working fine with CFW4.21/4.30 v2.00) - Patched LV1 to disable SYSTEM MANAGER INTEGRITY CHECK (to prevent Bricking on non-dehashed downgraded consoles) - Patched LV1 Core OS Hash Check (to prevent Bricking on non-dehashed downgraded consoles) - Patched LV2 to add peek/poke support. (for both LV1 and LV2) - Patched VSH to enable ReActPSN compatibility (Allow Unsigned act.dat and *.rif files, Disable Unlinking/Deleting of act.dat) - Spoofed the system version to latest OFW version 4.31. - PSN/SEN access is available as long as the current "passphrase" still the same. - Loading games from App_home Icon is now fixed. - It can run games signed with Keys up to version 4.30 without any Eboot/Sprx patching needed - Games can be loaded from Disc Icon (with Original game in BD) and from app_home (Disc-less, but not all games). - Current 3.55 homebrew applications can't be loaded on this CFW, applications must be re-signed properly for FW4.21/4.30 4.21 v2.00 - Same Features as CEX_4.30 v2.00 plus the following add-ons: 1- It does have the default "Install Package Files" node on XMB. (no need to have multiMAN installed before using it) 2- It does have LV1 Checks Disabled and can be used directly instead of Rogero3.55 v3.7 while downgrading with Hardware Flashers. 3- It does have the Proper Cinavia Disabled Files for the users who needs it. ATTENTION: 1- This CFW does have LV1 checks disabled and can be installed on Downgraded PS3 consoles even if not dehashed after downgrade. Just in case anyone still need to dehash, here's the link Link ----> Dehashing Tutorial 2- Always make a NOR/Nand dump using multiMAN before installing any CFW to have a recovery backup in case of any bricks. Having a valid NOR/Nand dump is an essential step before upgrading, because you will always have a chance to recover when you have a valid dump. ** A Hardware Flasher alone without a valid dump may not fix your bricked PS3 ** 3- The QA flag is better to be always Enabled on your PS3 for safer upgrading/downgrading operations. Link ----> toggle_qa.pkg 4- Please Check the MD5 of the downloaded PUP file before installing any CFW to avoid possible bricks. 5- DO NOT HAVE DISC IN PS3 WHEN UPDATING FIRMWARES..As the PS3 will take the UPDATE from the DISC First. 6- You need to be already on a 3.55OFW or 3.55+ CFW to install this. Installing from any OFW > 3.55 won't work. (Hardware Flasher needed) - Updating from CFW3.55/4.21/4.30 to the CFW4.21/4.30 v2.00 should be done using the following steps : 1- If you are on any CFW newer then 3.55 you can try updating from Recovery Mode to CFW4.21/4.30 v2.00. ---- If it didn't work (Data corrupted Error), then you'll have to Downgrade back to Rogero CEX3.55 v3.7 using the guide above. 2- Once on Rogero CEX3.55 v3.7 or any 3.55OFW/CFW, Update using the XMB update option to CFW4.21/4.30 v2.00 ---- If it didn't work (Data corrupted Error), Start the PS3 into Recovery Menu and update yo CFW4.21/4.30 v2.00. - Downgrading back to 3.55 is always possible using the following steps : - Download the Downgrader PUP ---> Downgrader PUP mirror ---> Downgrader PUP ...Size 176MB (184,595,263 bytes) MD5: 49d80e07fc1f5ca1b0840e02e94635db - Rename the downloaded file to "PS3UPDAT.PUP" and put it on your USB in: "USBPS3UPDATEPS3UPDAT.PUP" - While on Rogero CFW4.30, go to System Update from XMB and install the Downgrader PUP. - After the Downgrader PUP installs you'll be on a hybrid CFW3.55 that will still shows ver4.21/4.30 from system settings. - Enable QA flag by following these steps: 1- Download the Rebug QA_Toggle package from here ---> toggle_qa.pkg 2- Put the "toggle_qa.pkg" on USB and Install it on the PS3. 3- Run the "Rebug Toggle QA" from XMB, the screen will go Black and you will see HDD Led activity then if all went fine you will hear 2 or 3 Beeps and the PS3 will Restart back to XMB. 4- If you want to make sure QA flag was set, go to "Network Settings" then apply the following key combo (all at the same time): [highlight=#ffff00]L1 + L2 + L3 (press left stick) + R1 + R2 + dpad_down[/highlight] You should see Edy Viewer, Debug Settings, and Install Package Files if done correctly. - Now put "Rogero CEX-3.55 CFW V3.7" on your USB in: "USBPS3UPDATEPS3UPDAT.PUP" ---> Rogero CEX-3.55 CFW V3.7.PUP - Start the PS3 into Recovery Menu and install "Rogero CEX-3.55 CFW V3.7" (from Recovery Menu, this is important) - Once you're back on Rogero CFW3.55 v3.7 Start the PS3 into Recovery Menu and install any CFW 3.55/4.21/4.30. Useful Hint ( for Slims / FATs with NOR Flash only ): you can simply use CondorStrike's Updater package from XMB to enter Recovery Menu directly from XMB without going through several restart/shutdown sequences. --> Condor Updater v2.0 - Changing/Upgrading the HDD while on Rogero CFW4.30 should be done using the following steps : - Download the Downgrader PUP ---> Downgrader PUP mirror ---> Downgrader PUP Size 176MB (184,595,263 bytes) MD5: 49d80e07fc1f5ca1b0840e02e94635db - Rename the downloaded file to "PS3UPDAT.PUP" and put it on your USB in: "USBPS3UPDATEPS3UPDAT.PUP" - Swap the current HDD with the New HDD, Turn the PS3 on, follow screen instructions and let it install the Downgrader CFW. - After the Downgrader CFW installs you'll be on a hybrid CFW3.55 that will still shows ver4.21 from system settings. - Enable QA flag by following these steps: 1- Download the Rebug QA_Toggle package from here ---> toggle_qa.pkg 2- Put the "toggle_qa.pkg" on USB and Install it on the PS3. 3- Run the "Rebug Toggle QA" from XMB, the screen will go Black and you will see HDD Led activity then if all went fine you will hear 2 or 3 Beeps and the PS3 will Restart back to XMB. 4- If you want to make sure QA flag was set, go to "Network Settings" then apply the following key combo (all at the same time): [highlight=#ffff00]L1 + L2 + L3 (press left stick) + R1 + R2 + dpad_down[/highlight] You should see Edy Viewer, Debug Settings, and Install Package Files if done correctly. - Now put "Rogero CEX-3.55 CFW V3.7" on your USB in: "USBPS3UPDATEPS3UPDAT.PUP" ---> Rogero CEX-3.55 CFW V3.7.PUP - Start the PS3 into Recovery Menu and install "Rogero CEX-3.55 CFW V3.7" (from Recovery Menu, this is important) - Once you're back on Rogero CFW3.55 v3.7 Start the PS3 into Recovery Menu and install any CFW 3.55/4.21/4.30. Useful Hint ( for Slims / FATs with NOR Flash only ): you can simply use CondorStrike's Updater package from XMB to enter Recovery Menu directly from XMB without going through several restart/shutdown sequences. --> Condor Updater v2.0 Credits to : - PS3DevWiki for the valuable and always up-to-date source of information. - Deank for his continuous efforts on Multiman and all his assistance during the build process. - Cybrskunk for the hints about fixing the UPL package and the Build number ( although it didn't work yet as it should ) - Tortuga-cove staff for the support forum. - Andoma for his work on his excellent Showtime Media Player. - All the Beta-Testers and all Tortuga-Cove members for their support and patience. Source: Tortuga-Cove
  16. The latest PS3 Media Server is released, this newest update brings various bug fixes To quote: • Regressions: - Fixed bug that occurred when using ShowDVDTitleDuration - Fixed bug that caused embedded subtitles to be displayed when subtitles are disabled - Fixed bug in handling of filenames with embedded $ characters • Engines: - Removed option to automatically switch to tsMuxeR (available manually via the #–TRANSCODE–# folder) Upgrade Notes: For 1.70.0 and above: • Just uninstall the older version and install the newer one. For versions prior to 1.70.0: • It is recommended to back up and remove your old PMS.conf and re-enter and save your settings (if any) in the GUI. Alternatively (e.g. if you have a large number of customizations you wish to preserve), see the upgrade notes for previous major releases (e.g. 1.50.0, 1.60.0 &c.) for migration instructions. Download Source
  17. News 11 - 12 - 2012 Coming soon! In order to support Cobra USB users better Team Cobra will release in the next few weeks a custom 4.3x+ firmware. All your favourite features will still be supported whilst being able to enjoy the latest titles. Stay tuned for further news soon. Source(Cobra-USB
  18. Updated on Sunday 11/Nov/2012 to ver 1.04 Link -------> Rogero_CEX4.30_V1.04.PUP Mirror1 ---> Rogero_CEX4.30_V1.04.PUP Mirror2 ---> Rogero_CEX4.30_V1.04.PUP Mirror3 ---> Rogero_CEX4.30_V1.04.PUP Mirror4 ---> Rogero_CEX4.30_V1.04.PUP Mirror5 ---> Rogero_CEX4.30_V1.04.PUP Many Thanks to Realth, Compclubz, Senaxx and especially Kamel for the mirror links. Version 1.04 PUP MD5: 5d70eefef8eaad0ea627bb861dafb187 Version 1.04 PUP Size : 192 MB (201,449,219 bytes) Link -------> Rogero CEX-4.30 v1.04 PlayStation Home Fix Mirror1 ---> Rogero CEX-4.30 v1.04 PlayStation Home Fix Just Install and Run this package to have a working PlayStation Home Icon under the TV/Video Category. Link -------> multiMAN ver 04.11.11 BASE CEX (20121111).pkg Released by DeanK v1.04 - Removed all the Demo Mode nodes from XMB (No more demonstration mode messages). - Added some fixes to the PUP to eliminate many "Data Corrupted" messages from different installation methods. - Updated the PlayStation Home Fix Package to v1.04, Now PS Home Icon will be installed to the TV/Video Category. This is a 4.30 Triple Pack that contains : (Rogero CEX-4.30 v1.03 with PlayStation Home Fix) + multiMAN ver 04.10.00 + Showtime 04.01.208 Link ----------> Rogero_CEX4.30_V1.03 Full Pack Mirror#1 ----> Rogero_CEX4.30_V1.03 Full Pack Mirror#2 ----> Rogero_CEX4.30_V1.03 Full Pack Mirror#3 ----> Rogero_CEX4.30_V1.03 Full Pack Mirror#4 ----> Rogero_CEX4.30_V1.03 Full Pack Mirror#5 ----> Rogero_CEX4.30_V1.03 Full Pack Update --> multiMAN Add-ons for CFW4.30- bdRESET lastGAME gameDATA This CFW was tested on most PS3 Models by different testers and no problems were encountered. But as any CFW release you must install it with caution and by following proper instructions, No one will be held responsible for any damage caused. * For details about Updating from any CFW to CFW4.30 v1.04 Please read the Update Guide below * For details about Downgrading back to CFW/OFW3.55 Please read the Downgrade Guide below * For details about Recovering from a Brick please check this thread --> Brick-Recovery Procedure. Rogero CEX-4.30 Details v1.04 - Removed all the Demo Mode nodes from XMB (No more demonstration mode messages). - Added some fixes to the PUP to eliminate many "Data Corrupted" messages from different installation methods. - Updated the PlayStation Home Fix Package to v1.04, Now PS Home Icon will be installed to the TV/Video Category. v1.03 - Removed the Cinavia Disabled files and reverted back to the original files due to some Video Playback problems detected. v1.02 - The PS3~dev_blind.zip fix is now Pre-patched in the PUP itself. - Fixed the bug of "Corrupted Data" on installation from Recovery encountered by some users. - Added the Cinavia Disabled files into the PUP. - Updated multiMAN to the latest 04.10.00 build in the package. - Added the new simple to install PlayStation home fix to the package too. v1.01 - Compatibility problem with some PS3 models is now fully fixed. - XMB Icons problem from in-game PS button is now fixed. - PSN/SEN access is available as long as the current "passphrase" still the same. - Loading games from App_home Icon is now fixed. - noBD and noBT patches are applied to allow installation on consoles with broken BR drive or Bluetooth controller. - It was tested by hundreds of testers on all PS3 models (FAT & Slim) and no problems were encountered. - It can run games signed with Keys up to version 4.30 without any Eboot/Sprx patching needed - Games can be loaded from Disc Icon (with Original game in BD) and from app_home (Disc-less, but not all games). - Current 3.55 homebrew applications can't be loaded on this CFW, applications must be re-signed properly for FW4.21/4.30 ATTENTION: 1- This CFW doesn't have LV1 checks disabled and can't be installed on Downgraded PS3 consoles unless you have Dehashed/Reset Syscon Properly (if you're not sure about your PS3, Dehash it anyway to avoid any risk) Link ----> Dehashing Tutorial 2- Always make a NOR/Nand dump using multiMAN or memdump before installing any CFW to have a recovery backup in case of any bricks. Having a valid NOR/Nand dump is an essential step before upgrading, because you will always have a way to recover (using hardware flashers) when you have a valid dump. ** A Hardware Flasher alone without a valid dump may not fix your bricked PS3 ** 3- The QA flag must be always Enabled on your PS3 for safer upgrading/downgrading operations. Link ----> toggle_qa.pkg 4- Always use the Recovery Menu while installing this CFW to avoid possible bricks (XMB update works, but Recovery Menu is safer). 6- Please Check the MD5 of the downloaded PUP file before installing any CFW to avoid possible bricks. 7- DO NOT HAVE DISC IN PS3 WHEN UPDATING FIRMWARES..As the PS3 will take the UPDATE from the DISC First. 8- You need to already be on 3.55 to install this. Installing from any firmware other than 3.55 will simply not work - Downgrading back to 3.55 is always possible using the following steps : - Download the Downgrader PUP ---> Downgrader PUP mirror ---> Downgrader PUP ...Size 176MB (184,595,263 bytes) MD5: 49d80e07fc1f5ca1b0840e02e94635db - Rename the downloaded file to "PS3UPDAT.PUP" and put it on your USB in: "USBPS3UPDATEPS3UPDAT.PUP" - While on Rogero CFW4.30, go to System Update from XMB and install the Downgrader PUP. - After the Downgrader PUP installs you'll be on a hybrid CFW3.55 that will still shows ver4.21/4.30 from system settings. - Enable QA flag by following these steps: 1- Download the Rebug QA_Toggle package from here ---> toggle_qa.pkg 2- Put the "toggle_qa.pkg" on USB and Install it on the PS3. 3- Run the "Rebug Toggle QA" from XMB, the screen will go Black and you will see HDD Led activity then if all went fine you will hear 2 or 3 Beeps and the PS3 will Restart back to XMB. 4- If you want to make sure QA flag was set, go to "Network Settings" then apply the following key combo (all at the same time): [highlight=#ffff00]L1 + L2 + L3 (press left stick) + R1 + R2 + dpad_down[/highlight] You should see Edy Viewer, Debug Settings, and Install Package Files if done correctly. - Now put "Rogero CEX-3.55 CFW V3.7" on your USB in: "USBPS3UPDATEPS3UPDAT.PUP" ---> Rogero CEX-3.55 CFW V3.7.PUP - Start the PS3 into Recovery Menu and install "Rogero CEX-3.55 CFW V3.7" (from Recovery Menu, this is important) - Once you're back on Rogero CFW3.55 v3.7 Start the PS3 into Recovery Menu and install any CFW 3.55/4.21/4.30. Useful Hint ( for Slims / FATs with NOR Flash only ): you can simply use CondorStrike's Updater package from XMB to enter Recovery Menu directly from XMB without going through several restart/shutdown sequences. --> Condor Updater v2.0 - Updating from CFW3.55/4.21/4.30 to the CFW4.30 v1.04 should be done using the following steps : 1- Proper Way ( CFW4.21/4.30 --> CFW3.55 --> CFW4.30 v1.04 ) ---- If you are on any CFW newer then 3.55, Downgrade back to Rogero CEX3.55 v3.7 using the guide above. ---- Once on Rogero CEX3.55 v3.7, start the PS3 into Recovery Menu and Install (original) OFW3.55. ( This step may not be needed for all consoles but better do it ) ---- Once on (original) OFW3.55, start the PS3 into Recovery Menu again and update into CFW4.30 v1.04. 2- Alternative Way ( CFW4.21/4.30 --> Recovery Menu --> CFW4.30 ) ---- You can try updating from CFW4.21/4.30 to CFW4.30 v1.04 from Recovery Mode. ---- If it didn't work, then you'll have to use the first Proper Way ( CFW4.21/4.30 --> CFW3.55 --> CFW4.30 v1.04 ) - Changing/Upgrading the HDD while on Rogero CFW4.30 should be done using the following steps : - Download the Downgrader PUP ---> Downgrader PUP mirror ---> Downgrader PUP Size 176MB (184,595,263 bytes) MD5: 49d80e07fc1f5ca1b0840e02e94635db - Rename the downloaded file to "PS3UPDAT.PUP" and put it on your USB in: "USBPS3UPDATEPS3UPDAT.PUP" - Swap the current HDD with the New HDD, Turn the PS3 on, follow screen instructions and let it install the Downgrader CFW. - After the Downgrader CFW installs you'll be on a hybrid CFW3.55 that will still shows ver4.21 from system settings. - Enable QA flag by following these steps: 1- Download the Rebug QA_Toggle package from here ---> toggle_qa.pkg 2- Put the "toggle_qa.pkg" on USB and Install it on the PS3. 3- Run the "Rebug Toggle QA" from XMB, the screen will go Black and you will see HDD Led activity then if all went fine you will hear 2 or 3 Beeps and the PS3 will Restart back to XMB. 4- If you want to make sure QA flag was set, go to "Network Settings" then apply the following key combo (all at the same time): [highlight=#ffff00]L1 + L2 + L3 (press left stick) + R1 + R2 + dpad_down[/highlight] You should see Edy Viewer, Debug Settings, and Install Package Files if done correctly. - Now put "Rogero CEX-3.55 CFW V3.7" on your USB in: "USBPS3UPDATEPS3UPDAT.PUP" ---> Rogero CEX-3.55 CFW V3.7.PUP - Start the PS3 into Recovery Menu and install "Rogero CEX-3.55 CFW V3.7" (from Recovery Menu, this is important) - Once you're back on Rogero CFW3.55 v3.7 Start the PS3 into Recovery Menu and install any CFW 3.55/4.21/4.30. Useful Hint ( for Slims / FATs with NOR Flash only ): you can simply use CondorStrike's Updater package from XMB to enter Recovery Menu directly from XMB without going through several restart/shutdown sequences. --> Condor Updater v2.0 Credits to : - PS3DevWiki for the valuable and always up-to-date source of information. - Deank for his continuous efforts on Multiman and many other PS3 tools/fixes. - Tortuga-cove staff for the support forum. - Andoma for his work on his excellent Showtime Media Player. - All the Beta-Testers and all Tortuga-Cove members for their support and patience. Source: http://www.tortuga-c...hp?f=127&t=3708
  19. It has been a long time since the last firmware release, mainly because we did not see a reason to keep releasing cfw after cfw just to changes files in ‘dev_flash’. We wanted the next release to be something different and we are quietly confident it is. The first thing users of previous REBUG firmware will notice is the old Rebug Selector has been given a complete overhaul and facelift based off of the multiMAN XXMB engine. We added quite a few features and it has now earned itself a new name Rebug Toolbox 02.00.00 but we will explain the toolbox later in more depth. Right now…. We give you REBUG 3.55.3 and 4.21.1 REX EDITIONS and the ’999′ DOWNGRADER. All the features listed below are in ALL firmware versions unless stated otherwise. REBUG REX EDITION FEATURES FEATURE – Dual LV2 Kernels CEX/DEX (Swap your EID0/LV2 kernel using Rebug Toolbox in seconds) FEATURE – ALL Retail functions available in CEX mode (No need to install different firmware) FEATURE – ALL Debug functions available in DEX mode (No need to install different firmware) FEATURE – ProDG Connectivity in DEX mode FEATURE – QA Token compatibility FEATURE – OtherOS++ support enabled (Use Rebug Toolbox to Boot OtherOS with different LV1 patches) UPDATED – Rebug Toolbox 02.00.00 UPDATED – 4.31 Version Spoof files (PSN/SEN Enabled for 4.21.1 REX ONLY) PATCHED – LV1: Disable System Integrity Check (Safe to use with mismatched COREOS/SYSCON versions or if PS3 is not QA enabled) PATCHED – LV1: Peek and Poke support (Unused LV1 call 182 and 183) PATCHED - LV2: Peek and Poke support (LV2 Syscall 6 and 7) PATCHED - LV2: Peek and Poke support for LV1 (LV2 Syscall 8 and 9) PATCHED - LV2: LV1 CALL System call (LV2 Syscall 10) PATCHED - VSH: Allow Unsigned act.dat and *.rif files PATCHED - VSH: Disable Unlinking/Deleting of act.dat FUN FEATURE – Fake Save Data Owner in CEX and DEX (Use Game Saves from ANY Owner) FUN FEATURE – Lock/Unlock Trophies in CEX and DEX FUN FEATURE – Cinavia protection disabled in CEX and DEX mode ’999′ DOWNGRADER FEATURES FEATURE – All 3.55.3 REX EDITION Features (Firmware is identical) FEATURE – Downgrade any firmware version CFW with spkg sig check patched PACKAGE MANAGER Package Manager is a replacement for the standard Install Package Files option under Game in the XMB. It allows for the install and deletion of .pkg files from dev_hdd0/packages, dev_usb/packages and the standard Install Package Files locations. In addition to this, your downloaded PSN content ‘bubbles’ will appear under this option instead of cluttering your Game menu with uninstalled content. USAGE: Navigate to Game in your XMB and click on Package Manager (It will be where Install Package Files usually is). You will find three options. PlayStation®Network Content Manage your downloaded PlayStation®Network Content. Install Package Files INSTALL package files from Storage Devices and your PS3. PS3 Hard Disk (dev_hdd0/packages) Package Folder (dev_usb/packages) Standard Package Location (Standard Install Package Files locations) NOTE: The Install All Packages is only available by pressing the TRIANGLE button when the Standard Package Location option is highlighted because the PS3 will only install ALL packages from the root of a storage device as of the moment. Delete Package Files DELETE package files from Storage Devices and your PS3. PS3 Hard Disk (dev_hdd0/packages) Package Folder (dev_usb/packages) Standard Package Location (Standard Install Package Files locations) DELETING FILES: 1: Highlight the file you would like to delete and press TRIANGLE. The sidebar should appear. 2: Press CROSS on either Unlink or Unlink(Folder) (Both do the same thing for now). REBUG TOOLBOX Rebug Toolbox is application designed to complete the full function of REBUG REX EDITION firmwares. Besides from performing the CEX/DEX EID0 and LV2 Kernel Swapping it is also an FTP server and is packed with a bunch of other useful tools.INSTALL: 1: In the PS3 XMB go to Game menu 2: Select Package Manager 3: Select Install Package Files 4: Select PS3 Hard Disk 5: Install REBUG-TOOLBOX-02.00.00.pkg SYSTEM SYSTEM INFORMATION: Displays Firmware version, Toolbox version, IP address, current LV2 Kernel and Target ID type and free HDD space. QUIT: Quits Toolbox and returns you to PS3 XMB. RESTART SYSTEM: Perform either a Full or Soft reboot od the PS3 system. Soft (LV2 Reboot Only) Full (On/Off Cycle) Boot OtherOS: Boot OtherOS with either your currently selected LV1 patches or easily apply ALL LV1 patches and boot. Boot (LV1 Patches: Apply All) Boot (LV1 Patches: Use current) Turn Off System: Shut down your PS3. SELECTOR SYSTEM MODE: Switches between NORMAL and REBUG mode NORMAL mode which uses the DEBUG XMB is the default mode after installing Rebug. REBUG mode sets the PS3 to the latest available version spoof (updatable in the future) and allows swapping between RETAIL and DEBUG XMB in addition to switching between the two different Debug Menu Types menus DEX (debug) and CEX QA (retail). XMB OPERATION MODE: This option only works in REBUG mode and lets you select either the RETAIL or DEBUG XMB. DEBUG MENU TYPE: Gives you the choice of the CEX QA (retail) or DEX (debug) Debug Settings menu. LV1 PATCHES A collection of LV1 patches that can be used for better compatibility with some PS3 tools. Any combination of these patches can be applied before booting OtherOS. DEX/CEX SWAP LV2 KERNEL: Swaps between CEX and DEX LV2 Kernel. This option will only work if your Target ID is set to DEX REWRITE TARGET ID IN FLASH: This option requires you have a valid NOR/NAND dump named correctly on dev_usb000. Use EXPORT FLASH TO FILE function to dump your NOR/NAND to dev_usb000 and then use c2d.exe to convert your dump to DEX. Rename your original CEX dump to CEX-FLASH.EID0.NORBIN (16mb) or CEX-FLASH.EID0.NANDBIN (239mb or 256mb) Rename your converted DEX dump to DEX-FLASH.EID0.NORBIN (16mb) or DEX-FLASH.EID0.NANDBIN (239mb or 256mb) Once you have prepared your NOR/NAND dumps place them on a USB device and connect it to dev_usb000. Now that you have your valid dumps named properly and connected to dev_usb000 it is a simple as selecting the option and following the onscreen prompts. Takes less than 10secs once you have your dumps prepared. EXPORT FLASH TO FILE: Backup your current NOR/NAND to file on dev_usb000. Takes about 45secs for NAND UTILITIES TOGGLE QA: Enable/Disable QA flag. This option is only available in REBUG 3.55.3 REX EDITION as we are not able to set QA token at the moment from GameOS on higher firmware. TOGGLE RECOVERY MODE: Enable/Disable Recover Mode flag. When enabled your PS3 will reboot into Recovery Mode. TOGGLE PRODUCT MODE: Enable/Disable Product Mode flag. When enabled your PS3 will reboot into Factory Service Mode. This option is only available in REBUG 3.55.3 REX EDITION for safety reasons. LOAD LV2 KERNEL: Load lv2_kernel.self.[KERNEL_NAME] from USB or /dev_hdd0 CREATE PACKAGES FOLDER ON PS3: Create /dev_hdd0/packages folder or your PS3 to be used with Package Manager. EXPORT HYPERVISOR LV1 MEMORY: Save LV1 memory to dev_usb000 or dev_usb006 or dev_hdd0 if usb is not found. EXPORT HYPERVISOR LV2 MEMORY: Save LV2 memory to dev_usb000 or dev_usb006 or dev_hdd0 if usb is not found. CHANGE ACTIVE PS3ID: Spoof IDPS in LV2 memory. Choose from a list of Target ID’s or Use EID5 which will spoof your original CEX IDPS allowing you to connect to PSN if your PS3 is running REBUG 4.21.1 REX EDITION in DEX mode. OTHER TOOLBOX FEATURES: L3 changes clock/temperature display L2+R2 enable screensaver START+R2 take a raw rgb screenshot Remote-play via PSP/PSVITA Auto-turn-off if idle for 1 hour Telnet to PS3 ip at port: 8080 FTP access with writable dev_flash mounted as dev_rebug (port: 21, user: anonymous, password: (anything)) IMPORTANT INFORMATION QA SUPPORT QA is supported in all REBUG REX EDITIONS but at this point in time we are unable to set the QA Token from GameOS on 3.55+ firmware.It is good practice to enable QA in 3.55 before updating to any CFW not just REBUG. OTHEROS++ SUPPORT OtherOS++ is supported by all REBUG REX EDITIONS and will detect your existing OtherOS HDD partition.However none of the REBUG REX EDITIONS have emer_init.self patched (create smaller GameOS partition). We are working on a solution to this from GameOS. In the meantime if you do want to create an OtherOS partition you have two options: 1: Use a 3.55 firmware that already has emer_init.self patched to the size you want. 2: Patch REBUG 3.55.3 REX EDITION in PS3MFW Builder If you choose option 2 we highly recommend that you ONLY patch emer_init.self. Also the resulting PUP will only be able to be installed on 3.55 firmware as the spkg_hdr will be mismatched. One final thing to note about OtherOS on 4.21.1 is that it function is slightly reduced at the moment due to the fact that we are not able to map memory like in 3.55 and below. The affected modules are ps3ram and ps3sbmmio. Hopefully this problem can be addressed without having to release another firmware. REBUG 4.21.1 REX EDITION INSTALL: From XMB install REBUG 4.21.1 REX EDITION over any 3.55 OFW/CFW/MFW or the same or lower firmware version CFW with spkg sig check patched or any firmware version CFW with spkg sig check patched and QA enabled. UNINSTALL: From XMB REBUG 4.21.1 REX EDITION can be uninstalled with the same or higher firmware version OFW/CFW/MFW or with REBUG 3.55.3 REX EDITION on a QA enabled PS3 or with the ’999′ DOWNGRADER if QA was NOT enabled. REBUG 3.55.3 REX EDITION INSTALL: From XMB install REBUG 3.55.3 REX EDITION over the same or lower firmware version OFW/CFW/MFW or any firmware version CFW/MFW with spkg sig check patched and QA enabled. UNINSTALL: From XMB REBUG 3.55.3 REX EDITION can be uninstalled with the same or higher firmware version OFW/CFW/MFW. REBUG ’999′ DOWNGRADER THIS WILL SET YOUR SYSCON COREOS VERSION TO 9.99 ON PURPOSE: DO NOT PANIC REQUIRES SYSCON DEHASHING AFTER DOWNGRADE INSTALL: From XMB install ’999′ DOWNGRADER over any firmware version CFW/MFW with spkg sig check patched on a PS3 with or without QA enabled. UNINSTALL/DEHASH: REQUIRES PS3 TO BE QA ENABLED From XMB ’999′ DOWNGRADER can be uninstalled/dehashed with the REBUG 3.55.3 REX EDITION or from Recovery Mode with any other 3.55 OFW/CFW/MFW. Enjoy ~Codename: REBUG Team. Codename: REBUG would like to thank: graf_chokolo (as always) and The Three Musketeers for the work they have done in the past and (hopefully) future. Big thanks to: naehrwert - For scetool (its elf compression played a big part in 4.21.1) deank - Helping us get the Rebug Toolbox up and running. Our BIGGEST thanks: flatz - Helping with the OtherOS testing and well… You know what you did.. Rebug Scorpion Artwork: by blastleaf - blastleaf@gmail.com Rebug Customised Font: by @GDcooya Source and Download: Rebug.me
  20. [appldr] type=SELF revision=0000 version=0000008000000000 self_type=APP erk=95F50019E7A68E341FA72EFDF4D60ED376E25CF46BB48DFDD1F080259DC93F04 riv=4A0955D946DB70D691A640BB7FAECC4C pub=6F8DF8EBD0A1D1DB08B30DD3A951E3F1F27E34030B42C729C55555232D61B834B8BDFFB07E54B343 priv=006C3E4CCB2C69A5AD7C6F60448E50C7F9184EEAF4 ctype=21 [appldr] type=SELF revision=0001 version=0003001500000000 self_type=APP erk=79481839C406A632BDB4AC093D73D99AE1587F24CE7E69192C1CD0010274A8AB riv=6F0F25E1C8C4B7AE70DF968B04521DDA pub=94D1B7378BAFF5DFED269240A7A364ED68446741622E50BC6079B6E606A2F8E0A4C56E5CFF836526 priv=003DE80167D2F0E9D30F2145144A558D1174F5410C ctype=11 [appldr] type=SELF revision=0002 version=0003001500000000 self_type=APP erk=4F89BE98DDD43CAD343F5BA6B1A133B0A971566F770484AAC20B5DD1DC9FA06A riv=90C127A9B43BA9D8E89FE6529E25206F pub=8CA6905F46148D7D8D84D2AFCEAE61B41E6750FC22EA435DFA61FCE6F4F860EE4F54D9196CA5290E priv= ctype=13 [appldr] type=SELF revision=0003 version=0003001500000000 self_type=APP erk=C1E6A351FCED6A0636BFCB6801A0942DB7C28BDFC5E0A053A3F52F52FCE9754E riv=E0908163F457576440466ACAA443AE7C pub=50022D5D37C97905F898E78E7AA14A0B5CAAD5CE8190AE5629A10D6F0CF4173597B37A95A7545C92 priv= ctype=0B [appldr] type=SELF revision=0004 version=0003004100000000 self_type=APP erk=838F5860CF97CDAD75B399CA44F4C214CDF951AC795298D71DF3C3B7E93AAEDA riv=7FDBB2E924D182BB0D69844ADC4ECA5B pub=1F140E8EF887DAB52F079A06E6915A6460B75CD256834A43FA7AF90C23067AF412EDAFE2C1778D69 priv=0074E922FDEE5DC4CDF22FC8D7986477F813400860 ctype=14 [appldr] type=SELF revision=0005 version=0003004100000000 self_type=APP erk=C109AB56593DE5BE8BA190578E7D8109346E86A11088B42C727E2B793FD64BDC riv=15D3F191295C94B09B71EBDE088A187A pub=B6BB0A84C649A90D97EBA55B555366F52381BB38A84C8BB71DA5A5A0949043C6DB249029A43156F7 priv= ctype=15 [appldr] type=SELF revision=0006 version=0003004100000000 self_type=APP erk=6DFD7AFB470D2B2C955AB22264B1FF3C67F180983B26C01615DE9F2ECCBE7F41 riv=24BD1C19D2A8286B8ACE39E4A37801C2 pub=71F46AC33FF89DF589A100A7FB64CEAC244C9A0CBBC1FDCE80FB4BF8A0D2E66293309CB8EE8CFA95 priv= ctype=2C [appldr] type=SELF revision=0007 version=0003005000000000 self_type=APP erk=945B99C0E69CAF0558C588B95FF41B232660ECB017741F3218C12F9DFDEEDE55 riv=1D5EFBE7C5D34AD60F9FBC46A5977FCE pub=AB284CA549B2DE9AA5C903B75652F78D192F8F4A8F3CD99209415C0A84C5C9FD6BF3095C1C18FFCD priv=002CF896D35DB871D0E6A252E799876A70D043C23E ctype=15 [appldr] type=SELF revision=0008 version=0003005000000000 self_type=APP erk=2C9E8969EC44DFB6A8771DC7F7FDFBCCAF329EC3EC070900CABB23742A9A6E13 riv=5A4CEFD5A9C3C093D0B9352376D19405 pub=6E82F6B54A0E9DEBE4A8B3043EE3B24CD9BBB62B4416B0482582E419A2552E29AB4BEA0A4D7FA2D5 priv= ctype=16 [appldr] type=SELF revision=0009 version=0003005000000000 self_type=APP erk=F69E4A2934F114D89F386CE766388366CDD210F1D8913E3B973257F1201D632B riv=F4D535069301EE888CC2A852DB654461 pub=1D7B974D10E61C2ED087A0981535904677EC07E96260F89565FF7EBDA4EE035C2AA9BCBDD5893F99 priv= ctype=2D [appldr] type=SELF revision=000A version=0003005500000000 self_type=APP erk=29805302E7C92F204009161CA93F776A072141A8C46A108E571C46D473A176A3 riv=5D1FAB844107676ABCDFC25EAEBCB633 pub=09301B6436C85B53CB1585300A3F1AF9FB14DB7C30088C4642AD66D5C148B8995BB1A698A8C71827 priv=0010818ED8A666051C6198662C3D6DDE2CA4901DDC ctype=25 [appldr] type=SELF revision=000B version=0003005500000000 self_type=APP erk=A4C97402CC8A71BC7748661FE9CE7DF44DCE95D0D58938A59F47B9E9DBA7BFC3 riv=E4792F2B9DB30CB8D1596077A13FB3B5 pub=2733C889D289550FE00EAA5A47A34CEF0C1AF187610EB07BA35D2C09BB73C80B244EB4147700D1BF priv= ctype=26 [appldr] type=SELF revision=000C version=0003005500000000 self_type=APP erk=9814EFFF67B7074D1B263BF85BDC8576CE9DEC914123971B169472A1BC2387FA riv=D43B1FA8BE15714B3078C23908BB2BCA pub=7D1986C6BEE6CE1E0C5893BD2DF203881F40D5056761CC3F1F2E9D9A378617A2DE40BA5F09844CEB priv= ctype=3D [appldr] type=SELF revision=000D version=0003005600000000 self_type=APP erk=03B4C421E0C0DE708C0F0B71C24E3EE04306AE7383D8C5621394CCB99FF7A194 riv=5ADB9EAFE897B54CB1060D6885BE22CF pub=71502ADB5783583AB88B2D5F23F419AF01C8B1E72FCA1E694AD49FE3266F1F9C61EFC6F29B351142 priv= ctype=12 [appldr] type=SELF revision=000E version=0003005600000000 self_type=APP erk=39A870173C226EB8A3EEE9CA6FB675E82039B2D0CCB22653BFCE4DB013BAEA03 riv=90266C98CBAA06C1BF145FF760EA1B45 pub=84DE5692809848E5ACBE25BE548F6981E3DB14735A5DDE1A0FD1F475866532B862B1AB6A004B7255 priv= ctype=27 [appldr] type=SELF revision=000F version=0003005600000000 self_type=APP erk=FD52DFA7C6EEF5679628D12E267AA863B9365E6DB95470949CFD235B3FCA0F3B riv=64F50296CF8CF49CD7C643572887DA0B pub=0696D6CCBD7CF585EF5E00D547503C185D7421581BAD196E081723CD0A97FA40B2C0CD2492B0B5A1 priv= ctype=3A [appldr] type=SELF revision=0010 version=0003006000000000 self_type=APP erk=A5E51AD8F32FFBDE808972ACEE46397F2D3FE6BC823C8218EF875EE3A9B0584F riv=7A203D5112F799979DF0E1B8B5B52AA4 pub=50597B7F680DD89F6594D9BDC0CBEE03666AB53647D0487F7F452FE2DD02694631EA755548C9E934 priv= ctype=25 [appldr] type=SELF revision=0010 version=0003006100000000 self_type=APP erk=A5E51AD8F32FFBDE808972ACEE46397F2D3FE6BC823C8218EF875EE3A9B0584F riv=7A203D5112F799979DF0E1B8B5B52AA4 pub=50597B7F680DD89F6594D9BDC0CBEE03666AB53647D0487F7F452FE2DD02694631EA755548C9E934 priv= ctype=25 [appldr] type=SELF revision=0011 version=0003006000000000 self_type=APP erk=0F8EAB8884A51D092D7250597388E3B8B75444AC138B9D36E5C7C5B8C3DF18FD riv=97AF39C383E7EF1C98FA447C597EA8FE pub=2FDA7A56AAEA65921C0284FF1942C6DE137370093D106034B59191951A5201B422D462F8726F852D priv= ctype=26 [appldr] type=SELF revision=0013 version=0003006500000000 self_type=APP erk=DBF62D76FC81C8AC92372A9D631DDC9219F152C59C4B20BFF8F96B64AB065E94 riv=CB5DD4BE8CF115FFB25801BC6086E729 pub=B26FE6D3E3A1E766FAE79A8E6A7F48998E7FC1E4B0AD8745FF54C018C2A6CC7A0DD7525FAFEA4917 priv= ctype=12 [appldr] type=SELF revision=0014 version=0003006500000000 self_type=APP erk=491B0D72BB21ED115950379F4564CE784A4BFAABB00E8CB71294B192B7B9F88E riv=F98843588FED8B0E62D7DDCB6F0CECF4 pub=04275E8838EF95BD013B223C3DF674540932F21B534C7ED2944B9104D938FEB03B824DDB866AB26E priv= ctype=27 [appldr] type=SELF revision=0016 version=0003007000000000 self_type=APP erk=A106692224F1E91E1C4EBAD4A25FBFF66B4B13E88D878E8CD072F23CD1C5BF7C riv=62773C70BD749269C0AFD1F12E73909E pub=566635D3E1DCEC47243AAD1628AE6B2CEB33463FC155E4635846CE33899C5E353DDFA47FEF5694AF priv= ctype=30 [appldr] type=SELF revision=0016 version=0003007200000000 self_type=APP erk=A106692224F1E91E1C4EBAD4A25FBFF66B4B13E88D878E8CD072F23CD1C5BF7C riv=62773C70BD749269C0AFD1F12E73909E pub=566635D3E1DCEC47243AAD1628AE6B2CEB33463FC155E4635846CE33899C5E353DDFA47FEF5694AF priv= ctype=30 [appldr] type=SELF revision=0016 version=0003007300000000 self_type=APP erk=A106692224F1E91E1C4EBAD4A25FBFF66B4B13E88D878E8CD072F23CD1C5BF7C riv=62773C70BD749269C0AFD1F12E73909E pub=566635D3E1DCEC47243AAD1628AE6B2CEB33463FC155E4635846CE33899C5E353DDFA47FEF5694AF priv= ctype=30 [appldr] type=SELF revision=0016 version=0003007400000000 self_type=APP erk=A106692224F1E91E1C4EBAD4A25FBFF66B4B13E88D878E8CD072F23CD1C5BF7C riv=62773C70BD749269C0AFD1F12E73909E pub=566635D3E1DCEC47243AAD1628AE6B2CEB33463FC155E4635846CE33899C5E353DDFA47FEF5694AF priv= ctype=30 [appldr] type=SELF revision=0017 version=0003007000000000 self_type=APP erk=4E104DCE09BA878C75DA98D0B1636F0E5F058328D81419E2A3D22AB0256FDF46 riv=954A86C4629E116532304A740862EF85 pub=3B7B04C71CAE2B1199D57453C038BB1B541A05AD1B94167B0AB47A9B24CAECB9000CB21407009666 priv= ctype=08 [appldr] type=SELF revision=0019 version=0004000000000000 self_type=APP erk=3236B9937174DF1DC12EC2DD8A318A0EA4D3ECDEA5DFB4AC1B8278447000C297 riv=6153DEE781B8ADDC6A439498B816DC46 pub=148DCA961E2738BAF84B2D1B6E2DA2ABD6A95F2C9571E54C6922F9ED9674F062B7F1BE5BD6FA5268 priv= ctype=31 [appldr] type=SELF revision=001A version=0004000000000000 self_type=APP erk=5EFD1E9961462794E3B9EF2A4D0C1F46F642AAE053B5025504130590E66F19C9 riv=1AC8FA3B3C90F8FDE639515F91B58327 pub=BE4B1B513536960618BFEF12A713F6673881B02F9DC616191E823FC8337CCF99ADAA6172019C0C23 priv= ctype=17 [appldr] type=SELF revision=001C version=0004002000000000 self_type=APP erk=CFF025375BA0079226BE01F4A31F346D79F62CFB643CA910E16CF60BD9092752 riv=FD40664E2EBBA01BF359B0DCDF543DA4 pub=36C1ACE6DD5CCC0006FDF3424750FAC515FC5CFA2C93EC53C6EC2BC421708D154E91F2E7EA54A893 priv= ctype=09 [appldr] type=SELF revision=001C version=0004002100000000 self_type=APP erk=CFF025375BA0079226BE01F4A31F346D79F62CFB643CA910E16CF60BD9092752 riv=FD40664E2EBBA01BF359B0DCDF543DA4 pub=36C1ACE6DD5CCC0006FDF3424750FAC515FC5CFA2C93EC53C6EC2BC421708D154E91F2E7EA54A893 ctype=09 [appldr] type=SELF revision=001C version=0004002500000000 self_type=APP erk=CFF025375BA0079226BE01F4A31F346D79F62CFB643CA910E16CF60BD9092752 riv=FD40664E2EBBA01BF359B0DCDF543DA4 pub=36C1ACE6DD5CCC0006FDF3424750FAC515FC5CFA2C93EC53C6EC2BC421708D154E91F2E7EA54A893 priv= ctype=09 [appldr] type=SELF revision=001D version=0004002000000000 self_type=APP erk=D202174EB65A62048F3674B59EF6FE72E1872962F3E1CD658DE8D7AF71DA1F3E riv=ACB9945914EBB7B9A31ECE320AE09F2D pub=430322887503CF52928FAAA410FD623C7321281C8825D95F5B47EF078EFCFC44454C3AB4F00BB879 priv= ctype=1A [appldr] type=SELF revision=001E version=0004003000000000 self_type=APP erk=46BD0891224E0CE13E2162921D4BB76193AEEE4416A729FCDD111C5536BF87C9 riv=BF036387CDB613C0AC88A6D9D2CC5316 pub=A14F6D5F9AD7EBB3B7A39A7C32F13E5DC3B0BA16BDC33D39FDDF88F4AEEA6CFEEB0C0796C917A952 priv= ctype=0F [appldr] type=SELF revision=0000 version=0000009200000000 self_type=NPDRM erk=D91166973979EA8694476B011AC62C7E9F37DA26DE1E5C2EE3D66E42B8517085 riv=DC01280A6E46BC674B81A7E8801EBE6E pub=A0FC44108236141BF3517A662B027AFC1AC513A05690496C754DEB7D43BDC41B80FD75C212624EE4 priv= ctype=11 [appldr] type=SELF revision=0001 version=0001000000000000 self_type=NPDRM erk=F9EDD0301F770FABBA8863D9897F0FEA6551B09431F61312654E28F43533EA6B riv=A551CCB4A42C37A734A2B4F9657D5540 pub=B05F9DA5F9121EE4031467E74C505C29A8E29D1022379EDFF0500B9AE480B5DAB4578A4C61C5D6BF priv=00040AB47509BED04BD96521AD1B365B86BF620A98 ctype=11 [appldr] type=SELF revision=0002 version=0001000000000000 self_type=NPDRM erk=8E737230C80E66AD0162EDDD32F1F774EE5E4E187449F19079437A508FCF9C86 riv=7AAECC60AD12AED90C348D8C11D2BED5 pub=05BF09CB6FD78050C78DE69CC316FF27C9F1ED66A45BFCE0A1E5A6749B19BD546BBB4602CF373440 priv= ctype=0A [appldr] type=SELF revision=0003 version=0003001500000000 self_type=NPDRM erk=1B715B0C3E8DC4C1A5772EBA9C5D34F7CCFE5B82025D453F3167566497239664 riv=E31E206FBB8AEA27FAB0D9A2FFB6B62F pub=3F51E59FC74D6618D34431FA67987FA11ABBFACC7111811473CD9988FE91C43FC74605E7B8CB732D priv= ctype=08 [appldr] type=SELF revision=0004 version=0003004000000000 self_type=NPDRM erk=BB4DBF66B744A33934172D9F8379A7A5EA74CB0F559BB95D0E7AECE91702B706 riv=ADF7B207A15AC601110E61DDFC210AF6 pub=9C327471BAFF1F877AE4FE29F4501AF5AD6A2C459F8622697F583EFCA2CA30ABB5CD45D1131CAB30 priv=00B61A91DF4AB6A9F142C326BA9592B5265DA88856 ctype=16 [appldr] type=SELF revision=0005 version=0003004000000000 self_type=NPDRM erk=B73111B0B00117E48DE5E2EE5E534C0F0EFFA4890BBB8CAD01EE0F848F91583E riv=86F56F9E5DE513894874B8BA253334B1 pub=B0BA1A1AB9723BB4E87CED9637BE056066BC56E16572D43D0210A06411DBF8FEB8885CD912384AE5 priv= ctype=12 [appldr] type=SELF revision=0006 version=0003004000000000 self_type=NPDRM erk=8B4C52849765D2B5FA3D5628AFB17644D52B9FFEE235B4C0DB72A62867EAA020 riv=05719DF1B1D0306C03910ADDCE4AF887 pub=2A5D6C6908CA98FC4740D834C6400E6D6AD74CF0A712CF1E7DAE806E98605CC308F6A03658F2970E priv= ctype=29 [appldr] type=SELF revision=0007 version=0003005000000000 self_type=NPDRM erk=3946DFAA141718C7BE339A0D6C26301C76B568AEBC5CD52652F2E2E0297437C3 riv=E4897BE553AE025CDCBF2B15D1C9234E pub=A13AFE8B63F897DA2D3DC3987B39389DC10BAD99DFB703838C4A0BC4E8BB44659C726CFD0CE60D0E priv=009EF86907782A318D4CC3617EBACE2480E73A46F6 ctype=17 [appldr] type=SELF revision=0008 version=0003005000000000 self_type=NPDRM erk=8E944267C02E69A4FE474B7F5FCD7974A4F936FF4355AEC4F80EFA123858D8F6 riv=908A75754E521EAC2F5A4889C6D7B72D pub=91201DA7D79E8EE2563142ECBD646DA026C963AC09E760E5390FFE24DAE6864310ABE147F8204D0B priv= ctype=13 [appldr] type=SELF revision=0009 version=0003005000000000 self_type=NPDRM erk=0786F4B0CA5937F515BDCE188F569B2EF3109A4DA0780A7AA07BD89C3350810A riv=04AD3C2F122A3B35E804850CAD142C6D pub=A1FE61035DBBEA5A94D120D03C000D3B2F084B9F4AFA99A2D4A588DF92B8F36327CE9E47889A45D0 priv= ctype=2A [appldr] type=SELF revision=000A version=0003005500000000 self_type=NPDRM erk=03C21AD78FBB6A3D425E9AAB1298F9FD70E29FD4E6E3A3C151205DA50C413DE4 riv=0A99D4D4F8301A88052D714AD2FB565E pub=3995C390C9F7FBBAB124A1C14E70F9741A5E6BDF17A605D88239652C8EA7D5FC9F24B30546C1E44B priv=009AC6B22A056BA9E0B6D1520F28A57A3135483F9F ctype=27 [appldr] type=SELF revision=000B version=0003005500000000 self_type=NPDRM erk=BB31DF9A6F62C0DF853075FAA65134D9CE2240306C1731D1F7DA9B5329BD699F riv=263057225873F83940A65C8C926AC3E4 pub=BC3A82A4F44C43A197070CD236FDC94FCC542D69A3E803E0AFF78D1F3DA19A79D2F61FAB5B94B437 priv= ctype=23 [appldr] type=SELF revision=000C version=0003005500000000 self_type=NPDRM erk=337A51416105B56E40D7CAF1B954CDAF4E7645F28379904F35F27E81CA7B6957 riv=8405C88E042280DBD794EC7E22B74002 pub=9BFF1CC7118D2393DE50D5CF44909860683411A532767BFDAC78622DB9E5456753FE422CBAFA1DA1 priv= ctype=18 [appldr] type=SELF revision=000D version=0003005600000000 self_type=NPDRM erk=357EBBEA265FAEC271182D571C6CD2F62CFA04D325588F213DB6B2E0ED166D92 riv=D26E6DD2B74CD78E866E742E5571B84F pub=00DCF5391618604AB42C8CFF3DC304DF45341EBA4551293E9E2B68FFE2DF527FFA3BE8329E015E57 priv= ctype=3A [appldr] type=SELF revision=000E version=0003005600000000 self_type=NPDRM erk=71AA75C70A255580E4AE9BDAA0B08828C53EAA713CD0713797F143B284C1589B riv=9DED878CB6BA07121C0F50E7B172A8BF pub=387FCDAEAFF1B59CFAF79CE6215A065ACEAFFAF4048A4F217E1FF5CE67C66EC3F089DB235E52F9D3 priv= ctype=29 [appldr] type=SELF revision=000F version=0003005600000000 self_type=NPDRM erk=135C098CBE6A3E037EBE9F2BB9B30218DDE8D68217346F9AD33203352FBB3291 riv=4070C898C2EAAD1634A288AA547A35A8 pub=BBD7CCCB556C2EF0F908DC7810FAFC37F2E56B3DAA5F7FAF53A4944AA9B841F76AB091E16B231433 priv= ctype=3B [appldr] type=SELF revision=0010 version=0003006000000000 self_type=NPDRM erk=4B3CD10F6A6AA7D99F9B3A660C35ADE08EF01C2C336B9E46D1BB5678B4261A61 riv=C0F2AB86E6E0457552DB50D7219371C5 pub=64A5C60BC2AD18B8A237E4AA690647E12BF7A081523FAD4F29BE89ACAC72F7AB43C74EC9AFFDA213 ctype=27 [appldr] type=SELF revision=0010 version=0003006100000000 self_type=NPDRM erk=4B3CD10F6A6AA7D99F9B3A660C35ADE08EF01C2C336B9E46D1BB5678B4261A61 riv=C0F2AB86E6E0457552DB50D7219371C5 pub=64A5C60BC2AD18B8A237E4AA690647E12BF7A081523FAD4F29BE89ACAC72F7AB43C74EC9AFFDA213 priv= ctype=27 [appldr] type=SELF revision=0013 version=0003006500000000 self_type=NPDRM erk=265C93CF48562EC5D18773BEB7689B8AD10C5EB6D21421455DEBC4FB128CBF46 riv=8DEA5FF959682A9B98B688CEA1EF4A1D pub=9D8DB5A880608DC69717991AFC3AD5C0215A5EE413328C2ABC8F35589E04432373DB2E2339EEF7C8 priv= ctype=18 [appldr] type=SELF revision=0013 version=0003006600000000 self_type=NPDRM erk=265C93CF48562EC5D18773BEB7689B8AD10C5EB6D21421455DEBC4FB128CBF46 riv=8DEA5FF959682A9B98B688CEA1EF4A1D pub=9D8DB5A880608DC69717991AFC3AD5C0215A5EE413328C2ABC8F35589E04432373DB2E2339EEF7C8 priv= ctype=18 [appldr] type=SELF revision=0016 version=0003007000000000 self_type=NPDRM erk=7910340483E419E55F0D33E4EA5410EEEC3AF47814667ECA2AA9D75602B14D4B riv=4AD981431B98DFD39B6388EDAD742A8E pub=62DFE488E410B1B6B2F559E4CB932BCB78845AB623CC59FDF65168400FD76FA82ED1DC60E091D1D1 priv= ctype=25 [appldr] type=SELF revision=0016 version=0003007200000000 self_type=NPDRM erk=7910340483E419E55F0D33E4EA5410EEEC3AF47814667ECA2AA9D75602B14D4B riv=4AD981431B98DFD39B6388EDAD742A8E pub=62DFE488E410B1B6B2F559E4CB932BCB78845AB623CC59FDF65168400FD76FA82ED1DC60E091D1D1 priv= ctype=25 [appldr] type=SELF revision=0016 version=0003007300000000 self_type=NPDRM erk=7910340483E419E55F0D33E4EA5410EEEC3AF47814667ECA2AA9D75602B14D4B riv=4AD981431B98DFD39B6388EDAD742A8E pub=62DFE488E410B1B6B2F559E4CB932BCB78845AB623CC59FDF65168400FD76FA82ED1DC60E091D1D1 priv= ctype=25 [appldr] type=SELF revision=0016 version=0003007400000000 self_type=NPDRM erk=7910340483E419E55F0D33E4EA5410EEEC3AF47814667ECA2AA9D75602B14D4B riv=4AD981431B98DFD39B6388EDAD742A8E pub=62DFE488E410B1B6B2F559E4CB932BCB78845AB623CC59FDF65168400FD76FA82ED1DC60E091D1D1 priv= ctype=25 [appldr] type=SELF revision=0019 version=0004000000000000 self_type=NPDRM erk=FBDA75963FE690CFF35B7AA7B408CF631744EDEF5F7931A04D58FD6A921FFDB3 riv=F72C1D80FFDA2E3BF085F4133E6D2805 pub=637EAD34E7B85C723C627E68ABDD0419914EBED4008311731DD87FDDA2DAF71F856A70E14DA17B42 priv= ctype=24 [appldr] type=SELF revision=0019 version=0004000100000000 self_type=NPDRM erk=FBDA75963FE690CFF35B7AA7B408CF631744EDEF5F7931A04D58FD6A921FFDB3 riv=F72C1D80FFDA2E3BF085F4133E6D2805 pub=637EAD34E7B85C723C627E68ABDD0419914EBED4008311731DD87FDDA2DAF71F856A70E14DA17B42 priv= ctype=24 [appldr] type=SELF revision=0019 version=0004001000000000 self_type=NPDRM erk=FBDA75963FE690CFF35B7AA7B408CF631744EDEF5F7931A04D58FD6A921FFDB3 riv=F72C1D80FFDA2E3BF085F4133E6D2805 pub=637EAD34E7B85C723C627E68ABDD0419914EBED4008311731DD87FDDA2DAF71F856A70E14DA17B42 priv= ctype=24 [appldr] type=SELF revision=0019 version=0004001100000000 self_type=NPDRM erk=FBDA75963FE690CFF35B7AA7B408CF631744EDEF5F7931A04D58FD6A921FFDB3 riv=F72C1D80FFDA2E3BF085F4133E6D2805 pub=637EAD34E7B85C723C627E68ABDD0419914EBED4008311731DD87FDDA2DAF71F856A70E14DA17B42 priv= ctype=24 [appldr] type=SELF revision=001C version=0004002000000000 self_type=NPDRM erk=8103EA9DB790578219C4CEDF0592B43064A7D98B601B6C7BC45108C4047AA80F riv=246F4B8328BE6A2D394EDE20479247C5 pub=503172C9551308A87621ECEE90362D14889BFED2CF32B0B3E32A4F9FE527A41464B735E1ADBC6762 priv= ctype=30 [appldr] type=SELF revision=001C version=0004002100000000 self_type=NPDRM erk=8103EA9DB790578219C4CEDF0592B43064A7D98B601B6C7BC45108C4047AA80F riv=246F4B8328BE6A2D394EDE20479247C5 pub=503172C9551308A87621ECEE90362D14889BFED2CF32B0B3E32A4F9FE527A41464B735E1ADBC6762 priv= ctype=30 [appldr] type=SELF revision=001C version=0004002500000000 self_type=NPDRM erk=8103EA9DB790578219C4CEDF0592B43064A7D98B601B6C7BC45108C4047AA80F riv=246F4B8328BE6A2D394EDE20479247C5 pub=503172C9551308A87621ECEE90362D14889BFED2CF32B0B3E32A4F9FE527A41464B735E1ADBC6762 priv= ctype=30 Source(PS3HAX)
  21. Today, Sony PlayStation 3 Homebrew developer Condorstrike, has posted info regarding an update for his PS3LoadX program for those using the new CFW 4.xx series on their Jailbreakable PS3 consoles. Here is the official info taken from his own dev site: Here’s and updated and repacked PS3LoadX for 4.xx CFW’s, did some minor code cleanup, and bug removal, also reduced application size and replaced the loading method. Also replaced ICON0 and PIC1 for better aesthetics. Enjoy… Repacked for use with 4.xx CFWs. Replaced loading method. Fixed minor bug with Temporary Folder. Features: You can load SELF files using the net. You can load applications from USB/ HDD devices You can install applications to the USB or HDD devices from one .zip file You can copy applications from USB devices to HDD Also you can delete installed applications. installing and launching programs and .zip files: You can load .ZIP files via tcp using the network, just like the SELFs. An “install†folder will be built into your [uSB/HDD root: Homebrew] Folder and contents shadow copied to PSL145310/homebrew/install. Theâ€install†folder can be added manually as-well, if no network loading is to be used. Programs will be displayed in PS3LoadX and buttons commands will be available accordingly. Source(PS3Crunch) PS3LoadX_4.xx.rar
  22. The latest update for mmCM is out bringing us to v04.09.00 The latest update brings the following new changes: Update online covers database(fixed fifa 13/maiden/dishonored covers) Updated gameDATA3, lastGAME3 and bdRESET3 to support 4.30CFW Updated showTIME to 04.01.208 (standalone PKG and showTIME for mM) Added hidden option in options.bin “kid_protection†(to control access to settings/mmos) Download Source(PS3HAX) multiMAN ver 04.09.00 BASE (20121030).rar
  23. This is a 4.30 Triple Pack that contains : Rogero CEX-4.30 v1.00 + multiMAN ver 04.08.01 + Showtime 04.01.208 ( Please follow the instructions inside the download package in order to patch the CFW correctly and fix the PS button No-Icons issue ) MD5: 7ef38c26482465b939a8ab5e960f165c Size : 192 MB (201,435,915 bytes) This CFW was tested on most PS3 Models by different testers and no problems were encountered. But as any CFW release you must install it with caution and by following proper instructions, No one will be held responsible for any damage caused. * For details about Updating from CFW3.55/4.21 to CFW4.30 Please read the Update Guide below * For details about Downgrading back to CFW/OFW3.55 Please read the Downgrade Guide below * For details about Recovering from a Brick please check this thread ----> Brick-Recovery Procedure from CFW4.21 back to CFW3.55 Rogero CEX-4.30 v1.00 Details - Compatibility problem with some PS3 models is now fully fixed. - XMB Icons problem from in-game PS button is now fixed. (Using the Patch included in the package: "PS3~dev_blind.zip") - PSN/SEN access is available as long as the current "passphrase" still the same. - Loading games from App_home Icon is now fixed. - It was tested by hundreds of testers on all PS3 models (FAT & Slim) and no problems were encountered. - It can run games signed with Keys up to version 4.30 without any Eboot/Sprx patching needed - Games can be loaded from Disc Icon (with Original game in BD) and from app_home (Disc-less, but not all games). - Current 3.55 homebrew applications can't be loaded on this CFW, applications must be re-signed properly for FW4.21. ATTENTION: 1- This CFW doesn't have LV1 checks disabled and can't be installed on Downgraded PS3 consoles unless you have Dehashed/Reset Syscon Properly (if you're not sure about your PS3, Dehash it anyway to avoid any risk) Link ----> Dehashing Tutorial 2- Always make a NOR/Nand dump using multiMAN or memdump before installing any CFW to have a recovery backup in case of any bricks. Having a valid NOR/Nand dump is an essential step before upgrading, because you will always have a way to recover (using hardware flashers) when you have a valid dump. ** A Hardware Flasher alone without a valid dump may not fix your bricked PS3 ** 3- The QA flag must be always Enabled on your PS3 for safer upgrading/downgrading operations. Link ----> toggle_qa.pkg 4- Always use the Recovery Menu while installing this CFW to avoid possible bricks (XMB update works, but Recovery Menu is safer). 6- Please Check the MD5 of the downloaded PUP file before installing any CFW to avoid possible bricks. 7- DO NOT HAVE DISC IN PS3 WHEN UPDATING FIRMWARES..As the PS3 will take the UPDATE from the DISC First. 8- You need to already be on 3.55 to install this. Installing from any firmware other than 3.55 will simply not work - Downgrading back to 3.55 is always possible using the following steps : - Download the Downgrader PUP ---> Downgrader PUP mirror ---> Downgrader PUP Size 176MB (184,595,263 bytes) MD5: 49d80e07fc1f5ca1b0840e02e94635db - Rename the downloaded file to "PS3UPDAT.PUP" and put it on your USB in: "USB\PS3\UPDATE\PS3UPDAT.PUP" - While on Rogero CFW4.30, go to System Update from XMB and install the Downgrader PUP. - After the Downgrader PUP installs you'll be on a hybrid CFW3.55 that will still shows ver4.21/4.30 from system settings. - Enable QA flag by following these steps: 1- Download the Rebug QA_Toggle package from here ---> toggle_qa.pkg 2- Put the "toggle_qa.pkg" on USB and Install it on the PS3. 3- Run the "Rebug Toggle QA" from XMB, the screen will go Black and you will see HDD Led activity then if all went fine you will hear 2 or 3 Beeps and the PS3 will Restart back to XMB. 4- If you want to make sure QA flag was set, go to "Network Settings" then apply the following key combo (all at the same time): L1 + L2 + L3 (press left stick) + R1 + R2 + dpad_down You should see Edy Viewer, Debug Settings, and Install Package Files if done correctly. - Now put "Rogero CEX-3.55 CFW V3.7" on your USB in: "USB\PS3\UPDATE\PS3UPDAT.PUP" ---> Rogero CEX-3.55 CFW V3.7.PUP - Start the PS3 into Recovery Menu and install "Rogero CEX-3.55 CFW V3.7" (from Recovery Menu, this is important) - Once you're back on Rogero CFW3.55 v3.7 Start the PS3 into Recovery Menu and install any CFW 3.55/4.21/4.30. Useful Hint: you can simply use CondorStrike's Updater package from XMB to enter Recovery Menu directly from XMB without going through several restart/shutdown sequences. --> Condor Updater v2.0 - Updating from CFW3.55/4.21 to the CFW4.30 v1.00 should be done using the following steps : 1- Proper Way ( CFW4.21 --> CFW3.55 --> CFW4.30 ) ---- Downgrade back to ver3.55 using the guide above. ---- Once on Rogero CEX3.55 v3.7 you can update again from Recovery Menu into the new CFW4.30 v1.00. 2- Alternative Way #1 ( CFW4.21 --> XMB Update --> CFW4.30 ) ---- You can try updating from CFW4.21 to CFW4.30 v1.00 from XMB by using the "System Update --> Update via Storage Media". ---- If it didn't work, then you'll have to use the Alternative Way #2. 3- Alternative Way #2 ( CFW4.21 --> Recovery Menu --> CFW4.30 ) ---- You can try updating from CFW4.21 to CFW4.30 v1.00 from Recovery Mode. ---- If it didn't work, then you'll have to use the first Proper Way ( CFW4.21 --> CFW3.55 --> CFW4.30 ) - Changing/Upgrading the HDD while on Rogero CFW4.30 should be done using the following steps : - Download the Downgrader PUP ---> Downgrader PUP mirror ---> Downgrader PUP Size 176MB (184,595,263 bytes) MD5: 49d80e07fc1f5ca1b0840e02e94635db - Rename the downloaded file to "PS3UPDAT.PUP" and put it on your USB in: "USB\PS3\UPDATE\PS3UPDAT.PUP" - Swap the current HDD with the New HDD, Turn the PS3 on, follow screen instructions and let it install the Downgrader CFW. - After the Downgrader CFW installs you'll be on a hybrid CFW3.55 that will still shows ver4.21 from system settings. - Enable QA flag by following these steps: 1- Download the Rebug QA_Toggle package from here ---> toggle_qa.pkg 2- Put the "toggle_qa.pkg" on USB and Install it on the PS3. 3- Run the "Rebug Toggle QA" from XMB, the screen will go Black and you will see HDD Led activity then if all went fine you will hear 2 or 3 Beeps and the PS3 will Restart back to XMB. 4- If you want to make sure QA flag was set, go to "Network Settings" then apply the following key combo (all at the same time): L1 + L2 + L3 (press left stick) + R1 + R2 + dpad_down You should see Edy Viewer, Debug Settings, and Install Package Files if done correctly. - Now put "Rogero CEX-3.55 CFW V3.7" on your USB in: "USB\PS3\UPDATE\PS3UPDAT.PUP" ---> Rogero CEX-3.55 CFW V3.7.PUP - Start the PS3 into Recovery Menu and install "Rogero CEX-3.55 CFW V3.7" (from Recovery Menu, this is important) - Once you're back on Rogero CFW3.55 v3.7 Start the PS3 into Recovery Menu and install any CFW 3.55/4.21/4.30. Useful Hint: you can simply use CondorStrike's Updater package from XMB to enter Recovery Menu directly from XMB without going through several restart/shutdown sequences. --> Condor Updater v2.0 Credits to : - PS3DevWiki for the valuable and always up-to-date source of information. - Deank for his continuous efforts on Multiman and many other PS3 tools/fixes. - Tortuga-cove staff for the support forum. - Andoma for his work on his excellent Showtime Media Player. - All the Beta-Testers and all Tortuga-Cove members for their support and patience. Download and Source: http://www.tortuga-c...hp?f=127&t=3708
  24. 04.08.00 * Added proper support for [Hermes] for 4.21CEX ROGERO (SC-8) * Fixed issue with loading split games from external USB HDD * Improved support in lastGAME, gameDATA and bdRESET applications ======== multiMAN ver 04.08.00 BASE (20121023).rar (27.81MB) Download Link - For 3.41-4.21 CFW (CEX) * multiMAN ver 04.08.00 BASE * Showtime 4.1.200 * bdRESET * gameDATA * lastGAME * stDISC multiMAN ver 04.08.00 BASEPLUS (20121023).rar (107.39MB) Download Link - For 3.41-4.21 CFW * multiMAN ver 04.08.00 BASE (CEX/DEX) * Showtime 4.1.200 (CEX/DEX) * bdRESET * gameDATA * lastGAME * stDISC * RetroArch (CEX) * PC Applications multiMAN ver 04.08.00 FULL (20121023).rar (280.68MB) Download Link - For 3.41-4.21 CFW * multiMAN ver 04.08.00 FULL (CEX/DEX) * Everything as in BASEPLUS + 8700 game covers + 2 motion backgrounds Enjoy! andbey0nd p.s. Supported firmwares: 3.41 OFW + JB DONGLE 3.41 CFW HERMES 3.41 CFW REBUG 3.55 OFW DEX 3.55 CFW DEX 3.55 CFW KMEAW 3.55 CFW REBUG 3.55 CFW ROGERO 3.55 CFW TB 3.55 CFW COBRA 4.21 OFW DEX 4.21 CFW DEX 4.21 CFW CEX (all flavors) multiMAN ver 04.08.00 BASE (20121023).rar
×
×
  • Create New...