Go Back  
Reply
 
Thread Tools
Old 08-05-2012   #71
naddel81
Member
 
Join Date: Jan 2011
Posts: 213
Likes: 0
Liked 15 Times in 12 Posts
Mentioned: 21 Post(s)
Tagged: 0 Thread(s)
_D_S_:

unbelievable! someone should make a tool out of this! how did you come up with that *.bat? and why exactly is PS3 Tool GUI not able to do this?
naddel81 is online now   Reply With Quote
Old 08-05-2012   #72
_D_S_
Member
null
 
Join Date: Aug 2012
Posts: 44
Likes: 8
Liked 23 Times in 11 Posts
Mentioned: 8 Post(s)
Tagged: 0 Thread(s)
I didn't come up with the .bat, it was @Asure who came up with this and @longhornx modified this .bat and packed it to the package I was using. I only changed that it doesn't skips the Sections.

"PS3 Tool GUI" was not able to do it correctly, because it only uses "Scetool" and this doesn't patch "sys_param". So you need to take Ebootfix. But Ebootfix didn't encrypt the Eboot with npdrm, this is the job of scetool. This is why those both Programms need to work together.
This is how I have understand it from this Thread (where the Files are from):
http://www.ps3hax.net/showthread.php?t=40793&page=14
_D_S_ is offline   Reply With Quote
Old 08-05-2012   #73
pSydeFX
Member
 
Join Date: Oct 2011
Posts: 167
Likes: 25
Liked 41 Times in 29 Posts
Mentioned: 6 Post(s)
Tagged: 0 Thread(s)
Originally Posted by _D_S_ View Post
I didn't come up with the .bat, it was @Asure who came up with this and @longhornx modified this .bat and packed it to the package I was using. I only changed that it doesn't skips the Sections.

"PS3 Tool GUI" was not able to do it correctly, because it only uses "Scetool" and this doesn't patch "sys_param". So you need to take Ebootfix. But Ebootfix didn't encrypt the Eboot with npdrm, this is the job of scetool. This is why those both Programms need to work together.
This is how I have understand it from this Thread (where the Files are from):
http://www.ps3hax.net/showthread.php?t=40793&page=14
can you make a quick tutorial please. im tired of getting 8001003c error
pSydeFX is offline   Reply With Quote
Old 08-05-2012   #74
longhornx
Member
 
Join Date: Oct 2008
Posts: 182
Likes: 16
Liked 15 Times in 10 Posts
Mentioned: 15 Post(s)
Tagged: 0 Thread(s)
Originally Posted by _D_S_ View Post
FINALLY!!!!!!
I got the patch 1.13 BCES00569 working .
Many thanks go to @Asure and @longhornx . Through their Work I could finally sign the Eboot and start the Game without Problems.
Download this the Files from there:
http://www.ps3hax.net/showpost.php?p...&postcount=142
I changed the the .bat File to this: ----

I don't know if you have to change it to: "--skip-sections=FALSE" But with this .bat i got the Eboot signed!.

And for all the Guys who are only waiting for the PATCH FIX 1.13, here it is:
http://www12.zippyshare.com/v/2167774/file.html


Install all Updates from 1.05-1.13 and then the Fix, this should work for all BCES00569!
with the skip sections enable, your eboot doesn't work?

