Cex2Dex: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
Line 10: Line 10:


== cex2dex ==
== cex2dex ==
* [http://www.ps3devwiki.com/files/devtools/Cex2Dex/CEX2DEX/ CEX2DEX] [http://mir.cr/BLLYCG2B mirror]
* [http://www.ps3devwiki.com/files/devtools/Cex2Dex/CEX2DEX/ CEX2DEX] [http://mir.cr/0WPZNP5Z mirror]


== GUI for the console handicapped ==
== GUI for the console handicapped ==
Line 17: Line 17:
== dump_rootkey ==
== dump_rootkey ==
alternative for the 'acquire PCK1' step, without need for OtherOS/Linux.
alternative for the 'acquire PCK1' step, without need for OtherOS/Linux.
* [http://www.ps3devwiki.com/files/devtools/Cex2Dex/dump_rootkey dump_rootkey]
* [http://www.ps3devwiki.com/files/devtools/Cex2Dex/dump_rootkey dump_rootkey]  [http://mir.cr/BLLYCG2B mirror]
(needs 3.41, the [http://www.ps3devwiki.com/files/firmware/MFW-CEX/Downgrader/341-downgrader.pup 341-downgrader.pup] works fine).
(needs 3.41, the [http://www.ps3devwiki.com/files/firmware/MFW-CEX/Downgrader/341-downgrader.pup 341-downgrader.pup] works fine).


== gameos method ==
== gameos method explained ==
<pre>#include <ppu-types.h>
<pre>#include <ppu-types.h>
#include <ppu-lv2.h>
#include <ppu-lv2.h>
Line 52: Line 52:
== eEID_RKDumper ==
== eEID_RKDumper ==
alternative for the 'acquire PCK1' step, without need for OtherOS/Linux.
alternative for the 'acquire PCK1' step, without need for OtherOS/Linux.
* [http://www.ps3devwiki.com/files/devtools/Cex2Dex/eEID_RKDumper/ eEID_RKDumper]
* [http://www.ps3devwiki.com/files/devtools/Cex2Dex/eEID_RKDumper/ eEID_RKDumper] [http://mir.cr/MTH8FV7G mirror]
(works fine on 3.55, e.g. [http://www.ps3devwiki.com/files/firmware/MFW-CEX/Downgrader/Rogero-V3.4/ 3.55-RogeroV3.4] works fine).<br />
(works fine on 3.55, e.g. [http://www.ps3devwiki.com/files/firmware/MFW-CEX/Downgrader/Rogero-V3.4/ 3.55-RogeroV3.4] works fine).<br />



Revision as of 08:32, 5 May 2013

Files

http://www.ps3devwiki.com/files/devtools/Cex2Dex/

LibeEID

c2d

cex2dex

GUI for the console handicapped

http://www.ps3hax.net/2012/07/ps3tools-gui-edition-v2-6-released-cex-2-dex-added/

dump_rootkey

alternative for the 'acquire PCK1' step, without need for OtherOS/Linux.

(needs 3.41, the 341-downgrader.pup works fine).

gameos method explained

#include <ppu-types.h>
#include <ppu-lv2.h>

/*! IIM interface syscall. */
#define SYSCALL_IIM_IF 868
/*! IIM interface. */
#define IIM_IF(cmd, a1, a2, a3, a4) \
	do{ lv2syscall5(SYSCALL_IIM_IF, (u64)(cmd), (u64)(a1), (u64)(a2), (u64)(a3), (u64)(a4)); }while(0)

/*! IIM_GET_DATA. */
#define IIM_GET_DATA 0x17002
/*! EID0 index. */
#define EID0_IDX 0

int main(int argc, const char **argv)
{
	u8 eid0[0x1000];
	u64 size;
	FILE *fp;
	
	//Get EID0.
	IIM_IF(IIM_GET_DATA, EID0_IDX, eid0, sizeof(eid0), &size);
	
	//Dump to usb or wherever you like...
	
	return 0;
}

Source: http://pastie.org/4365689 by naehrwert

eEID_RKDumper

alternative for the 'acquire PCK1' step, without need for OtherOS/Linux.

(works fine on 3.55, e.g. 3.55-RogeroV3.4 works fine).

Howto:

  • install package and run it
  • It will then black screen (no GUI) and restart the console automatically
  • FTP (other otherwise) retrieve your eid_root_key / PCK1 from /dev_hdd0/tmp/eid_root_key

Guide(s)

In short: changing Target ID of console inside decrypted eEID0

Semi Guide / Shortlist