PSXHAX.COM website and domain for sale. Contact Us with your offer!
Live in Your World, HAX in Ours!
GetEventHandlerNames Python Script for PS4 Scene Developers
Following his GhidraOrbisTools PS4 Loader and IDA Script Ports developer @KIWIDOGGIE (aka diwidog on Twitter) recently added a GetEventHandlerNames Python Script (GetEventHandlerNames.py) by kd_tech_ to his KiwiDoggie Productions IDA ConsoleHacking Scripts repository on Github for PS4 scene developers using the IDA Interactive Disassembler for code examination and reverse-engineering. :geek:

Download: GetEventHandlerNames.py / OrbisKernelSyscalls.java (Labels syscalls in kernel dumps/decrypted) / IDA-ConsoleHacking-Scripts-master.zip / GIT

From GetEventHandlerNames.py on Github:
Code:
#!/usr/bin/env python

#
# OpenOrbis Project providing 100% free and open source development
# This script will enumerate and print out in the console all of the eventhandler_register names
# so you can use them in your own kernel scripts
# **** the pirates
#
# Created by: kd (@kd_tech_)
# Started on: Jan 25, 2020
#

def get_eventhandler_register():
    s_Ea = idc.BeginEA()
    for l_FunctionAddress in idautils.Functions(SegStart(s_Ea), SegEnd(s_Ea)):
        l_FunctionName = idc.GetFunctionName(l_FunctionAddress)

        # check if it's our variable
        if l_FunctionName.startswith("eventhandler_register"):
            return l_FunctionAddress

    return idaapi.BADADDR

if __name__ == "__main__":
    s_EventHandlerRegister = get_eventhandler_register()
    if s_EventHandlerRegister == idaapi.BADADDR:
        msg("err: could not find eventhandler_register\n")

    #msg("found...
Lode Runner Legacy by Tozai Games Joins New PS4 Releases Next Week
Ahh, another great classic is coming to PlayStation 4 next week on January 29th... the action puzzle masterpiece Lode Runner Legacy by Tozai Games complete with a local multiplayer mode is among the new PS4 game releases that will be joining PSN. 🕹 🧱

I remember playing Lode Runner for countless hours back in the Commodore C-64 / C-128 days back when it was made by Broderbund Software, Inc. <3

Check out a video from the oldskool version alongside a Lode Runner Legacy PS4 trailer demo video below, and here's what else is heading to PlayStation 4 next week courtesy of Sony Interactive Entertainment Content Communications Manager Justin Massongill:

New PlayStation Games for January 28, 2020
  • Arc of Alchemist - PS4 — Digital (Out 1/30)
  • Autobahn Police Simulator 2 - PS4 — Digital (Out 1/30)
  • Bookbound Brigade - PS4 — Digital (Out 1/30)
  • Code Shifter - PS4 — Digital (Out 1/30)
  • Coffee Talk - PS4 — Digital
  • The Incredible Adventures of Van Helsing III - PS4 — Digital (Out 1/30)
  • The Inner Friend - PS4 — Digital (Out 1/31)
  • It Came From Space And Ate Our Brains - PS4 — Digital (Out 1/30)
  • Journey to the Savage Planet - PS4 — Digital
  • Kentucky Route Zero: TV Edition - PS4 — Digital
  • Kwaidan - PS4 — Digital (Out 1/31)
  • Lode Runner Legacy - PS4 — Digital (Out 1/29)
  • Mad Age & This Guy - PS4 — Digital (Out 1/30)
  • Milo's Quest - PS4, PS Vita — Digital (Cross-Buy)
  • Music Racer - PS4 — Digital (Out 1/29)
  • oOo: Ascension - PS4 — Digital (Out 1/31)
  • Pillars of Eternity II: Deadfire - PS4 — Digital, Retail
  • Pro Deer Hunting - PS4 — Digital
  • Saboteur! - PS4 — Digital (Out 1/31)
  • Shadow the Ronin - PS4 — Digital
  • Sisters Royale: Five Sisters Under Fire - PS4 — Digital (Out 1/29)
  • Throw Anything - PS VR — Digital (Out 1/30)
  • Top Run - PS4 — Digital (Out 1/29)
  • Vigilante Ranger - PS VR — Digital
  • Willy Jetman: Astromonkey’s Revenge - PS4 — Digital (Out 1/31)
PlayStation Music
  • Eminem - Music to be Murdered By
  • Color Out of Space Soundtrack
  • Breaking Benjamin - Aurora
