Skip to content

Releases: Ragekill3377/Titanox

Titanox 1.6b

30 Nov 10:12
87979b6
Compare
Choose a tag to compare

-> Added THPatchMemory
-> Users can now patch memory at addresses via memcpy under the hood without jb
-> Also replaced vm_write in libhooker-jailed.mm
-> LHHookFunction & LHUnhookFunction will now rely on THPatchMemory

1.5b

30 Nov 04:25
9f98ed8
Compare
Choose a tag to compare

BETA

-> Added JRMemory framework
-> Updated LHHookFunction to write using JRWrite instead of CGP's write, since users had an issue with it.

1.4

27 Nov 15:22
822d8ce
Compare
Choose a tag to compare
1.4

-> Fixed bug where using LHHookFunction within a loop would constantly allocate memory for the hook, until the process died. Now, a check has been added to prevent such things.

-> memoryEngine->CGPWriteMemory((long)address, (void *)data, (int)length); -> memoryEngine->CGPWriteMemory((void*)address, (void*)data, (int)length); (Now, CGP will take void* ptrs for the address instead of long).

-> Overall compiler optimizations.

Full Changelog: 1.3...1.4

Titanox 1.3

25 Nov 15:47
5263f3a
Compare
Choose a tag to compare

-> NEW
-> Added Breakpoint hooks from ellekit. (arm64)

Titanox 1.2

24 Nov 14:49
ad00c21
Compare
Choose a tag to compare

-> remade libhooker-jailed.
-> Now leverages Mach APIs (vm_read, vm_write, vm_protect) for function hooking by offset.
-> Inline hook
-> writes instructions directly via said Mach APIs

titanox-release-1.1

06 Sep 10:57
3e141b4
Compare
Choose a tag to compare
  • Re-implemented libhooker->libhooker-jailed for jailed IOS devices, supporting both arm64 and x86_64.

  • Added LHHookFunction & LHUnhookFunction from libhooker.

  • Added trampoline hooking.

  • Overall optimizations in libtitanox/main.mm & LH_jailed/libhooker-jailed.mm

titanox-release-1.0

05 Sep 15:38
2ee96ca
Compare
Choose a tag to compare
  • First release build.
  • uses fishhook for symbol rebindings and CGuardProbe as a memory management toolset.