Jump to content

Enyby

Administrators
  • Posts

    8,811
  • Joined

  • Last visited

  • Days Won

    1,020

Everything posted by Enyby

  1. I show screenshot above. English.
  2. Second link redirect me to first.
  3. Both link is same. I think they use ip for show different version of website. [added 0 minutes later] Try upload apk here.
  4. "apk coming soon". [added 0 minutes later]
  5. Gathering information about GG errors (#9ggo57t)
  6. If you good in code, you can see code of chainer and use some of it.
  7. 1. Usually, yes. 2. Try and error, method.
  8. Read help about the floating icon.
  9. Your solution can give side effect: open menu after that, like user click on gg icon. You need hide gg ui after prompt, for prevent that. [added 2 minutes later] gg.setVisible(true) -- call gg.prompt() here gg.setVisible(false) Something like that.
  10. I think he doesn't need a lawyer to speak for him. And what he wants, he stated quite clearly.
  11. I pointed out to you the essence of the problem: you hide the interface first and then show the dialogs. Therefore, there are no eye icons. How you will eliminate it is your business.
  12. The log is empty. In any case, one log is not enough, it is necessary to clearly describe the essence of the problem with the text.
  13. You need swap order of you code and hide GG UI. Because you firstly hide GG UI and second do your work. Obviously your gg.prompt work when GG UI hide.
  14. Eye icon only visible while GG UI visible. If you hide GG UI, then no eye icon.
  15. Enyby

    Decrypt values

    1.545.691.265 xor 0 = 1545691265 1.545.691.300 xor 37 = 1545691265 1.545.691.494 xor 487 = 1545691265 so it is simple xor with key = 1545691265
  16. For example it call: dex2oat --instruction-set=arm --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art -j4 --instruction-set-features=default --dex-file=/data/data/com.app.hider.master.pro/gaia/data/app/com.musselwhizzle.tapcounter/base.apk --oat-file=/data/data/com.app.hider.master.pro/gaia/data/app/com.musselwhizzle.tapcounter/oat/arm/base.odex --compiler-filter=speed But it must be: dex2oat --instruction-set=x86 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art -j4 --instruction-set-features=default --dex-file=/data/data/com.app.hider.master.pro/gaia/data/app/com.musselwhizzle.tapcounter/base.apk --oat-file=/data/data/com.app.hider.master.pro/gaia/data/app/com.musselwhizzle.tapcounter/oat/x86/base.odex --compiler-filter=speed
  17. Bug from developers of virtual space. They are trying to use a set of instructions arm on the emulator, to generate odex. And there it does not work. Write to their technical support. I can't help you here.
  18. GG memory map can not open. There is no right or something. And to guess what memory is allocated from 4 GB possible is a little real. And if the system is 64 bit, there will be some more possible memory there.
  19. To use these features, you need to be constantly connected to the process. then there cause a stop in the right place. Through a software or hardware breakpoint. And then watch the registers. There is another option with step by step run. This is how gdb works. GG does not constantly trace the process. GG connected, searched and disconnected. And that's all. Therefore, it cannot be a breakpoint debugger. And you can now write trampolines, through scripts, as you described it. And when gg ptrace process it is stop on random location so get registers is usually useless. If you try throw trap without ptrace process - it will be killed by system in most cases. If GG try ptrace all time process game can easly detect it. Also it is slow down game and have some other side effects. Also GG memory editor, not debugger. It is connect to random thread of execution. You trap can never be catched if you place it in wrong place. For example you trace thread1, but trap happens in thread2. You need handle all threads or procces died with uncatched trap. Handle all threads it is not easy. And so on. It is only few exists problem. Use gdb, where such problems already solved.
  20. It seems that you do not understand what these functions do. They get or set the processor registers in the current state. They can not work "in some memory address." [added 4 minutes later] It is exact how to work soft breakpoint in gdb. Except some detail. Gdb place trap instruction, you place trampoline. In any case I do not interested write another gdb. Use own scripts like this, or use gdb.
  21. I do not understand what happens here. Describe in detail.
  22. Enyby

    GameGuardian

    this is a problem in firmware/Android 9.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.