Trophy: Difference between revisions

From PS4 Developer wiki
Jump to navigation Jump to search
(Jailbreak simple)
 
(Documenting what I've found until now)
 
Line 1: Line 1:
_lp.Pkg
_lp.Pkg <==== not sure why this is here but leaving it here
 
== Background ==
Trophy files are encrypted on the PS4 by default and mounted by the console each time a game boots
 
Trophy files get mounted to /mnt/pfs/trophy/{UserId}/data/{NpComId}
 
== Trophy Locations ==
 
Trophy files are saved in the following location
 
/user/home/{UserId}/trophy/data/ <=== This Directory contains all trophies for all games on the console with the NPComId (e.g. NPWR04914_00)
 
Inside each of these directories are the following files
 
* sealedkey <==== Sealed Key of each trophy file
* trophy.img <=== The sealed file signed with the sealed key
 
There is also a SQLite DB that contains all information regarding trophies
 
/user/home/10000000/trophy/db/trophy_local.db
 
 
Un-encrypted trophies can also be found on the ps4 in the following locations
 
/user/trophy/conf/ <=== these Directories seem completely useless but it does have some stuff to play with

Latest revision as of 18:35, 28 May 2020

_lp.Pkg <==== not sure why this is here but leaving it here

Background[edit | edit source]

Trophy files are encrypted on the PS4 by default and mounted by the console each time a game boots

Trophy files get mounted to /mnt/pfs/trophy/{UserId}/data/{NpComId}

Trophy Locations[edit | edit source]

Trophy files are saved in the following location

/user/home/{UserId}/trophy/data/ <=== This Directory contains all trophies for all games on the console with the NPComId (e.g. NPWR04914_00)

Inside each of these directories are the following files

  • sealedkey <==== Sealed Key of each trophy file
  • trophy.img <=== The sealed file signed with the sealed key

There is also a SQLite DB that contains all information regarding trophies

/user/home/10000000/trophy/db/trophy_local.db


Un-encrypted trophies can also be found on the ps4 in the following locations

/user/trophy/conf/ <=== these Directories seem completely useless but it does have some stuff to play with