Olygame


ModChipCentral

Page 3 of 55 FirstFirst 123451353 ... LastLast
Results 21 to 30 of 545
  1. #21
    Member
    Join Date
    Jul 2011
    Posts
    35
    Total Thanks Given
    25
    Total Thanks Received
    67
    Total Thanked Posts
    18
    Quote Originally Posted by andreus View Post
    For what you're sayin normaly you found them at the end of the elf, so the batch would be more efficient if it was in reverse, i.e, start looking form the end to the beggining, don't you think?

    i think you can get the last dec offset with:

    Also i think that elf files must have a structure of some kind and with that you can know the offset to start looking
    Nice one, i didn't know that it was (for most files i tested so far) near the end of the file.
    Now we just need to handle big files as well (e.g. Rage with it 33MB elf..)

  2.          
  3. The Following 3 Users Say Thank You to Asure For This Useful Post:

    gDrive (08-07-2012), Yuu (08-08-2012)

  4. #22
    JLM
    Guest
    Since no one mention it, the key to decrypt the sprx is in the eboot. His batch file cycles through all the bytes in the eboot, trying each set of bytes in turn as a key, which is then input into scetool to decrypt the sprx until one of the "keys" enables scetool to decrypt the sprx.

  5. The Following 5 Users Say Thank You to JLM For This Useful Post:

    andreus (08-07-2012), gDrive (08-07-2012), kgb (08-07-2012), pete_uk (08-08-2012), Yuu (08-08-2012)

  6. #23
    Member
    Join Date
    Jul 2011
    Posts
    35
    Total Thanks Given
    25
    Total Thanks Received
    67
    Total Thanked Posts
    18
    This one works in reverse and can handle big files like Rage:

    Code:
    @echo off
    for %%S in (eboot.elf) do SET /a LAST_OFFSET=%%~zS-16
    for %%S in (eboot.elf) do SET /a MAX_OFFSET=%%~zS-16
    :START
    set CUT=8
    if %LAST_OFFSET% gtr 1000000 (
    set /a CUT+=1
    )
    rem echo Cut val: %CUT%
    FOR /F "tokens=*" %%i in ('"od -j%LAST_OFFSET% -N16 -w16 -t x1 eboot.elf | cut -c %CUT%- |sed 's/ //g'"') do SET KEY=%%i
    if %KEY% == 00000000000000000000000000000000 (
    echo Skipped 10 bytes of blank/useless key at %LAST_OFFSET%
    set /a LAST_OFFSET-=10
    ) else (
    ECHO Trying Key: %KEY% from decimal offset: %LAST_OFFSET% / %MAX_OFFSET%
    scetool.exe -l %KEY% -d patch.self selfout.elf -l %KEY% >nul
    set /a LAST_OFFSET-=1
    )
    IF EXIST selfout.elf GOTO END
    goto START
    :end
    echo Done! Key used was: %KEY%

  7. The Following 9 Users Say Thank You to Asure For This Useful Post:

    aldostools (08-07-2012), andreus (08-07-2012), gDrive (08-07-2012), kgb (08-07-2012), lurkandlearn (08-08-2012), opoisso893 (08-07-2012), pete_uk (08-08-2012), Yuu (08-08-2012)

  8. #24
    Senior Member
    Join Date
    Jul 2011
    Posts
    425
    Total Thanks Given
    386
    Total Thanks Received
    627
    Total Thanked Posts
    294
    Cool!

    @Asure if you don't want to hardcode the self/sprx name in the batch and enable drag and drop
    That way you only need to have the eboot.elf and the sprx/self file in the directory and them drag and drop the sprx/self file over the batch file

    Oh and put a pause in the end since tou will not use command prompt you have to make a pause or you will not see the the results
    Last edited by andreus; 10-23-2012 at 10:43 AM.
    XMB Manager Plus co-developer | Showtime translator | WEBmedia plugin for Showtime developer

  9. The Following 5 Users Say Thank You to andreus For This Useful Post:

    gDrive (08-07-2012), kgb (08-07-2012), lurkandlearn (08-08-2012), Yuu (08-08-2012)

  10. #25
    Member
    Join Date
    Jul 2011
    Posts
    35
    Total Thanks Given
    25
    Total Thanks Received
    67
    Total Thanked Posts
    18
    Feel free to mod / tweak the batchfile as needed it's not like i am claiming copyright on it hehehe.

    Probably needs more tweaks.. but i'm off to bed.

  11. The Following 8 Users Say Thank You to Asure For This Useful Post:

    aldostools (08-07-2012), gDrive (08-07-2012), kgb (08-07-2012), lurkandlearn (08-08-2012), opoisso893 (08-07-2012), pete_uk (08-08-2012), Yuu (08-08-2012)

  12. #26
    So Cool! I changed this!
    Join Date
    Oct 2011
    Location
    Pangea
    Posts
    3,732
    Total Thanks Given
    527
    Total Thanks Received
    3,689
    Total Thanked Posts
    1,777
    Yeah I already knew this if you dont want to wait 20 hours heres the CODMW3 klic key
    Code:
    496E66696E697479576172644B657900
    bahahhaha InfinityWardKey

    Usually its good to start with the offsets in ELF64 section headers, I was going to write a tutorial when I found an easier way to obtain the key than brute forcing the override klicensee (-l)

    EDIT: I cracked the Rage 1.01 patch already its on ps3scenefiles i think propositionjoe cracked it as well, I wish I would of known we were cracking it at the same time so I could of done a different game. Oh well whatever
    Last edited by PatrickBatman; 08-07-2012 at 07:16 PM.
    PS3 Slim w/ Rebug Rex 4.30.2, 500GB Internal, 1TB/3TB External; PS2 Fat McBoot w/ Hard Drive; Windows 7 x64 Ultimate
    Last game finished: Crysis 3 | Currently Playing: Dead Space 3

  13. The Following 3 Users Say Thank You to PatrickBatman For This Useful Post:

    gDrive (08-07-2012), kgb (08-07-2012), Yuu (08-08-2012)

  14. #27
    Crunchtarded Asshole!
    Join Date
    Jul 2011
    Posts
    3,862
    Total Thanks Given
    13,252
    Total Thanks Received
    4,942
    Total Thanked Posts
    2,419
    Quote Originally Posted by PatrickBatman View Post
    Yeah I already knew this if you dont want to wait 20 hours heres the CODMW3 klic key
    Code:
    496E66696E697479576172644B657900
    bahahhaha InfinityWardKey

    Usually its good to start with the offsets in ELF64 section headers, I was going to write a tutorial when I found an easier way to obtain the key than brute forcing the override klicensee (-l)

    EDIT: I cracked the Rage 1.01 patch already its on ps3scenefiles i think propositionjoe cracked it as well, I wish I would of known we were cracking it at the same time so I could of done a different game. Oh well shit happens
    There, fixed!

  15. The Following 2 Users Say Thank You to gDrive For This Useful Post:

    Yuu (08-08-2012)

  16. #28
    So Cool! I changed this!
    Join Date
    Oct 2011
    Location
    Pangea
    Posts
    3,732
    Total Thanks Given
    527
    Total Thanks Received
    3,689
    Total Thanked Posts
    1,777
    PS3 Slim w/ Rebug Rex 4.30.2, 500GB Internal, 1TB/3TB External; PS2 Fat McBoot w/ Hard Drive; Windows 7 x64 Ultimate
    Last game finished: Crysis 3 | Currently Playing: Dead Space 3

  17. The Following 3 Users Say Thank You to PatrickBatman For This Useful Post:

    chaves2 (08-09-2012), gDrive (08-07-2012), Yuu (08-08-2012)

  18. #29
    Senior Member
    Join Date
    Dec 2011
    Location
    Nothern Hemisphere
    Posts
    479
    Total Thanks Given
    334
    Total Thanks Received
    289
    Total Thanked Posts
    158
    You guys are seriously kicking ass! Very nice work!

  19. The Following 2 Users Say Thank You to dsmalls For This Useful Post:

    gDrive (08-07-2012), Yuu (08-08-2012)

  20. #30
    Senior Member
    Join Date
    Aug 2012
    Posts
    111
    Total Thanks Given
    178
    Total Thanks Received
    159
    Total Thanked Posts
    77
    Call of Duty Black OPS update 1.11 :
    Code:
    af0a8f0a8909f09234091afadf909af0
    Last edited by PatrickBatman; 08-08-2012 at 02:51 AM.

  21. The Following 2 Users Say Thank You to opoisso893 For This Useful Post:

    gDrive (08-08-2012), Yuu (08-08-2012)


 
Page 3 of 55 FirstFirst 123451353 ... LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
EachGame