Olygame

DigiTopZ #2

ModChipCentral

Page 50 of 55 FirstFirst ... 404849505152 ... LastLast
Results 491 to 500 of 545
  1. #491
    Member
    Join Date
    Jun 2012
    Posts
    78
    Total Thanks Given
    0
    Total Thanks Received
    126
    Total Thanked Posts
    51
    Quote Originally Posted by aldostools View Post
    In a future version, is it possible to add search direction? And use END-to-BEGIN as default.

    You could also consider a parameter to launch up to 4 concurrent threads... each with a different portion of the 'input keydata file'
    just an opinion...it looks like a minimum gain...with the current speed of this tool a 50mb elf is parsed in under a minute...
    _

  2.          
  3. #492
    Senior Member
    Join Date
    Sep 2011
    Posts
    269
    Total Thanks Given
    636
    Total Thanks Received
    896
    Total Thanked Posts
    238
    removed post
    Last edited by aldostools; 10-22-2012 at 07:44 AM.

  4. #493
    Junior Member
    Join Date
    Oct 2012
    Posts
    10
    Total Thanks Given
    3
    Total Thanks Received
    18
    Total Thanked Posts
    7
    @aldostools
    For text search i'm only considering ASCII/UTF-8 (they're the same for hex characters).
    Considering all ways unicode might be stored would be more intensive. I think also supporting UTF-16 would be sufficient... agreed?

    You mentioned that you would like an option for setting search direction, what do you mean by that?
    Do you mean that you want to scan a file from end to beginning? Or do you mean an option for setting start and end offset?
    The second option (setting end/start offset) would be very handy, but I don't see the advantage of scanning a file backwards...

    As for making the tool multi-threaded, there are some issues/buts:
    1. Maintaining portability (Win32/Linux) with threads requires some work.
    2. With options for setting start/end offset it's basically not needed, as multiple instances can be run concurrently, each working on a different part of the input elf file.
    3. I've not coded in C for ages (apart from this project), which makes getting things done in C relatively hard for me (if only I made this in Java... ).

    So, what will I do? I will implement scanning for UTF-16 hex string and add option for setting start and end offset.
    I will probably implement scanning for UTF-16 hex strings in such a way, that it will be easy to also support UTF-32 (just in case).

    I might also try to make it multi-threaded, as it would be a fun thing to do
    But before doing that, I will probably make sure that the input elf file is read using a separate thread while processing it at the same time, as it is higher on my personal ToDo list (and more interesting to implement).
    So don't expect multi-threaded brute-forcing very soon.

    Btw, I'm having some friends over for the rest of the day. So I will probably not get things done until late this evening/night (probably tomorrow).


    A big thanks for all the feedback!

    P.S.:
    I've only tested my tool on like 3-4 different files, as I wrote this program just for fun, not to use it personally
    So, I'm very surprised (and glad) that there haven't been any serious bug-reports.

  5. #494
    Senior Member
    Join Date
    Sep 2011
    Posts
    269
    Total Thanks Given
    636
    Total Thanks Received
    896
    Total Thanked Posts
    238
    removed post
    Last edited by aldostools; 10-22-2012 at 07:44 AM.

  6. #495
    Member
    Join Date
    Jun 2012
    Posts
    78
    Total Thanks Given
    0
    Total Thanks Received
    126
    Total Thanked Posts
    51
    the klic is always at the end of the elf...this means the last 1/3 of the file...sometimes up to last 1/10 of the file...so starting the search from the middle of the file or from the end to the beginning will be beneficial...but the gain will be minimal...
    _

  7. The Following 2 Users Say Thank You to catalinnc For This Useful Post:

    aldostools (10-08-2012), opoisso893 (10-08-2012)

  8. #496
    Member
    Join Date
    Jun 2012
    Posts
    78
    Total Thanks Given
    0
    Total Thanks Received
    126
    Total Thanked Posts
    51
    Quote Originally Posted by bourat View Post
    @aldostools,
    Thanks for the new version Aldo
    But the "SelfAppVersion" original value (scetool -i -> "Application Info" section -> "Version") is 01.00 and not 01.05.
    It's different than the "APP_VER" value in PARAM.SFO
    you can overcome this by bruteforcing the USRDIR...this way the PARAM.SFO will not be used...
    _

  9. #497
    Senior Member
    Join Date
    Sep 2011
    Posts
    269
    Total Thanks Given
    636
    Total Thanks Received
    896
    Total Thanked Posts
    238
    removed post
    Last edited by aldostools; 10-22-2012 at 07:45 AM.

  10. The Following 4 Users Say Thank You to aldostools For This Useful Post:

    andreus (10-08-2012), bourat (10-09-2012), kgb (10-09-2012), opoisso893 (10-08-2012)

  11. #498
    So Cool! I changed this!
    Join Date
    Oct 2011
    Location
    Pangea
    Posts
    3,737
    Total Thanks Given
    527
    Total Thanks Received
    3,695
    Total Thanked Posts
    1,780
    I cant get the file BinkPS3SPU.spu.self (From E3's Splinter Cell trilogy fix) to rencrypt properly. It'll decrypt it into an elf, but it wont rencrypt to SELF nor FSELF because it seems the elf was decrypted wrong or something. Ive even tried manually in command line with C0A3B7641C2AD1EF20133A28A3E15FE3 klic same error.

    I've got all self for the game converted to DEX except this one
    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

  12. The Following User Says Thank You to PatrickBatman For This Useful Post:

    aldostools (10-09-2012)

  13. #499
    Senior Member
    Join Date
    Sep 2011
    Posts
    269
    Total Thanks Given
    636
    Total Thanks Received
    896
    Total Thanked Posts
    238
    removed post
    Last edited by aldostools; 10-22-2012 at 07:45 AM.

  14. #500
    Member
    Join Date
    Jun 2012
    Posts
    78
    Total Thanks Given
    0
    Total Thanks Received
    126
    Total Thanked Posts
    51
    new klic: Super Sidekicks NPUB30259
    Decrypt: libacc_neogeo.sprx
    Content ID: UP0576-NPUB30259_00-NEOGEOSTATION008
    Done! Offset: 2576250 -> 0x00274F7A
    Key found: 2160B28ABBB5348BAD25704E4CEFBD4E
    _

    L.E. kudos to exetrimall
    _
    Last edited by catalinnc; 10-09-2012 at 01:57 PM.

  15. The Following User Says Thank You to catalinnc For This Useful Post:

    aldostools (10-09-2012)


 
Page 50 of 55 FirstFirst ... 404849505152 ... 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