(i have the ideia that sections which requeries a key revision that ins't listed in your key list is skipped to avoid bad data)
longhornx is offline   Reply With Quote
Old 08-05-2012   #75
_D_S_
Member
null
 
Join Date: Aug 2012
Posts: 44
Likes: 8
Liked 23 Times in 11 Posts
Mentioned: 8 Post(s)
Tagged: 0 Thread(s)
Okay, since I was asked to make a Tutorial on how to use the Tools I posted earlier, here it is

1.Download the Pack from longhornx Post: http://www.ps3hax.net/showpost.php?p...&postcount=142

1a.Maybe you want to change the .bat to this:
Click here to see full text

@Echo off
cd /d %~dp0\TOOLS>nul
if exist ..\workdir rd /s /q ..\workdir >nul
if exist ..\output rd /s /q ..\output >nul
md ..\workdir
REM grabbing the content ID
FOR /F "tokens=1,2 delims= " %%A IN ('scetool.exe -i ..\EBOOT.BIN') DO (
if [%%A]==[ContentID] set CID=%%B
)
echo ContentID for NPDRM-Self is: %CID%
echo.
echo Decoding EBOOT.BIN...
scetool.exe --decrypt ..\EBOOT.BIN ..\workdir\DECRYPTED.ELF >nul
copy ..\EBOOT.BIN ..\workdir\SOURCE_EBOOT.BIN >nul
echo.
rem rename EBOOT.BIN SOURCE_EBOOT.BIN >nul
echo.
echo Doing ebootfix...
rem .
rem Usage: ebootMOD.exe SELF MODDED_SELF [DECRYPTED_ELF]
rem Example: ebootmod.exe x:\EBOOT.BIN x:\EBOOT_MOD.BIN
rem Example: ebootmod.exe x:\EBOOT.BIN x:\EBOOT_MOD.BIN x:\EBOOT_TEST.ELF
rem .
ebootmod ..\workdir\SOURCE_EBOOT.BIN ..\workdir\MODDED_EBOOT.BIN ..\workdir\DECRYPTED.ELF
rem .
rem Ebootmod makes a new eboot, but it's not nprdrm, so we decrypt that again, then run it thru scetool..
rem .
rem We also create two versions, one is compressed, the other is not. (Sometimes the compressed one doesn't work.)
rem .
scetool.exe --decrypt ..\workdir\MODDED_EBOOT.BIN ..\workdir\FIXED.ELF
md ..\output
scetool.exe --sce-type=SELF --compress-data=FALSE --skip-sections=FALSE --key-revision=0001 --self-auth-id=1010000001000003 --self-vendor-id=01000002 --self-type=NPDRM --self-fw-version=0003004100000000 --np-license-type=FREE --np-content-id=%CID% --np-app-type=EXEC --np-real-fname=EBOOT.BIN --encrypt ..\workdir\FIXED.ELF ..\output\EBOOT_NEW_NOCOMP.BIN
scetool.exe --sce-type=SELF --compress-data=TRUE --skip-sections=FALSE --key-revision=0001 --self-auth-id=1010000001000003 --self-vendor-id=01000002 --self-type=NPDRM --self-fw-version=0003004100000000 --np-license-type=FREE --np-content-id=%CID% --np-app-type=EXEC --np-real-fname=EBOOT.BIN --encrypt ..\workdir\FIXED.ELF ..\output\EBOOT_NEW_COMP.BIN
rem del /Q EBOOT.ELF > NUL
rem scetool -i EBOOT.BIN
echo.
echo ContentID for NPDRM-Self is: %CID%
echo Done!
pause

You can change the content of a ".bat" when you change ".bat" -> ".txt". But don't forget to change it back ".txt" -> ".bat" (Otherwise it won't start )

2.Now you copy your "Eboot" in the Directory where the "_run.bat" is.

3.Run the "_run.bat".

4.When this goes smoothly without mistakes, go to your "Output" Directory and take the "EBOOT_NEW_NOCOMP.BIN".

5.Rename this to "Eboot.bin".

6.Now copy this Eboot to "/hdd0/game/GameID/Usrdir"

Enjoy your Game

(But keep in mind this only works for updates! When you want to sign an Eboot from a Disc Game you have to change the "bat". According to what I have read here:http://www.ps3hax.net/showpost.php?p...&postcount=137)

Last edited by _D_S_; 08-05-2012 at 04:15 PM.
_D_S_ is offline   Reply With Quote
Likes: (3)
Old 08-05-2012   #76
muny21
Member
 
Join Date: Aug 2008
Posts: 75
Likes: 8
Liked 14 Times in 10 Posts
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
Originally Posted by pSydeFX View Post
can you make a quick tutorial please. im tired of getting 8001003c error
I was getting this error when I was just trying to FTP the sfo and modified EBOOT into the game dir after installing the update.

Was stuck on this for a while. Then I tried to make a pkg with the modified EBOOT and edited PARAM with the tools located on page two or three of this thread. After that it worked. Can not promise it will work for you as I am only a "NOOB". But thought I would share my experience anyway.

1. Copy your folder that you extracted from the update, in my case it was BLUS30782, with the new PARAM.SFO and EBOOT in USRDIR that you created.

2. Make conf file by creating new text doc and placing this inside:

ContentID = UP0700-BLUS30782_00-PATCH20111104MAS
Klicensee = 0x00000000000000000000000000000000
DRMType = Free
ContentType = GameData
PackageType = DiscGamePatch
PackageVersion = 01.00

But change ContentID with whatever contentID is store in your eboot. Can get that info by using the scetoolgui. It is around the halfway mark in that field. Then save as BLUS30782.conf

3. Then bring up the command window by holding shift and right click inside the folder that holds your tools. Type in the command window:

psn_package_npdrm.exe BLUS30782.conf BLUS30782

But change the gameid to your own.

4. Let it do its thing and create your pkg.

5. Copy over to ps3 and pray it works.

Hope this helps.

EDIT: Was writing this at same time.

Last edited by muny21; 08-05-2012 at 04:13 PM. Reason: ninja'd lol
muny21 is offline   Reply With Quote
Likes: (1)
Old 08-05-2012   #77
_D_S_
Member
null
 
Join Date: Aug 2012
Posts: 44
Likes: 8
Liked 23 Times in 11 Posts
Mentioned: 8 Post(s)
Tagged: 0 Thread(s)
@longhornx I haven't tried it with enabled skipping, because I have made the experience that the Eboot is missing some Header Lines. If you want, I can make a Comparison between one with skipping and one without and post the Results.

@muny21
As a additional information the minimal Files you need for making a Package are the "Param.sfo" and the "Icon0.png" in the "BLUS30782" Directory and of course the "Eboot.bin" in the "Usrdir" Directory.

Last edited by _D_S_; 08-05-2012 at 04:59 PM.
_D_S_ is offline   Reply With Quote
Old 08-05-2012   #78
muny21
Member
 
Join Date: Aug 2008
Posts: 75
Likes: 8
Liked 14 Times in 10 Posts
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
I never changed package version and never had problems. But I am completely new to all this crap.

Thanks for the added info

EDIT: @_D_S No problem well make mistakes

Last edited by muny21; 08-05-2012 at 04:57 PM.
muny21 is offline   Reply With Quote
Old 08-05-2012   #79
_D_S_
Member
null
 
Join Date: Aug 2012
Posts: 44
Likes: 8
Liked 23 Times in 11 Posts
Mentioned: 8 Post(s)
Tagged: 0 Thread(s)
@muny21
I have looked it up again and I was wrong with the Package Version. I have mistaken it with the App_Version in the Param.sfo. This is the one which has to be the same as the Update number.

Sorry for that .
_D_S_ is offline   Reply With Quote
Old 08-05-2012   #80
pSydeFX
Member
 
Join Date: Oct 2011
Posts: 167
Likes: 25
Liked 41 Times in 29 Posts
Mentioned: 6 Post(s)
Tagged: 0 Thread(s)
@ muny21 didnt work

@ _D_S_ testing now
pSydeFX is offline   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 09:54 AM.