Skip to content

Releases: yifanlu/taiHEN

taiHEN

Choose a tag to compare

@yifanlu yifanlu released this 21 Feb 07:36

Add delayed config loading to allow config to be reloaded from module_start. The main use-case here is if a kernel module defined in *KERNEL wishes to refresh the config. Previously there will be a use-after-free as it tries to free the old config while it is still being parsed. Now that's been fixed and it supports re-loading the config (delayed) after the first parse is complete.

taiHEN

Choose a tag to compare

@yifanlu yifanlu released this 30 Jul 15:55

Hold L at start of an application to skip loading user plugins. This also means that if you have Ensō and hold L at boot, you should skip loading of SceShell plugins as well.

taiHEN

Choose a tag to compare

@yifanlu yifanlu released this 24 Jun 23:10

Added recovery option to skip loading all plugins (kernel and user) by holding L1. If using HENkaku from the web or with the offline installer, hold L1 after the bootstrap installer starts up. If using Ensō, hold L1 and power on the Vita. You can still reuse plugins by calling taiReloadConfig even if you started taiHEN without plugin loading.

taiHEN

Choose a tag to compare

@yifanlu yifanlu released this 25 May 19:05
  • Alternative config file at ur0:tai/config.txt loads if ux0:tai/config.txt is not found.

taiHEN

Choose a tag to compare

@yifanlu yifanlu released this 14 May 16:45
  • Fixed a memory leak where a reference was not decremented
  • Mitigation for a SCE bug that limits the number of plugins that can be loaded per application
  • API Change: When TAI_MAIN_MODULE is used, the first loaded module will always be returned. This should be transparent to most plugins except the main change is that you can use TAI_MAIN_MODULE for SceShell now.

taiHEN Beta 6

taiHEN Beta 6 Pre-release
Pre-release

Choose a tag to compare

@yifanlu yifanlu released this 13 Dec 17:58
  • Module is now compressed
  • API change: TAI_MAIN_MODULE can be passed as a parameter to functions that take a module name. This will resolve to the default main module (aka the eboot.bin of the loaded application).

taiHEN Beta 5

taiHEN Beta 5 Pre-release
Pre-release

Choose a tag to compare

@yifanlu yifanlu released this 26 Nov 05:59
  • Add new developer exports module_get_by_name_nid, module_get_offset, module_get_export_func, and module_get_import_func for advanced users. Headers not provided because these functions are not recommended for normal users.
  • Integrated latest version of substitute with bug fixes for certain types of function hooks.

taiHEN Beta 4

taiHEN Beta 4 Pre-release
Pre-release

Choose a tag to compare

@yifanlu yifanlu released this 14 Nov 00:44
  • Implemented clean-up of user hooks on process termination
  • Added more APIs for kernel module loading and process module loading
  • Fixed bug where stack size was too small in syscall leading to crash when hooking or unhooking (seen by suprx loading skprx)
  • Added checks to prevent hooking of unresolved weak imports (see docs for details on how to hook weak imports)
  • Fixed bug in assembling the outro for BL instructions (can be seen by crash when hooking app_start)
  • Fixed bug where taiGetModuleInfo does not retrieve all modules.
  • Fixed bug where kernel module stopping crashes

taiHEN Beta 3

taiHEN Beta 3 Pre-release
Pre-release

Choose a tag to compare

@yifanlu yifanlu released this 08 Nov 05:04
  • Fixed issue with user loading of kernel module not working
  • Minor stability fixes

taiHEN Beta 2

taiHEN Beta 2 Pre-release
Pre-release

Choose a tag to compare

@yifanlu yifanlu released this 06 Nov 03:04
  • NID poisoning disabled, allows for user hooks of imports
  • Configuration parsing/loading
  • Fixed race condition in sceKernelMemPoolCreate
  • Fixed bug in taiLoadKernelModule and related function (#4)