Go Back  
Reply
 
Thread Tools
Old 07-21-2012   #11
Nicolas19
Member
 
Nicolas19's Avatar
 
Join Date: Jan 2012
Location: IRAN-Tehran
Posts: 812
Likes: 344
Liked 583 Times in 218 Posts
Mentioned: 163 Post(s)
Tagged: 0 Thread(s)
Send a message via Yahoo to Nicolas19
Originally Posted by checko View Post
Yeah that is the size
************* [ - Post Merged - ] *************
Yeah you need a CFW with peek and poke like Kmeaw and a USB connected on dev_usb000.
Now how i can use this File??this help me For Dumping METLDR?IF yes How?
dev_usb000 is Right USB ?!
Nicolas19 is online now   Reply With Quote
Old 07-21-2012   #12
greyestest
Member
 
Join Date: Nov 2011
Posts: 106
Likes: 3
Liked 19 Times in 15 Posts
Mentioned: 6 Post(s)
Tagged: 0 Thread(s)
c2d without linux would be really great
greyestest is offline   Reply With Quote
Old 07-21-2012   #13
CaptainCPS-X
Homebrew Developer
 
CaptainCPS-X's Avatar
 
Join Date: Sep 2010
Location: Puerto Rico, U.S.
Posts: 906
Likes: 1,066
Liked 2,021 Times in 512 Posts
Mentioned: 347 Post(s)
Tagged: 0 Thread(s)
I will switch back to CEX and try this up, then I will compare the results with my previous conversion files.

If we can skip Linux, I could edit my guide and make is a LOT simpler.

