PS4_Unjail PRX Plugin, Android PS4 PKG Viewer & More by xXxTheDarkprogramerxXx

Proceeding the PS4 Unjail / FTP Plugin Unity Native Code, his PS4_Tools Homebrew Updates and recent PS4-Xplorer 1.29 Mod that eliminates using the firmware selection screen, today PlayStation 4 Scene developer @TheDarkprograme on Twitter updated his Github Repositories with a PS4 Unjail PRX Plugin for Unity (Leak) developers alongside a basic Atrac9 Player added to PS4 Tools, a PS4 PKG Viewer update (not to be confused with PS4PKGViewer) and an Android application that allows viewing PKG’s on your mobile device or phone! 🤩

Download: ps4_unjail-main.zip / GIT / PS4_Tools Repository / com.ps4_tools.ps4_pkg_viewer_android.apk (17.3 MB)

:idea: He has Bitcoin (bc1qmvc5wkzprqweec69zlqlzutgys2hv2e4ay207q) and also recently set up a PSTools Patreon Page for those who would like to support his continued PS4 Scene development work. <3

From the README.md file: ps4_unjail

PS4 Universal Plugin

Using Universal

To start you will need to do a DLL Import in unity (universal.prx needs to be placed inside Assets\Plugins\PS4)

DLL Import

Code:
    [DllImport("universal")]
    //Custom Funciton to be added like below
    private static extern UInt16 get_firmware();

Get_Firmware this will get the current firmware of the console not the spoofed firmware

Code:
   private static extern UInt16 get_firmware();
   // should return as XXX e.g 505, 702 or 755

Unjail

Code:
   private static extern int FreeUnjail(int FWVersion);
   //Will unjail the current process (you're game or app)
   //can be combined with the GetFirmware funciton to auto unjail
   FreeUnjail(get_firmware());

Temperature

Code:
   private static extern int Temperature();
   //Will return temp in ºC

FreeFTP

Code:
   private static extern int FreeFTP();
   //Will enable FTP on the console

FreeMount

Code:
   private static extern int FreeMount();
   //Allows full rw

PS4_Unjail PRX Plugin, Android PS4 PKG Viewer & More by xXxTheDarkprogramerxXx.jpg