Search results for query: *

  1. Android Mod IDE - Testing phase 3 v0.9 RC1

    What are you using for dotnet disassembler? ildasm? dnlib?
  2. Android Mod IDE - Testing phase 3 v0.9 RC1

    well. I dont have any Windows box atm.
  3. Android Mod IDE - Testing phase 3 v0.9 RC1

    Well, i need to test this on Non windows platform.
  4. Android Mod IDE - Testing phase 3 v0.9 RC1

    I demand the precompiled jar for 0.4.
  5. Need some input about getting in over my head lol

    eya, will you release it on public domain?
  6. Bypassing PIE check (enables gdb) for Android 5.0+

    Well, have fun build it. (y)
  7. Bypassing PIE check (enables gdb) for Android 5.0+

    Nope, i know the whole reason whats PIE etc, but the reason isnt related to it. 5.0+ should just use gdb from termux and older android could use gdb from Dan's. I've tried some hacky build for support 4.x and it really sucks, Why bother to force termux to useable on <5.0? thats the reason. You...
  8. Bypassing PIE check (enables gdb) for Android 5.0+

    idk what you mean. But termux has a package manager system which android didnt has it out of the box. There's no downside even if you have it installed anyway. It has many package to play with soo.. termux-packages/packages at master · termux/termux-packages · GitHub
  9. Bypassing PIE check (enables gdb) for Android 5.0+

    should've moved to use termux. Its more suitable for 5.0+
  10. Emulator for modding

    Android SDK has builtin emulator, development kit standard should be enough used for debugging purpose. Or just bake a custom rom from android-x86 project, thats what i'm doing anyway.
  11. Script load error, help to find fix

    Said someone who doesnt know git checkout and what is replace.
  12. Script load error, help to find fix

    Well, now i wont bother to spoonfed to a guy pour some salt to me in the first place. My advice is that you need to read and know what the text means before complain.
  13. Script load error, help to find fix

    I thought you'll know what to do. Since you've said "i tried everything". No, i'm not spoonfeeding to a not a noob guy. This looks like a troll to me.
  14. Script load error, help to find fix

    bleh, thats not even "I've tried everything". You'll need git installed and use terminal/cmd for that.
  15. Script load error, help to find fix

    Can you do a git checkout? o_O
  16. Script load error, help to find fix

    Have you tried to replace ida_idp with idaapi? Thats fix the problem. I dont know why you said have tried all of it but it doesnt work. Coz all of the solution given in that link is working fine. ¯\_(ツ)_/¯
  17. Trace functions flow

    Theres a feature called xref in IDA. You can trace function call with it. Or call graph.
  18. Unbundle/Unpack unity dll's

    Basically what everyone like for editing dll is that you dont really need to worry about how much bytes or instruction can be replaced. Binary patch to libso, you need to careful for how much bytes patched. So, by hooking to orig function you dont really need to worry how much bytes is patched.
  19. Unbundle/Unpack unity dll's

    GitHub - circleous/Liberation-android: A runtime patching library for Android. Here's my shitty project for runtime patch. Based on Liberation iOS. Hooking in arm can be done by set pc to the function address.
  20. Unbundle/Unpack unity dll's

    Not that i know. But you can get function offset from il2cpp dumper and hook to that function if you really need freedom of editing, not byte-by-byte patching.
Back
Top Bottom