• As many of you know (again) the fuzz that the Cex>Dex method, created. Now it’s turn of demonhades crew to bring an EID0 Dumper for JBM 3.55, MA 3.56 and (you can read the whole article) for more references. The first MAIN step or objective from the *demonios* it’s to not have to depend on Linux to do the conversion. (Aka = DEX). Then you have another app called ConfEditor PS3 for TheGrid, that let’s you mess around more with flags among other powerful as risky ones to use. The only NEGATIVE that i find in all of this, it’s that you have to use the JBM (From DH) to achieve this kind of things. Well it’s time to play!, if you want to know more i will do a better *to english* translation, since i fetched this from another source.

    This weekend Spanish PlayStation 3 developers at DemonHades have made available a PS3 eEID0 Dumper for JBM 3.55, MA 3.56 and PlayStation 3 CFW 3.55 alongside a ConfEditor for TheGrid. To quote, : (I had to translate the all damn thing again because google translate) eEID0 Dumper by BlackDeath to JBM 3.55, MA 3.56 and CFW 3.55

    Hello pals, after the filtered method of CEX2DEX the team decided to investigate in this new field for certain users and not so much for other. That’s why we are working to make an *easier* method in order to switch to DEX without needing linux.
    Today i present you the EID0 dumper created by BlackDeath, this app will let us dump all the EID0 or the first section of CEX, ONLY using or running a PKG and having connected a pendrive in dev_usb000. The instructions are on screen and easy to follow:

    START: Used to dump all the EID0.
    SQUARE: Just to dump the first section of the EID0 (eid0_1st_Section_CEX.bin).
    X (EX): To dump the ciphered METLDR to the USB and ready to go (plug and play) for the exploit and get the dump from deciphered METLDR (mentioned in early staged of this guide)

    If you are in CFW 3.55 (normal) you have to launch the pkg from video.

    Needless to say i leave you the download link that works in ANY CFW 3.55 (PEEK | POKE LV2) As well in MA.

    Blackdeath says:
    This last version now allow us to dump the METLDR (ciphered) from our consoles if you use the X (EX) button and you will obtain the already ciphered METLDR, ready to make a deciphered dump along with they *keys* using the exploit (later).

    We will keep on working on this *area*. Ergo the next step is dump the METLDR without doing so many things in linux, quite the contrary our objective is to achieve a quick, easy to use method to dump it.

    eEID0 is needed for make the process of dumping the metldr (as you all know, and only the first section of the eEID0). The result was this tool, which is needed to do the proper conversion from DEX to TEST.

    Thanks BlackDeath, Checko, Tito01 and DemonHades From checko: WIP: A method to dump metldr and eEID root keys without linux, more easy with some little steps .. maybe naehrwert can help you. To quote from his Twitter (via twitter.com/naehrwert/status/226682478373531648 and twitter.com/naehrwert/status/226686257005203456): Isn’t installing linux to get your eid root key a bit of an overkill when you could just use netrpc?! Or you could compile this pastie.org/4295312, sign it with metldr keys and grab the key/iv from shared LS…

    ldr.ld
    
    ENTRY(_start)
    
    SECTIONS
    {
    	. = 0x25800;
    	.text :
    	{
    		*(.text)
    	}
    	.data :
    	{
    		*(.data)
    		*(.rodata)
    	}
    	.bss :
    	{
    		bss = .;
    		*(.bss)
    	}
    }
    types.h
    
    #ifndef _TYPES_H_
    #define _TYPES_H_
    
    typedef char s8;
    typedef unsigned char u8;
    typedef short s16;
    typedef unsigned short u16;
    typedef int s32;
    typedef unsigned int u32;
    typedef long long int s64;
    typedef unsigned long long int u64;
    
    #endif
    start.S
    
    .text
    
    /* Loader entry. */
    .global _start
    _start:
    	/* Setup stack pointer. */
    	ila sp, 0x3DFA0
    
    	/* Well... */
    	brsl lr, main
    
    	_hang:
    		br _hang
    main.c
    
    #include "types.h"
    
    void *_memcpy(void *dst, void *src, u32 len);
    
    void main()
    {
    	//Copy eid root key/iv to shared LS.
    	_memcpy((u8 *)0x3E000, (u8 *)0x00000, 0x30);
    	//Hang (the PPU should copy the key/iv from shared LS now).
    	while(1);
    }
    
    void *_memcpy(void *dst, void *src, u32 len)
    {
    	u8 *d = (u8 *)dst;
    	u8 *s = (u8 *)src;
    	u32 i;
    
    	for(i = 0; i < len; i++)
    		d[i] = s[i];
    
    	return dst;
    }

    ConfEditor PS3 for TheGrid by RacingLocura07 Our partner and developer RacingLocura07 (UsaveME) leaves us on this occasion the conf editor ps3, this application allows you to enable or disable patches, plugins or create flags without using a PC, all from the PS3 itself in a simple and fast Download: http://www.sendspace.com/file/99llgd Options:

    • Displays a list of flags
    • Displays list of patch-dynamic
    • Displays a list of plugins
    • Allows you to export to the root of the usb, the. Cfg file to test it before storing.

    List of flags:

    • Matheros (direct or normal)
    • dumper-ram
    • debug
    • dev_flash (dumper / restore)
    • sc35/36 +8 (more compatible)
    • 100% Fan speed (fan at 100%)

    Source: Ps3news

    Update: I had to TRANSLATE again, because it’s easy to use google translate, and a pain in the EYE to do a proper translation. Please NEXT TIME guys from ps3 news, use someone who knows spanish. Still we cannot trust in Machines. (Sic).

    Discuss in Forums (50)


  • 50 Comments

    1. bleh
      07-22-2012
      02:46 AM
      1

      um.. don't you mean DEX without Linux? lol

    2. hellsing9
      07-22-2012
      02:56 AM
      2

      Originally Posted by bleh View Post
      um.. don't you mean DEX without Linux? lol
      that is why we are working to bring you the easiest method to move to Linux without requiring DEX.
      They are pretty clear in their statement

    3. FOLEYFACTOR
      07-22-2012
      02:56 AM
      3

      Originally Posted by bleh View Post
      um.. don't you mean DEX without Linux? lol
      Just what I was thinking too...

    4. hellsing9
      07-22-2012
      03:00 AM
      4

      Damn this guys using google translator!

    5. Freesty
      07-22-2012
      03:06 AM
      5

      I make dumps with this on CFW355-OTHEROS++-SPECIAL in few seconds

    6. elcido6
      07-22-2012
      03:10 AM
      6

      From checko: WIP: A method to dump metldr and eEID root keys without linux, more easy with some little steps .. maybe naehrwert can help you.
      It seems if you read on a little that the some of the intent in the first paragraph got lost somewhere in google transtlation.


      Originally Posted by hellsing9 View Post
      The only NEGATIVE that i find in all of this, it’s that you have to use the JBM (From DH) to achieve this kind of things.

      Apparently they're claiming it works on any CFW, I haven't tested it.

      To quote, roughly translated: eEID0 Dumper by BlackDeath to JBM 3.55, MA 3.56 and CFW 3.55
      works both on any CFW 3.55 (PEEK | POKE LV2)

    7. hellsing9
      07-22-2012
      03:18 AM
      7

      I think i will have to do the translation...

    8. saeeid_skhm
      07-22-2012
      03:38 AM
      8

      is that mean C2D without format hdd?

    9. hellsing9
      07-22-2012
      03:40 AM
      9

      Hello pals, after the filtered method of CEX2DEX the team decided to investigate in this new field for certain users and not so much for other. That's why we are working to make an *easier* method in order to switch to DEX without needing linux.
      Today i present you the EID0 dumper created by BlackDeath, this app will let us dump all the EID0 or the first section of CEX, ONLY using or running a PKG and having connected a pendrive in dev_usb000. The instructions are on screen and easy to follow:

      START: Used to dump all the EID0.
      SQUARE: Just to dump the first section of the EID0 (eid0_1st_Section_CEX.bin).
      X (EX): To dump the ciphered METLDR to the USB and ready to go (plug and play) for the exploit and get the dump from deciphered METLDR (mentioned in early staged of this guide)


      If you are in CFW 3.55 (normal) you have to launch the pkg from video.

      Needless to say i leave you the download link that works in ANY CFW 3.55 (PEEK | POKE LV2) As well in MA.

      Blackdeath says:
      This last version now allow us to dump the METLDR (ciphered) from our consoles if you use the X (EX) button and you will obtain the already ciphered METLDR, ready to make a deciphered dump along with they *keys* using the exploit (later).

      We will keep on working on this *area*. Ergo the next step is dump the METLDR without doing so many things in linux, quite the contrary our objective is to achieve a quick, easy to use method to dump it.


      eEID0 is needed for make the process of dumping the metldr (as you all know, and only the first section of the eEID0). The result was this tool, which is needed to do the proper conversion from DEX to TEST.

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

      Updated on Frontpage.

    10. davidpstone
      07-22-2012
      03:42 AM
      10

      I've just tested, don't work at 3.55 KMEAW, so sad

      update: app work, i've installed from wrong USB port!

    11. hellsing9
      07-22-2012
      03:54 AM
      11

      [MENTION=149982]elcido6[/MENTION] checking again the source, my god...they really know how to screw things up with google translate.

    12. opium2k
      07-22-2012
      04:07 AM
      12

      It might be worth noting that "ConfEditor PS3 for TheGrid" is multilingual. Select changes the language between Spanish and English.

      I haven't tried it myself but I took a look at the files and if some one repackages them they could probably make English the default since most of them are suffixed with _en / _es including the background image.

    13. hellsing9
      07-22-2012
      04:16 AM
      13

      I don't have any *PS3* to try on, if anyone give this a shot. Report if it worked or not.
      [MENTION=203910]davidpstone[/MENTION] already said that in kmeaw = don't work.

    14. davidpstone
      07-22-2012
      04:26 AM
      14

      Originally Posted by hellsing9 View Post
      I don't have any *PS3* to try on, if anyone give this a shot. Report if it worked or not.
      [MENTION=203910]davidpstone[/MENTION] already said that in kmeaw = don't work.
      nope you are wrong, i've just dumped metldr (59 KB) and eEID0 (3 KB) make sure you installed app from dev_usb000

      I dont know that created dumps are correct

    15. Night Hawk
      07-22-2012
      04:31 AM
      15

      I hope to see a nice tutorial like [MENTION=99538]CaptainCPS-X[/MENTION] that includes this method istead of petitboot.That way we won't have to format our HDD just to get linux running.

    16. mrc1978
      07-22-2012
      04:34 AM
      16

      Originally Posted by davidpstone View Post
      nope you are wrong, i've just dumped metldr (59 KB) and eEID0 (3 KB) make sure you installed app from dev_usb000

      I dont know that created dumps are correct
      I've just tested, don't work at 3.55 KMEAW, so sad

      SO IT DOES/DOESNT DO ANYTHING?

      EDIT. sorry caps

    17. davidpstone
      07-22-2012
      04:37 AM
      17

      Originally Posted by mrc1978 View Post
      I've just tested, don't work at 3.55 KMEAW, so sad

      SO IT DOES/DOESNT DO ANYTHING?

      EDIT. sorry caps
      First time i've installed app from wrong USB port thats wy app didnt work
      ************* [ - Post Merged - ] *************
      Originally Posted by Night Hawk View Post
      I hope to see a nice tutorial like [MENTION=99538]CaptainCPS-X[/MENTION] that includes this method istead of petitboot.That way we won't have to format our HDD just to get linux running.
      have you meant this tut:
      http://www.ps3hax.net/showthread.php...840#post395840
      This tut will work just on NAND models?

    18. hellsing9
      07-22-2012
      04:53 AM
      18

      Originally Posted by davidpstone View Post
      nope you are wrong, i've just dumped metldr (59 KB) and eEID0 (3 KB) make sure you installed app from dev_usb000

      I dont know that created dumps are correct
      Im wrong? you are the one who said that didn't work. Then you edited again and boom! works!.
      Im not wrong, i just quoted what you posted.

    19. davidpstone
      07-22-2012
      05:01 AM
      19

      Originally Posted by hellsing9 View Post
      Im wrong? you are the one who said that didn't work. Then you edited again and boom! works!.
      Im not wrong, i just quoted what you posted.
      sorry bro, my fault

    20. ni96286
      07-22-2012
      05:09 AM
      20

      It worked for me, on CHECHH PS3, 3.55 KMEAW, but sometimes it crashed.

      After installing the pkg, you should run it from VIDEO, not from GAME. And for me it only worked as when the usb pen (formatted FAT32) was completely empty.

    21. davidpstone
      07-22-2012
      05:22 AM
      21

      i've heard that the eid0 dump you get from linux is 256kb, mine (dumped from app) is 3 KB, wtf?

    22. haz367
      07-22-2012
      05:27 AM
      22

      worked here on 355oos-sspatches from gitbrew, fast and easy, the usb stick was filled with stuff.no problem saving it

      im about to fix one, can't leave it trying the RND iso again, after reburning it boots fine only no video-input once it's loaded, it must be an easy fix and why would he post it if it fails, that one already has it build-in..can't help re-testing it
      ************* [ - Post Merged - ] *************

      Originally Posted by davidpstone View Post
      i've heard that the eid0 dump you get from linux is 256kb, mine (dumped from app) is 3 KB, wtf?
      those are diff keys..this app dumps the part one coverts into dex...and put back in place, calculated using the "eid0_root_keys from the256kb dump u have

    23. hellsing9
      07-22-2012
      05:49 AM
      23

      [MENTION=138171]haz367[/MENTION] better explained, impossible.

    24. greyestest
      07-22-2012
      06:37 AM
      24

      A modified (or new) no-linux cex-->dex walkthrough would be nice.

    25. jennys
      07-22-2012
      06:47 AM
      25

      Originally Posted by greyestest View Post
      A modified (or new) no-linux cex-->dex walkthrough would be nice.
      So start writing!

    26. greyestest
      07-22-2012
      07:02 AM
      26

      Originally Posted by jennys View Post
      So start writing!
      Well, if I write it and someone desides to use it, he/she will get brick for sure )

    27. checko
      07-22-2012
      07:13 AM
      27

      There is the original Post ps3hax

    28. lintz
      07-22-2012
      07:24 AM
      28

      Now with this how far is it from being a one step thing, Install x.pkg after that fw update?
      Do we still need the pc to patch the files needed to flash?
      Is Linux still needed to flash the files back to the ps3?

    29. a$h x
      07-22-2012
      07:55 AM
      29

      We are getting to the stage where linux will be unnecessary to dump the metldr, I'm just waiting fro the time when the DEX version of multiman will pick up games from the internal HDD and it's on like aristion baby!

    30. doc81
      07-22-2012
      08:13 AM
      30

      N00B-time: Hi DEXter, what does this button do?? hahahaha sorry i could not resist asking that.

      Seriously, what does this tool do above other tools? Do you install it over cfw 3.55 to play 3.60+ games, What what whaaaaaaaaaaaatttt!!?????
      Do you have to have a non jailbroken 4.11 ofw ps3?? or a slim ps3 or do you have to update to 4.21??

      i read the pages but no good info, i am lost in HEX numbers and algorithems, so please explain it in N00B language!!! don't flame me for asking this, because alot of people are wandering this so, i do not ask for my self.

      Please make a N00Breadme.txt on tools like this.

      Furthermore Good job in getting SEX to DEXters labratory heheheheheh (CEX=> DEX thing hahaha)

      Peace out man.


      PS: new cfw should be called "ps3 dexters-lab.pup"

    31. ALDONUM1
      07-22-2012
      08:18 AM
      31

      Riiiigggghhhht.

    32. lintz
      07-22-2012
      08:56 AM
      32

      Originally Posted by doc81 View Post
      N00B-time: Hi DEXter, what does this button do?? hahahaha sorry i could not resist asking that.

      Seriously, what does this tool do above other tools? Do you install it over cfw 3.55 to play 3.60+ games, What what whaaaaaaaaaaaatttt!!?????
      Do you have to have a non jailbroken 4.11 ofw ps3?? or a slim ps3 or do you have to update to 4.21??

      i read the pages but no good info, i am lost in HEX numbers and algorithems, so please explain it in N00B language!!! don't flame me for asking this, because alot of people are wandering this so, i do not ask for my self.

      Please make a N00Breadme.txt on tools like this.

      Furthermore Good job in getting SEX to DEXters labratory heheheheheh (CEX=> DEX thing hahaha)

      Peace out man.


      PS: new cfw should be called "ps3 dexters-lab.pup"
      Okey I'll try to answer it for you. This tool dumps 'some' of the needed files for the cex -> dex converting that before Linux was needed on the PS3 to do. It's not all the files that's needed but it removes the need of Installing Linux to the PS3.

      Not sure if you know what the whole CEX->DEX thing is about so I'll try to explain that to.
      CEX= Normal retail console bought in any store close to you.
      DEX= Developers console that are sold to game developers, they aren't locked to signed codes and can there by run any code/programs you throw at them.

      There is a way to play 3.60+ games on the DEX consoles but it's still in a early stage and it involves using the standard BD-Disk emulation that exists in the DEX console and it have limitation to how many games you can store in it if I don't remember wrong its a max of 4(each game have to be store on a external mass media in a partition each).

      In other word Multiman or what every backupmanager you use normaly don't work on a DEX console with fw higher then 3.55, the reason for that is the need of Peak & Poke with don't exist for fw's higher then 3.55 atm.

      PS the whole converting process is still long so at least I will wait till it's more simple and a better way then the BD-disk emulator works for games.

    33. DEFAULTDNB
      07-22-2012
      09:37 AM
      33

      Does syscall 36 still exist in higher firmwares? if so: why not utilize this instead of peek poke?

      [spoiler]
      I’ve often been asked what Custom Firmware (CFW) should a person install and why. In this article, I’ll do a comparison between the five widespread custom firmware. By the end of this, you should know, which custom firmware is best.

      Geohot Custom Firmware – Geohot’s CFW has the ability to load signed homebrew. Since lv2 is not patched, no backup managers work because of this. If you want games to play, you will have to convert them into a PKG using tools.


      Unpatched lv2 (No Backup Managers, game must be converted to a PKG)
      Loads Signed Homebrew


      wutangrza Custom Firmware - wutangrza’s CFW based on flukes1′s instructions to add peek and poke to lv2. Just like geohot’s, it loads signed homebrew and has the extra progress of peek and poke in lv2. It’s still not able to make use of Backup Managers in a stock setup, however, later, the kmeaw patch can be applied to do that.

      Only Signed Homebrew
      No Backup Managers on Stock CFW (However possible using kmeaw’s patch)
      Added Peek and Poke to lv2


      Waninkoko Custom Firmware – Waninkoko’s CFW patched lv2, however, it did this without even checking lv1 first. This method was highly unstable and led to a lot of random bricks. The CFW did bring Peek and Poke to lv2 as well as SysCall 36 which allowed Backup Managers to work.

      Launch Signed Homebrew
      Working Backup Managers
      Peek, Poke and SysCall 36
      Highly Unstable (Causes Random Bricks)


      kmeaw CFW – Just about a day after wutangrza, kmeaw came up with his CFW. kmeaw’s CFW implemented PL3. kmeaw also released a patch for wutangrza’s CFW which brought PL3 to it.

      Launch Signed Homebrew
      Working Backup Managers
      Peek, Poke and SysCall 36
      Seems stable.


      Rebug CFW – Rebug Custom Firmware is the latest custom firmware out there. It aims to add debug console features to regular retail consoles. While not all debug features work, it has bought some.

      Launch Signed Homebrew
      Working Managers
      Peek, Poke and SysCall 36
      Some Debug features
      Pre-installed BDEmu
      Supports TB Dongle through a PKG Patch


      There you have it. A simple comparison between the five different Custom Firmwares. My advice; use either kmeaw CFW or Rebug CFW. Make sure to avoid Waninkoko’s as there’s a high chance it’ll randomly brick you. Also, if you plan on switching CFW's, I suggest you uninstall the current CFW by installing the Original Firmware version you need for the new CFW.
      [/spoiler]

      Old info, I know, but is it still relevant?

    34. greyestest
      07-22-2012
      10:05 AM
      34

      Originally Posted by lintz View Post
      Okey I'll try to answer it for you. This tool dumps 'some' of the needed files for the cex -> dex converting that before Linux was needed on the PS3 to do. It's not all the files that's needed but it removes the need of Installing Linux to the PS3.
      Does it? AFAIK Linux is still needed to run metldrpwn to decypher metldr.

    35. doc81
      07-22-2012
      10:18 AM
      35

      [MENTION=234571]lintz[/MENTION] 2 words:
      Thank You!!!

      Thats all :-).

    36. mirkie
      07-22-2012
      10:19 AM
      36

      Originally Posted by DEFAULTDNB View Post
      Does syscall 36 still exist in higher firmwares? if so: why not utilize this instead of peek poke?

      [spoiler]
      I’ve often been asked what Custom Firmware (CFW) should a person install and why. In this article, I’ll do a comparison between the five widespread custom firmware. By the end of this, you should know, which custom firmware is best.

      Geohot Custom Firmware – Geohot’s CFW has the ability to load signed homebrew. Since lv2 is not patched, no backup managers work because of this. If you want games to play, you will have to convert them into a PKG using tools.


      Unpatched lv2 (No Backup Managers, game must be converted to a PKG)
      Loads Signed Homebrew


      wutangrza Custom Firmware - wutangrza’s CFW based on flukes1′s instructions to add peek and poke to lv2. Just like geohot’s, it loads signed homebrew and has the extra progress of peek and poke in lv2. It’s still not able to make use of Backup Managers in a stock setup, however, later, the kmeaw patch can be applied to do that.

      Only Signed Homebrew
      No Backup Managers on Stock CFW (However possible using kmeaw’s patch)
      Added Peek and Poke to lv2


      Waninkoko Custom Firmware – Waninkoko’s CFW patched lv2, however, it did this without even checking lv1 first. This method was highly unstable and led to a lot of random bricks. The CFW did bring Peek and Poke to lv2 as well as SysCall 36 which allowed Backup Managers to work.

      Launch Signed Homebrew
      Working Backup Managers
      Peek, Poke and SysCall 36
      Highly Unstable (Causes Random Bricks)


      kmeaw CFW – Just about a day after wutangrza, kmeaw came up with his CFW. kmeaw’s CFW implemented PL3. kmeaw also released a patch for wutangrza’s CFW which brought PL3 to it.

      Launch Signed Homebrew
      Working Backup Managers
      Peek, Poke and SysCall 36
      Seems stable.


      Rebug CFW – Rebug Custom Firmware is the latest custom firmware out there. It aims to add debug console features to regular retail consoles. While not all debug features work, it has bought some.

      Launch Signed Homebrew
      Working Managers
      Peek, Poke and SysCall 36
      Some Debug features
      Pre-installed BDEmu
      Supports TB Dongle through a PKG Patch


      There you have it. A simple comparison between the five different Custom Firmwares. My advice; use either kmeaw CFW or Rebug CFW. Make sure to avoid Waninkoko’s as there’s a high chance it’ll randomly brick you. Also, if you plan on switching CFW's, I suggest you uninstall the current CFW by installing the Original Firmware version you need for the new CFW.
      [/spoiler]

      Old info, I know, but is it still relevant?
      For syscalls you need peek and poke.

    37. DEFAULTDNB
      07-22-2012
      10:33 AM
      37

      Originally Posted by mirkie View Post
      For syscalls you need peek and poke.
      I could not for the life of me remember if it was "as well as" or "instead of" peek/poke cheers [MENTION=219432]mirkie[/MENTION]

    38. mirkie
      07-22-2012
      10:40 AM
      38

      Originally Posted by DEFAULTDNB View Post
      I could not for the life of me remember if it was "as well as" or "instead of" peek/poke cheers [MENTION=219432]mirkie[/MENTION]
      Haha i am sorry. My english is not perfect.

    39. deank
      07-22-2012
      10:51 AM
      39

      Originally Posted by lintz View Post
      Okey I'll try to answer it for you. This tool dumps 'some' of the needed files for the cex -> dex converting that before Linux was needed on the PS3 to do. It's not all the files that's needed but it removes the need of Installing Linux to the PS3.

      Not sure if you know what the whole CEX->DEX thing is about so I'll try to explain that to.

      In other word Multiman or what every backupmanager you use normaly don't work on a DEX console with fw higher then 3.55, the reason for that is the need of Peak & Poke with don't exist for fw's higher then 3.55 atm.
      It seems you're the one that is unaware of the stuff you talk about. And - NO - you are wrong, this tool does nothing and can't give you the keys/decrypted/re-encrypted EID section. It is just children-at-play-proof-of-nothing-tool-to-make-headlines-and-grab-attention.

      Originally Posted by DEFAULTDNB View Post
      Does syscall 36 still exist in higher firmwares? if so: why not utilize this instead of peek poke?
      Yes, syscall36 is just a SYSTEM CALL FUNCTION and is available in each firmware. It is a blank/empty one, so if you rewrite it with something useful you'll get what you coded.

      Originally Posted by greyestest View Post
      Does it? AFAIK Linux is still needed to run metldrpwn to decypher metldr.
      Correct!

      Originally Posted by mirkie View Post
      For syscalls you need peek and poke.
      Peek/Poke are (replaced) syscalls. You don't need peek&poke to call "system-calls". Educate yourself before stating something as a fact.

    40. DEFAULTDNB
      07-22-2012
      10:55 AM
      40

      Cheers [MENTION=114607]deank[/MENTION]

    41. rrr159
      07-22-2012
      01:35 PM
      41

      Quick questions
      can chechL be converted to dex

      anddoes this work or is it a wIp

    42. Night Hawk
      07-22-2012
      01:42 PM
      42

      [MENTION=114607]deank[/MENTION].So i assume that this tool doesn't have any use at all?I'm asking cause i'm itching to convert my console but i'm too lazy to backup all my data,Just to run linux once.Do you think/work on ony way/tutorial for us, to make a COMPLETE dump without formating the ps3???

      [SPOILER]Love your work,keep it up[/SPOILER]

      P.S. I remember i could run linux on KMEAW with lv2 patcher & asbestos or bootos(something like that).Can we obtain the dump through this way?

    43. DEFAULTDNB
      07-22-2012
      02:21 PM
      43

      Originally Posted by Night Hawk View Post
      [MENTION=114607]deank[/MENTION].So i assume that this tool doesn't have any use at all?I'm asking cause i'm itching to convert my console but i'm too lazy to backup all my data,Just to run linux once.Do you think/work on ony way/tutorial for us, to make a COMPLETE dump without formating the ps3???

      [SPOILER]Love your work,keep it up[/SPOILER]

      P.S. I remember i could run linux on KMEAW with lv2 patcher & asbestos or bootos(something like that).Can we obtain the dump through this way?
      Check out @Naehrwerts new gift: http://www.ps3hax.net/showthread.php?p=396685

    44. zaphod
      07-22-2012
      03:58 PM
      44

      i tested this tool (blackdeath dumper) on my PS3 (FAT with NAND / CFW 3.55 with peek/poke build with MFW Builder 0.21 ) now, installed ok but no file created on my stick i tried all options nothing worked...
      i know that my stick is ok cause it worked with preloader advance 3.1

      i think i use the way with c2d..

    45. MakinaCore
      07-22-2012
      04:22 PM
      45

      c2d keeps opening then cuts off after 2 secs any help with this ???

    46. checko
      07-22-2012
      06:07 PM
      46

      Originally Posted by zaphod View Post
      i tested this tool (blackdeath dumper) on my PS3 (FAT with NAND / CFW 3.55 with peek/poke build with MFW Builder 0.21 ) now, installed ok but no file created on my stick i tried all options nothing worked...
      i know that my stick is ok cause it worked with preloader advance 3.1

      i think i use the way with c2d..
      your stick must be on dev_usb000 remember...

    47. zaphod
      07-22-2012
      11:00 PM
      47

      Originally Posted by checko View Post
      your stick must be on dev_usb000 remember...
      sure it is.. checked with multiman, always put the stick in the right port near the bd-drive..

      but thats not the problem anymore.. have the metldr dumped with cex2dex.. checked it with ps3devwiki

      at the moment cant get that dump-proggy to run fine.. timing or something.. dont get it.. sleepmode on...

    48. cuberider
      07-23-2012
      10:52 PM
      48

      can i install this on my slim CFW 3.55 kmeaw without Nand.

      Regards

    49. jjkkyu
      07-24-2012
      10:29 PM
      49

      then, what shall I do after I dump the eEID0.bin, eid0_1st_Section_CEX.bin, metldr files?
      I know the use of metldr, how to use the other 2 files?

    50. hellsing9
      07-24-2012
      11:16 PM
      50

      [MENTION=97984]cuberider[/MENTION] i think, nope.

    51. Atrion
      07-25-2012
      01:56 AM
      51

      perhaps its because I have an old SD tv (One of those back breakers) but when this loads I cannot see the instructions on the screen just the title and changing background colours.