PlayStation Video
  • Ford v Ferrari
  • Jay and Silent Bob Reboot
  • Arctic Dogs
The information above is subject to change without notice.

C64 -...
PS5 Game Invite System Reworked Rumors Surface via Sony Patent
According to rumors based on a recent patent from Sony Interactive Entertainment (SIE) uncovered at the USPTO, the upcoming PlayStation 5 next-gen console may feature a reworked game invite system potentially with picture-in-picture functionality allowing players to invite you into a game by launching it as a PS5 background process. 😀

This comes following PlayStation Assistant / Scene Tagging speculation, PS5 Pre-order Notifications, the Godfall PS5 Trailer, the official PS5 Logo unveiling and purported PS5 UI Image leak.

To quote from RespawnFirst.com on the summary of their latest find: "Here are some key points from the full document.
  • Launching occurs without user intervention at the invitee computer device
  • Invitee console will show a gaming session launch window associated with the launching, based on the invitation
  • Invitee console will display the window as a picture-in-picture if other game processes or apps are running
  • The game will launch as a background process
  • Launching is occurring automatically with one or more applications are running in the foreground on invitee computing device
And from the patent, to quote: "Systems and methods for establishing a multiplayer gaming session are provided.

A method can include selecting at least one invitee computing device from a plurality of invitee computing devices to join the multiplayer gaming session and a game from a list of games for the multiplayer gaming session.

The method can include transmitting an...
LibOrbisNfs: LibOrbis PS4 Homebrew Userland Library LibNfs Port
Proceeding his OrbisGlPerf: OpenGL ES 2.0 Perf Sample, this weekend PlayStation 4 developer BigBoss made available on Github via Twitter a LibOrbis PS4 Homebrew Userland Library LibNfs PS4 Port dubbed LibOrbisNfs for scene devs alongside some assembly samples to get things started! 😍

Download: liborbis-master.zip / LibOrbis GIT / liborbisNfs / samplenfs

From the liborbisNfs README.md: liborbisNfs a libnfs port for PlayStation 4

What does this do?


liborbisNfs is a homebrew user land library based in libnfs and it is part of LIBORBIS for PlayStation 4

You must use only ip, name resolution not implemented call orbisNfsInit(nfs:ip/pathofyourexport)

sample available at https://github.com/orbisdev/samples/tree/master/samplenfs

Change log
  • 25/01/2020 Initial public release
Credits
  • All homebrew developers who are sharing source code because It is the way. For example Ronnie Sahlberg libnfs
  • Hitodama for his incredible work with PS4SDK the one and only
  • flatz to bring us a lot of fun with gl stuff
  • frangar, xerpi theflow0 and rest of people involved in vitasdk for their incredible work on Vita, it helped me a lot. Some parts of liborbis are based on their work so forgive me for stealing parts like icons and code from vitashell :p
  • masterzorag for freetype and orbisfreetype-gl port and all samples for orbisgl and liborbis
  • All people who have been using liborbis
  • All ps3dev and ps2dev old comrades
  • ZiL0G80 and notzecoxao for sharing some stuff with me
  • All MSX users, special mention to ASUR MSX members
  • Hideo Kojima and Sony source of inspiration and dreams and for more than 35 years of playing and coding with Sony devices
  • The best is yet to come... It's time Developers... Assemble
...
New PlayStation VR (PS VR) Headset Rumored to Arrive in 2020
We've seen PSVR2 Concepts, next-gen PS VR2 Patents, Sony's Augmented Reality Wireless Headset and based on the latest rumors a new PlayStation VR (PS VR) headset may be coming to PlayStation virtual reality gamers in 2020. :cool:

According to TechBriefly.com, the publisher of Immersive VR Education (Apollo 11 VR and Titanic VR) recently released a financial report that mentions the new Sony VR headset confirming the provisional release window.

To quote: "In 2020, Sony will release PlayStation 5 and a new version of the PlayStation VR headset (PSVR), which will further expand the high-end VR user base – the group intends to support this device with its current software package, the Immersive VR Education Ltd said in a report.

Back in March 2019, the Sony Senior VP of R&D, Dominic Mallinson, hinted that the company might release several second-gen PlayStation VR models that includes new features like wireless connectivity and eye tracking."

Hopefully more details will be revealed during the upcoming PlayStation Meeting purported to take place on February 5th and unveil Sony's next-generation PlayStation 5 console.
Back
Top