Recent content by FennyFatal

  • Staff Applications
    Dear Guest,
    Staff applications are now open! Join our team and help make our community even better.
  1. FennyFatal

    DIIIROS.SaveEdit Cracked

    Original dev wanted $30 a month? That's just crazy.
  2. FennyFatal

    What Anime Are You Currently Watching / Recently Finished?

    Recently finished: Steins;Gate 0 Danganronpa: The Animation Gate My Hero Academia Season 3
  3. FennyFatal

    overcome the space limit on the ps4

    It does seem like it *could* be possible. At the very least you would need to edit one of the sqlite content DBs as well as placing the games metadata files correctly. I think there would be a lot of concern that you would clobber a change that the system has made between when you pull the db...
  4. FennyFatal

    [DEV] param.sfo parsing class in Ruby.

    It will actually work that way now. ~/ps4tools/param_sfo$ get_sfo_info EP0001-CUSA00016_00-WATCHDOGS0000000_0.pkg APP_TYPE: 00000001 APP_VER: 01.00 ATTRIBUTE: {:display_location_flag=>0, :unknown_value_15=>0, :supports_HDR=>0, :unknown_value_14=>0, :unknown_value_13=>0, :requires_PSVR=>0...
  5. FennyFatal

    [DEV] param.sfo parsing class in Ruby.

    I scan for magic in param.sfo, then I parse the header. You can see the structure of the header in SFO.rb. You can calculate the offset of the value you are looking for by parsing the struct that contains each entry which will tell you the start and end offset from the SFO magic value.
  6. FennyFatal

    [DEV] param.sfo parsing class in Ruby.

    It downloads the first 2MB from the provided pkg URL, then extracts the param.sfo, and parses out the information from there. ~/ps4tools/param_sfo$ ./get_sfo_info.rb...
  7. FennyFatal

    [DEV] param.sfo parsing class in Ruby.

    This is a simple parser written in Ruby. It has the capability to check system firmware version requirements on a PKG file without downloading the whole thing. To use: you will need to install the http, and bindata gems. Git clone this repo, and follow instructions in readme...