Join Us and become a Member for a Verified Badge to access private areas with the latest PS4 PKGs.
PS4 CFW and Hacks       Thread starter PSXHAX       Start date Jan 5, 2017 at 1:37 AM       3      
Status
Not open for further replies.
Earlier this week PlayStation 4 developer @MrNiato made available his PS4 Console Manager Tool Source Code followed by the required Interop.ORTMAPILib.dll via @oldschoolmodzhd, and now RFOoD x MoDz shared a Private Static ORTMAPILib.IProcess IProcess with homebrew developers. :ninja:

To quote: Private Static ORTMAPILib.IProcess IProcess;

Code:
       void SetMemory(ulong Address, object Bytes)
            {
                IProcess.SetMemory(Address, Bytes);
            }


           void GetMemory(ulong Address, uint ByteCount, out uint Bytes)
           {
               IProcess.GetMemory(Address, ByteCount, out Bytes);
           }


           void SendConsoleInput(string InptText)
           {
               IProcess.SendConsoleInput(eConsoleOutputPort.STREAM_STDERR, InptText);
           }
Example:
Code:
byte[] buffer = new byte[] { 0xFF, 0xFF };
SetMemory(0xFFFFF, buffer);
Thanks to @HydrogenNGU for sharing the Pastebin in the PSXHAX Shoutbox! :thumbup:
PS4 Private Static ORTMAPILib.IProcess IProcess by RFOoD x MoDz.jpg
 

Comments

Had a conversation with Da Black Pantha, and yes this should function if you have an activated PS4SDK/Dev/TestKit.

It's a working function, but SC58 said it's useless, but it doesn't hurt that have some information out there for the ORTMAPI :)

Enjoy le code!
 
Status
Not open for further replies.
Back
Top