Post: PS4Lib - (4.05/4.55/5.05) | Real Memory Editing | [SERVER/CLIENT] | v1.1
02-07-2018, 06:55 PM #1
BISOON
Maggbot timeout!
(adsbygoogle = window.adsbygoogle || []).push({}); Hello everybody after a while being away for a long time Smile

Recently I got my PS4 (4.05) and thanks for everyone who spent his effort to make this happen on 4.5 and also we will not forget who is working on useful things for this community.
I spent the past two days looking for PS4API to control over the app memory using desktop tools/rtms, and unfortunately I got some but seems not worked with me or not stable enough (I am not underestimating their work, I really respect what they have done) also no new commits or updates on their projects for a long time.

As I promised you guys I've finished the client side library in c# to make it easy for people who interested in making RTM tools. also demo app included for demonstration.

A Brief Examples:

Instantiate the PS4API object:
    PS4API PS4 = new PS4API();


Connect to target:
    PS4.ConnectTarget("192.168.0.0");


Disconnect from target:
    PS4.DisconnectTarget();


Attach to game process:
    PS4.AttachProcess();


Detach Process:
    PS4.DetachProcess();


Notify:
    PS4.Notify(222, "Hello World!");


Write to memory:
    PS4.SetMemory(0x0000000000000000, new byte[]{0x00,0x00});


