PSXHAX.COM website and domain for sale. Contact Us with your offer!
MakePFS: Utility to Build PS4 PFS (PlayStation File System) Images
We covered how to bypass PFS protection and we've seen PFS Keys recently, and now developer maxton (Twitter) of the PlayStation 4 PFS extractor GameArchives has released MakePFS which is utility to build a PS4 PFS (PlayStation File System) image! :biggrinxf2:

Download: MakePFS-master.zip / GIT

To quote from the README.md: MakePFS

A utility to create PFS (Playstation File System) images.

Usage:
Code:
makepfs -o pfs_image_name.dat -r /path/to/root/directory [-b BLOCKSIZE]
Options:
  • -o filename : Sets the output filename for the image to filename.
  • -r /path/to/root : Sets the directory used as the root of the filesystem.
  • -b BLOCKSIZE : (Optional) Sets the blocksize of the PFS image. Default is 65536.
Cheers to @CougarDomin for sharing the news tip in the PSXHAX Shoutbox this morning with us! :thumbup:
PS4 ELF Loading via TaiHEN Patches, PlayStation 4 Game Backups Hint!
Following the BIG PlayStation 4 Beta 4.50 news earlier, today @zecoxao shared a heads-up on Twitter that Zer0xFF noticed some handy TaiHEN Patches (specifically the first three, he tweets) that will aid developers in loading ELFs on the PS4 1.76... which he hints can also lead to running PS4 game backups!!! <3 :angel:

To recap, the popular HENkaku PS Vita exploit was ported to PS4 HENkaku, as PS Vita CFW Framework TaiHEN paved the way for Adrenaline PSPemu CFW while developer Yifan Lu suggested a TaiHEN PS4 port providing the necessary functions could be found in the PS4 kernel developer dumps through the Dlclose Exploit.

Enter PS4 ELF Loader Tools, a PS4 Kernel ELF, PS4 ELF Hooking and a useful PS4 ELF Archive up to and including 3.55 for PlayStation 4 developers using the...
Xploder PS4 Cheats System Incoming, Resigns PlayStation 4 Saves
Many moons ago we saw the Xploder PS3 Cheats System for unmodded consoles, and now following the recent PS4 Save Wizard news and Code Freak Cyber PS4 Save Editor the Xploder PS4 Cheats System is on the way and also resigns PlayStation 4 game saves. :laughxf2:

After seeing the $25.25 pre-order price tag here's to hoping a cracked / hacked / free / homebrew version surfaces once it gets in the hands of sceners and reverse-engineered, but until then here's what their Product Page states, to quote:

Xploder PS4 Cheats System

Highlights: Xploder is the ONLY PS4 cheat software in the world - With our exclusive "re-signing" technology you can instantly use any other ps4 save as your own.

Xploder is the ONLY PS4 cheat software in the world - With our exclusive "re-signing" technology you can instantly use any other PS4 save as your own.

Hunting around for cheats online can be tricky involving risky flashing or chipping of your console and carries high risk of damage, invalid warranties or getting your profile barred from PSN! No more risk taking, let Xploder do the hard work for you.

No other product, service or method offers this ability. It is exclusive to Xploder and another Xploder first.
  • Works with the all the latest games, even games that profile lock their saves!
  • Works with the latest PS4 firmwares without "jailbraking" or "modding"
  • Assigns any save to your chosen PS4 profile.
What is a Game Save?

A game save is a save point that has been uploaded by the Xploder team or a member of our extensive community. By downloading this save and using our exclusive technology, you can then use this save on your own PS4! Stuck on a level? Download a save point from later in the game! Want to see the ending? Download a save point from the end of a game!

Xploder is for everyone - all gamers need a little help some time.

Xploder is a system that allows any gamer to effortlessly obtain and use gamesaves on their consoles so they can unlock levels and stages, unlock secret/hard to find...
Gamer Choice Sony PSN ID Availability Tool by Luckeyy
Recently we saw some handy SendPSN Tools and now PlayStation 4 developer Dr. Luckeyy released a Gamer Choice Sony PSN ID Availability Tool that allows you to check whether a PSN ID is available or in use already on Sony's PlayStation Network when Creating an Account at your leisure. :smilexf2:

Download: PSN ID Checker.rar (20.3 MB)

For those who are new to PlayStation Network and planning to register a PSN ID here are some tips from Sony that may be of use as well, to quote:

How do I choose my Online ID?

Please bear in mind the following when choosing your Online ID:
  • You cannot change your Online ID once it has been created, so choose carefully.
  • Your Online ID must be three to 16 characters and can consist of letters, numbers, hyphens (-) and underscores (_).
  • We recommend that you do not use an Online ID that might personally identify you to other users.
  • We do not allow vulgar or offensive Online IDs that violate the Community Code of Conduct. If you have an offensive or vulgar Online ID you may find that your account or PlayStation system is banned in line with the Community Code of Conduct.
  • You may find that your first few choices of Online ID have been chosen by another user. Be patient and make as many attempts as you need to until you are happy with your chosen Online ID - don’t forget you can’t change it once you’ve decided.
Thanks to @HydrogenNGU for the news tip on Twitter! :thumbsupxf2:

PS4Ninja PlayStation 4 File Browser Source Code by M0rph3us1987
Following his previous releases, today PlayStation 4 developer m0rph3us1987 let us know on Twitter that he's abandoning the PS4Ninja project so he's decided to share the PS4Ninja file browser homebrew application's source code with PS4 community developers! :ninja:

Download: ps4ninja-master.zip / GIT / ps4ninja_672.7z (18 KB)

From the Readme.txt, to quote: How to build

1) Go into ps4ninja_win\Browser\PS4NINJA and type
Code:
make
This will build minlib, ps4ninja (PS4 part) and create payload_176.bin.

2) To build the windows application, open the VS Solution and build it.

3) You can manually build any of the components by entering into the directory and type "make".

From Ybin.me (PS4-EAP-KEY-DUMPER-672.bin):
Code:
// Decrypted EAP partition key and print it into klog
// key for /eap_user, /User, /Update
void getEAPPartitionKey(){
   void(*bzero)(void *buf, size_t len) = (void *)0xFFFFFFFF82613B00;
   void(*icc_nvs_read)(size_t id, size_t no, size_t offset, size_t len, unsigned char *buff) = (void *)0xFFFFFFFF82639CD0;
   void(*sceSblGetEAPInternalPartitionKey)(unsigned char *encBuffer, unsigned char *decBzffer) = (void*)0xFFFFFFFF827B1B00;

   // Allocate needed space
   struct malloc_type *mt = ps4KernelDlSym("M_TEMP");
   unsigned char *encNVSKeyBuffer = (unsigned char*)malloc(0x70, mt, M_ZERO | M_WAITOK);
   unsigned char *decryptedKey = malloc(0x20, mt, M_ZERO | M_WAITOK);
   bzero(encNVSKeyBuffer, 0x70);
   bzero(decryptedKey, 0x20);

   // Read encrypted...
Back
Top