SeeYa!
__________________
gamePKG / FB Alpha RL - [ https://github.com/CaptainCPS ]
FB ALPHA DEV TEAM - [ http://neosource.1emu.net ] [ http://www.barryharris.me.uk/ ]
PS3 - [CECH-2501A][NOR][160GB HDD][REBUG CFW 4.41.2 LITE]
CaptainCPS-X is offline   Reply With Quote
Likes: (6)
Old 07-21-2012   #14
himshie
Member
 
Join Date: Jul 2011
Location: Scotland
Posts: 169
Likes: 324
Liked 41 Times in 26 Posts
Mentioned: 4 Post(s)
Tagged: 0 Thread(s)
could you do the guide for a nor / slim
thanks
himshie is offline   Reply With Quote
Old 07-21-2012   #15
checko
Apprentice
 
Join Date: Jul 2012
Posts: 12
Likes: 3
Liked 9 Times in 4 Posts
Mentioned: 1 Post(s)
Tagged: 0 Thread(s)
Originally Posted by Nicolas19 View Post
Now how i can use this File??this help me For Dumping METLDR?IF yes How?
dev_usb000 is Right USB ?!
First eEID0 is needed on dumping METLDR (Right now) with any tutorial on this website (WIP Our solution to dump metldr without linux and with more easy and little steps is on progress).

The First eEID0 Section is needed using the step by step tutorial to convert to DEX without a complete NOR | NAND dump.

DEX Tutorial or the leak tutorial info, both are using OPENSSL to the Encryption Stuff.

Right now the problem is that dump Metldr and get the eeid root keys is a little hard process and only with linux but we are working on that...
************* [ - Post Merged - ] *************
Originally Posted by CaptainCPS-X View Post
I will switch back to CEX and try this up, then I will compare the results with my previous conversion files.

If we can skip Linux, I could edit my guide and make is a LOT simpler.

SeeYa!
Yeah there is progress my friend, dump metldr and the keys will be more easy, right now is WIP...

I hope that we release this soon (days, etc)...
checko is offline   Reply With Quote
Old 07-21-2012   #16
majid25
Member
 
Join Date: Feb 2011
Posts: 427
Likes: 97
Liked 47 Times in 38 Posts
Mentioned: 6 Post(s)
Tagged: 0 Thread(s)
Originally Posted by checko View Post
First eEID0 is needed on dumping METLDR (Right now) with any tutorial on this website (WIP Our solution to dump metldr without linux and with more easy and little steps is on progress).

The First eEID0 Section is needed using the step by step tutorial to convert to DEX without a complete NOR | NAND dump.

DEX Tutorial or the leak tutorial info, both are using OPENSSL to the Encryption Stuff.

Right now the problem is that dump Metldr and get the eeid root keys is a little hard process and only with linux but we are working on that...
************* [ - Post Merged - ] *************


Yeah there is progress my friend, dump metldr and the keys will be more easy, right now is WIP...

I hope that we release this soon (days, etc)...
Please, take your time with all of this there is no rush. You guys are doing a big favor to the scene here, keep up the good work
majid25 is offline   Reply With Quote
Likes: (2)
Old 07-21-2012   #17
himshie
Member
 
Join Date: Jul 2011
Location: Scotland
Posts: 169
Likes: 324
Liked 41 Times in 26 Posts
Mentioned: 4 Post(s)
Tagged: 0 Thread(s)
i think i will wait this out so i don't have to format my drive
himshie is offline   Reply With Quote
Old 07-21-2012   #18
Medox
Apprentice
 
Medox's Avatar
 
Join Date: Aug 2011
Posts: 17
Likes: 31
Liked 7 Times in 6 Posts
Mentioned: 3 Post(s)
Tagged: 0 Thread(s)
Originally Posted by checko View Post
WIP: A method to dump metldr and eEID root keys without linux, more easy with some little steps ...
maybe naehrwert can help you:

Originally Posted by naehrwert
isn't installing linux to get your eid root key a bit of an overkill when you could just use netrpc?!
Originally Posted by naehrwert
Or you could compile this http://pastie.org/4295312 , sign it with metldr keys and grab the key/iv from shared LS...
Code:
ldr.ld

ENTRY(_start)

SECTIONS
{
	. = 0x25800;
	.text :
	{
		*(.text)
	}
	.data :
	{
		*(.data)
		*(.rodata)
	}
	.bss :
	{
		bss = .;
		*(.bss)
	}
}
Code:
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
Code:
start.S

.text

/* Loader entry. */
.global _start
_start:
	/* Setup stack pointer. */
	ila sp, 0x3DFA0
	
	/* Well... */
	brsl lr, main

	_hang:
		br _hang
Code:
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;
}
https://twitter.com/naehrwert/status/226682478373531648
https://twitter.com/naehrwert/status/226686257005203456
Medox is offline   Reply With Quote
Old 07-21-2012   #19
checko
Apprentice
 
Join Date: Jul 2012
Posts: 12
Likes: 3
Liked 9 Times in 4 Posts
Mentioned: 1 Post(s)
Tagged: 0 Thread(s)
Originally Posted by Medox View Post
maybe naehrwert can help you:





Code:
ldr.ld

ENTRY(_start)

SECTIONS
{
	. = 0x25800;
	.text :
	{
		*(.text)
	}
	.data :
	{
		*(.data)
		*(.rodata)
	}
	.bss :
	{
		bss = .;
		*(.bss)
	}
}
Code:
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
Code:
start.S

.text

/* Loader entry. */
.global _start
_start:
	/* Setup stack pointer. */
	ila sp, 0x3DFA0
	
	/* Well... */
	brsl lr, main

	_hang:
		br _hang
Code:
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;
}
https://twitter.com/naehrwert/status/226682478373531648
https://twitter.com/naehrwert/status/226686257005203456
thanks but we have it right now ready, long before naehrwert said this.

Last edited by checko; 07-21-2012 at 06:49 PM.
checko is offline   Reply With Quote
Old 07-21-2012   #20
itskamel
Senior Member
 
itskamel's Avatar
 
Join Date: May 2011
Location: somewhere close
Posts: 3,981
Likes: 1,181
Liked 2,210 Times in 926 Posts
Mentioned: 329 Post(s)
Tagged: 0 Thread(s)
Send a message via Yahoo to itskamel
another demonhades production huh? well seeing as to all the past stuff that has gone on i will belive it when i see it. not trying to down anyone but this is just the way it is.
itskamel is online now   Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



PS3Hax.net is Copyright © 2010-2013.
Use of this site is governed by our Terms of Use and Privacy Policy. All Trademarks and images are owned by their respected owners.
Posts and links are subject to each author on this forum and are no way affiliated with the operations and/or opinions of ps3hax.net
All times are GMT -5. The time now is 02:38 PM.