继续 PS4 UNJAIL / FTP插件UNITY本机代码 , 他的 ps4_tools homebrew更新 最近 PS4-xplorer 1.29 mod 今天消除了固件选择屏幕 PlayStation 4场景 开发人员 @thedarkprograme. (YouTube Channel. ) 上 推特 更新了他的 GitHub存储库 与A. PS4 PRX插件 为了 统一 ( 泄漏 )开发商援助 @zecoxao. (推特)与一个基本相同 Atrac9 玩家加入到 PS4工具 , 一个 PS4 PKG查看器 更新(不要与之混淆 ps4pkgviewer..)和一个Android应用程序,允许在移动设备或电话上查看PKG! 
下载: Universal.prx. (269 KB)/ ps4_unjail.-main.zip.zip.zip. / Git. / ps4_tools存储库 / com.ps4_tools.ps4_pkg_viewer_android.apk.apk. (17.3 MB)/ PS4工具(Appveyor)
他有 比特币 (BC1QMVC5WKZPRQWEEC69ZLQLZUTGYS2HV2E4AY207Q.)也最近成立了一个 PSTOOLS PATREON PAGE. 对于那些想要支持他继续的人 PS4场景 开发工作。 
来自 readme.md. 文件: ps4_unjail.
PS4 Universal Plugin.
使用普遍
要启动您需要在Unity中进行DLL导入(Universal.prx需要放置在资产\ plugins \ ps4内)
DLL Import.
get_firmware这将获取控制台的当前固件而不是欺骗固件
un
温度
FreeFtp.
弗里蒙特
沉淀体
PS4上的通知
Mountsavedata.
unmountsavedata.
加载另一个可执行文件
getidps.
GetPsid.
get_firmware这将获取控制台的当前固件而不是欺骗固件
get_fw.
getcallablelist.
getListofservices.
kernelgetopenpenid.
Firmware_version_kernel.
Firmware_version_Libc.
getusername.
getUserid.
释放
makecusaappregwrite.
change_controller_color.
拍摄
mountandload.
宁静
PS4工具 - AT9播放器
PS4工具 - PS4 PKG查看器
PS4工具 - PS4保存管理器
如果有人需要它,那么今天在Twitter上加热东西是一种有效载荷,可以退出PS4 IDU模式:
退出IDU模式
应该"turn off"完成后,屏幕关闭后立即按住电源按钮。当您重新打开时,您应该超出IDU模式

下载: Universal.prx. (269 KB)/ ps4_unjail.-main.zip.zip.zip. / Git. / ps4_tools存储库 / com.ps4_tools.ps4_pkg_viewer_android.apk.apk. (17.3 MB)/ PS4工具(Appveyor)

来自 readme.md. 文件: ps4_unjail.
PS4 Universal Plugin.
使用普遍
要启动您需要在Unity中进行DLL导入(Universal.prx需要放置在资产\ plugins \ ps4内)
DLL Import.
Code:
[DllImport("universal")]
//Custom Funciton to be added like below
private static extern UInt16 get_firmware();
Code:
private static extern UInt16 get_firmware();
// should return as XXX e.g 505, 702 or 755
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());
Code:
private static extern int Temperature();
//Will return temp in ºC
Code:
private static extern int FreeFTP();
//Will enable FTP on the console
Code:
private static extern int FreeMount();
//Allows full rw
Code:
private static extern void SetTemperature(int celsius);
//allows you to set the temperature
Code:
private static extern int SendMessageToPS4(string Message)
//Shows a notification on the PS4
Code:
private static extern int MountSaveData(string TITLEID,string fingerprint)
//mounts save data on the PS4 if using save mounter patches please use zero's for fingerprint
Code:
private static extern int UnMountSaveData()
//Unmounts all mounted save data
Code:
private static extern bool LoadExec(string path, string argv)
//Calls and opens an application
Code:
private static extern string GetIDPS()
//Gives you you're IDPS
Code:
private static extern string GetPSID()
//Gives you you're PSID
Code:
private static extern UInt16 get_firmware();
// should return as XXX e.g 505, 702 or 755
Code:
private static extern int get_fw()
//gets the version as an int (reads from kern.sdk_version) can be spoofed
Code:
private static extern string GetCallableList()
//Designed to show you all items you can call on the syste,
Code:
private static extern string GetListOfServices()
//Designed to show you all services you can call on the syste,
Code:
private static extern string KernelGetOpenPsId()
//Not sure why this call exists
Code:
private static extern string Firmware_version_kernel.()
//Get the firmware version on the kernel (but can be spoofed !)
Code:
private static extern string Firmware_version_kernel.()
//Get the firmware version by libc (for prevent from kernel spoof)
//Should no longer be required thanks to LM
Code:
private static extern string GetUsername()
//returns the current username
Code:
private static extern string GetUserId()
//returns the current userid
Code:
private static extern int UnlockTrophies(string TitleId,string Titleidsecret )
//returns the current username
Code:
private static extern int MakeCusaAppReadWrite()
//returns the current userid
Code:
private static extern int change_controller_color.(int r,int g,int b)
//Changes controler collor to RBG provided
Code:
private static extern int TakeScreenShot()
//Should take a screenshot of the current screen
Code:
private static extern int MountandLoad()
//try's to mount something in sandbox
Code:
private static extern int MountTrophy()
//try's to mount a trophy file

- i-push-buttons-i-port.bin (7.9 KB)