Jump to content

XEKEX

Contributor
  • Posts

    255
  • Joined

  • Last visited

  • Days Won

    13

XEKEX last won the day on November 28 2023

XEKEX had the most liked content!

Additional Information

  • Android
    13.x
  • Device
    SM-A25
  • Service provider
    Other

Profile Fields

  • Discord ID
    seinokami#9992

Recent Profile Visitors

22,134 profile views

XEKEX's Achievements

  1. it depends on the emulator u are using try to redownload the x86 version of it, keep in mind that the memory from emulator and android not the same ( emulator most data on OTHER and on mobile ANON ) download the x86 version of the emulator that's it
  2. you forget to put ~A8 FMOV D16, X0 befor the last line
  3. it depends on the emulator u are using try to redownload the x86 version of it, keep in mind that the memory from emulator and android not the same ( emulator most data on OTHER and on mobile ANON )
  4. likes and comments won't add anything to your accomplishments that's my thoughts we doing it for comunity and you gain experience from it that's it
  5. @g1doz this is double xor encryption here is a video for it :
  6. @Rxhacker No you can't create thread using GG the only solution is by trampoline hooks, explaination : all games and apps are compiled and there is a linkage between it's functions(methods) and calls. read more it's either you jmp or pointer replace -> if the addCoins(int coins) is an actual method within the lib you can alloc mem with gg set up R1 (<- R1 not R0 bc R0 is the caller address / class field ) then call the original addCoins using BL ( or other branch instructions ) finally sweap the field pointer to the new allocmem this method is helpful if you have a global method like dmg or range ( changing it cause the enemy to have the same hack as u )
  7. void methods are bascally for k,v in pairs(Dictionary[some index]) do -- logic here end
  8. XEKEX

    pointer search bug

    local results = gg.getResults(gg.getResultsCount()) gg.setRanges(gg.REGION_ANONYMOUS) gg.searchPointer(0) local results_pointers = gg.getResults(gg.getResultsCount()) -- this will have the all the pointers of all the searched values. --[[ Note: gg.searchPointer() mixed searchPointer ( int maxOffset, long memoryFrom = 0, long memoryTo = -1, long limit = 0 ) Searches for values that may be pointers to elements of the current search result. Parameters maxOffset Maximum offset for pointers. Valid values: 0 - 65535. memoryFrom Start memory address for the search. memoryTo End memory address for the search. limit Stopping the search after finding the specified number of results. 0 means to search all results. **Returns** true or string with error. Examples: gg.searchNumber('10', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 5) -- search some values gg.searchPointer(512) -- search for possible pointers to values finded before gg.searchNumber('10', gg.TYPE_DWORD) -- search some values gg.loadResults(gg.getResults(5)) gg.searchPointer(512) -- search for possible pointers to values loaded before local t = {} t[1] = {} t[1].address = 0x18004030 -- some desired address t[1].flags = gg.TYPE_DWORD t[2] = {} t[2].address = 0x18004040 -- another desired address t[2].flags = gg.TYPE_BYTE gg.loadResults(t) gg.searchPointer(512) -- search for possible pointers to values loaded before
  9. it must be sending data using sockets instead of normal http requests. try to search for a function that kick players out ( pointer to it ) then call it with it's parameters or edit the parameters upon calling it
  10. XEKEX

    how to use offsets

    offset in a simple term is the distance between two addesses instead of meters we use hex
  11. This post cannot be displayed because it is in a forum which requires at least 1 post to view.
  12. This post cannot be displayed because it is in a forum which requires at least 1 post to view.
  13. This post cannot be displayed because it is in a forum which requires at least 1 post to view.
  14. This post cannot be displayed because it is in a forum which requires at least 1 post to view.
  15. try this instructions (both are the same ) ~A8 MOV W0, #0x3333, LSL #16 ~A8 MOVK W0, #0x4083, LSL #32 ~A8 FMOV S0, W0 ~A8 RET
×
×
  • 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.