wrjqss / henkaku

Homebrew enabler for PS Vita

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is a stripped down version of the full HENkaku build system.

Build

Only Linux is supported. You will need:

  • roptool
  • Python 3
  • Ruby (specifically, the erb command-line tool)
  • Vita SDK: download from https://goo.gl/QpX5zM
  • Uglify JS (Ubuntu 16.04 package node-uglify) tested version 2.4.15
  • Other standard tools that you should already have installed, such as openssl, dd, cat, touch

All tools should be in your PATH.

Run ./build.sh to build everything. This script first cleans up all build directories and then builds the exploit.

Develop

It's useful to have everything be automatically rebuilt when a source file changes. To achieve that, install entr and execute in a separate terminal:

while sleep 1; do find build.sh urop/ webkit/ | entr -d ./build.sh ; done

Then when you change a source file (or add a new one), everything will be automatically rebuilt. Note that if you add a new directory, you will need to update the script.

Distrib

Distribute only the files from the output directory, don't distribute any other files.

There are two versions of the exploit, located in the output directory.

The static subdirectory contains a version that does not require any server-side scripting support. You can serve it using any web server (e.g. python3 -m http.server). The exploit is self contained and doesn't download any files.

The dynamic subdirectory contains a version that has its payload split into two stages. The first stage downloads the second stage from the internet. You need to serve this directory using a server that supports PHP scripting. This version is more stable and is recommended.

Exploit

To run the exploit, first cold boot your Vita, then navigate to exploit.html. The following situations are possible:

  • browser doesn't display any alert()s and displays a gray "Please wait..." screen after a few seconds: this is normal, allow up to 10 reloads before the exploit actually triggers
  • you get a "trigger" alert(), then nothing happens: the exploit succeeded
  • you get a "trigger" alert(), then the browser crashes: the exploit failed, retry it a few times, then reboot the Vita and try again
  • you get a "trigger" alert(), then the system crashes: that shouldn't happen, try the exploit again

About

Homebrew enabler for PS Vita

License:MIT License


Languages

Language:JavaScript 46.6%Language:Python 22.6%Language:Shell 15.8%Language:Go 9.2%Language:PHP 5.8%