Read from memory:
    byte[] buffer = PS4.GetBytes(0x0000000000000000, Cool Man (aka Tustin);


Extension Class Examples:

Reading


Read and return an signed integer 16,32 or 64 bits:
    
Int16 var16 = PS4.Extension.ReadInt16(0x000000000);
Int32 var32 = PS4.Extension.ReadInt32(0x000000000);
Int64 var64 = PS4.Extension.ReadInt64(0x000000000);


Read and return an unsigned integer 16,32 or 64 bits:
    
UInt16 var16 = PS4.Extension.ReadUInt16(0x000000000);
UInt32 var32 = PS4.Extension.ReadUInt32(0x000000000);
UInt64 var64 = PS4.Extension.ReadUInt64(0x000000000);


Read and return float(s):
    
float varFloat = PS4.Extension.ReadFloat(0x000000000);
float[] varFloats = PS4.Extension.ReadFloats(0x000000000, 3);


Read and return double:
    
double vardouble = PS4.Extension.ReadDouble(0x000000000);


Read and return string:
    
string varstring = PS4.Extension.ReadString(0x000000000);


Writing


Write an signed integer 16,32 or 64 bits:
    
PS4.Extension.WriteInt16(0x000000000, 0x1122);
PS4.Extension.WriteInt32(0x000000000, 0x11223344);
PS4.Extension.WriteInt64(0x000000000, 0x112233445566778Cool Man (aka Tustin);


Write an unsigned integer 16,32 or 64 bits:
    
PS4.Extension.WriteUInt16(0x000000000, 0x1122);
PS4.Extension.WriteUInt32(0x000000000, 0x11223344);
PS4.Extension.WriteUInt64(0x000000000, 0x112233445566778Cool Man (aka Tustin);


Write float(s):
    
PS4.Extension.WriteFloat(0x000000000, 1.25f);
PS4.Extension.WriteFloats(0x000000000, new float[]{1.0f, 2.0f, 3.0f});


Write double:
    
PS4.Extension.WriteDouble(0x000000000, 1.7E+3);


Write string:
    
PS4.Extension.WriteString(0x000000000, "Hello World!");






GUI:
You must login or register to view this content.



* I added the Extension class from PS3Lib by You must login or register to view this content. for two reasons, first is to save my time, second is to make it easy for people who already familiar with that awesome lib.




TODO:

  • more system functions.
  • Improve TCP communications.
  • Improve memory allocation.
  • multi-users.
  • process dump
  • process list
  • debugger


Changelogs:

PS4API - SERVER


1.1
- More process name (default_mp.elf, eboot.bin etc)
- Fixed attach problem

1.0
initial version

PS4Lib - CLIENT


1.0
initial version




Open sourced PS4 Tools created using PS4Lib.dll:


  • PS4API for NetCheat You must login or register to view this content.
  • GTA5 Native Caller You must login or register to view this content.
  • Orbis Assembler You must login or register to view this content.
  • PS4 Notification tool by Vultra You must login or register to view this content.




Bugs:
Only one bug, if I try to read more than 1000000 length the browser got crashed, due the memory allocation in the server. it will be fixed soon.
feel free to comment below any bugs to fix. also your feedback is valuable. <3




You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.








Credits:

CTurt -> the SDK.
Specter -> exploit implementation.
IDC, xvortex, 2much4u, iMCSx
All of You reader, supporter, haters, ...etc
and who else I missed (feel free to message me for the Credits)
Last edited by BISOON ; 06-09-2018 at 04:49 PM. Reason: 5.05

The following 41 users say thank you to BISOON for this useful post:

/SneakerStreet/, aburezk, AFG, AlexNGU, Big_Buddha, Bigmoneyhustlin, Black Panther, Calculus, Coconut_Split, danilo_BR, Dynamite, esquinera, ExIIL, popcornmods, GelsonSilva, hibye3, Hydrogen, ImAzazel, ioritree, jacob_9191, Je Modz, joni_djESP, kiki1941, KL9, macflay59, MessinBound, MODZ4FUN420, mohd, NGM, Pianist Prodigy, RF0oDxM0Dz, seb5594, Speakster, TER152, Terrorize 420, ThatEpicSomeone, The Real MoDzz, tuffcole, Vince, X-UNDEAD_NINJA2, Xx-GIPPI-xX
02-11-2018, 07:35 PM #11
Speakster
NextGenUpdate Elite
Great work Bisoon!!

The following user thanked Speakster for this useful post:

BISOON
02-12-2018, 08:50 AM #12
thank you ,demo rte work on fake pkg games
Last edited by ioritree ; 02-12-2018 at 09:50 AM.

The following user thanked ioritree for this useful post:

BISOON
02-12-2018, 10:03 AM #13
BISOON
Maggbot timeout!
Originally posted by ioritree View Post
thank you ,demo rte work on fake pkg games


Thanks for the confirmation

The following user thanked BISOON for this useful post:

ioritree
02-12-2018, 10:52 AM #14
but notify text input any #number or words then push notify button will get all empty message.
PS4API.bin seem can't launch fake pkg games , need load PS4HEN.bin first then load PS4API.bin


In future could be add new feature ? ex: memory map or memory dump ?

The following user thanked ioritree for this useful post:

BISOON
02-12-2018, 01:13 PM #15
BISOON
Maggbot timeout!
Originally posted by ioritree View Post
but notify text input any #number or words then push notify button will get all empty message.
PS4API.bin seem can't launch fake pkg games , need load PS4HEN.bin first then load PS4API.bin


In future could be add new feature ? ex: memory map or memory dump ?


Good idea to add PS4HEN and make the payload become more useful .. I will work on it soon. Thanks for your feedback.

The following user thanked BISOON for this useful post:

ioritree
02-12-2018, 04:42 PM #16
yahay200
Save Point
Success to Connection
and send notification is done
But I can not write and read it all -00-
ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ
Hopefully this tool is developed

You must login or register to view this content.
Last edited by yahay200 ; 02-12-2018 at 04:49 PM.
02-12-2018, 05:01 PM #17
BISOON
Maggbot timeout!
Originally posted by yahay200 View Post
Success to Connection
and send notification is done
But I can not write and read it all -00-
ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ
Hopefully this tool is developed

You must login or register to view this content.




brother 0x100 is not valid offset, the game starts 0x400000 , thanks for your feedback

The following 2 users say thank you to BISOON for this useful post:

ioritree, runningman420
03-06-2018, 04:45 PM #18
what would this be used for? I'm fairly new to modding
03-06-2018, 07:21 PM #19
ndscrub123
Save Point
so i walked in to this post now iam interested what does this do sorry be a scrub

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo