• Clicker Heroes v1.0e12-5327 Steam +7

    Таблицы
    1
    1 Голоса
    1 Сообщения
    127 Просмотры
    Нет ответов
  • Нужно автоматизировать один процесс в игре

    Платные запросы
    1
    0 Голоса
    1 Сообщения
    160 Просмотры
    Нет ответов
  • pazzles and chaos

    Взлом игр (средний уровень и выше)
    2
    0 Голоса
    2 Сообщения
    206 Просмотры
    DieVisD

    @Сказка Где именно?
    ВКонтакте
    Google Play
    App Store
    В следующий раз указывайте где именно брать подопытного.

  • C++ Internal DLL Hack // Pattern Scanner

    Взлом игр (начинающим)
    3
    0 Голоса
    3 Сообщения
    567 Просмотры
    R

    @BiNooos

    C++ Code to Find an Address by Signature
    This code includes:

    A function to compare bytes against a signature and mask.
    A function to iterate over the memory of the module and find the pattern.
    cpp
    Copy code
    #include <Windows.h>
    #include <Psapi.h>
    #include <iostream>

    // Function to compare memory bytes with the pattern and mask
    bool CompareBytes(const BYTE* data, const BYTE* pattern, const char* mask) {
    for (; *mask; ++mask, ++data, ++pattern) {
    if (*mask == 'x' && *data != *pattern) {
    return false; // Byte mismatch
    }
    }
    return (*mask == 0); // Pattern fully matched
    }

    // Function to find the pattern in the memory of the module
    DWORD64 FindSignature(HMODULE hModule, const BYTE* pattern, const char* mask) {
    MODULEINFO moduleInfo = { 0 };
    GetModuleInformation(GetCurrentProcess(), hModule, &moduleInfo, sizeof(MODULEINFO));

    DWORD64 baseAddress = (DWORD64)moduleInfo.lpBaseOfDll; // Base address of the module DWORD64 moduleSize = (DWORD64)moduleInfo.SizeOfImage; // Size of the module BYTE* moduleBytes = (BYTE*)baseAddress; for (DWORD64 i = 0; i < moduleSize; i++) { if (CompareBytes(moduleBytes + i, pattern, mask)) { return (DWORD64)(moduleBytes + i); // Return address if pattern found } } return 0; // Pattern not found

    }

    // Example usage of the pattern scanner
    int main() {
    // Example signature (byte pattern) and mask
    const BYTE pattern[] = { 0x89, 0x45, 0xFC, 0x48, 0x89 };
    const char* mask = "xxxxx"; // 'x' indicates exact match; '?' indicates any byte

    // Replace with the target module handle (e.g., "example.exe" or a DLL) HMODULE hModule = GetModuleHandleA("example.dll"); if (hModule == NULL) { std::cerr << "Module not found!" << std::endl; return -1; } // Find the address of the pattern in the module DWORD64 foundAddress = FindSignature(hModule, pattern, mask); if (foundAddress != 0) { std::cout << "Pattern found at address: 0x" << std::hex << foundAddress << std::endl; } else { std::cout << "Pattern not found!" << std::endl; } return 0;

    }
    Explanation:
    CompareBytes():

    This function checks whether the bytes in memory match the pattern provided. The mask string is used to define how strictly each byte should match. An 'x' in the mask indicates that the corresponding byte should match exactly, while a '?' allows for any byte to be considered valid in that position.
    FindSignature():

    This function scans through the memory of the module (hModule), comparing each section of memory against the provided pattern and mask. If it finds a match, it returns the address where the pattern starts.
    Usage:

    In the main() function, we search for a simple example byte pattern ({ 0x89, 0x45, 0xFC, 0x48, 0x89 }) in a module (example.dll). The mask xxxxx indicates that all bytes in the pattern must match exactly.
    Replace "example.dll" with the actual module you want to scan (e.g., the target process or DLL you're interested in).
    Notes:
    GetModuleHandleA() is used to obtain the handle of the module (DLL or EXE). If you're scanning an external process, you will need to obtain the module handle from the target process using methods like EnumProcessModules() or CreateToolhelp32Snapshot().
    You may want to adjust memory protections or handle reading memory from other processes using functions like ReadProcessMemory() if you are working with a process other than your own.

  • Pocket Rogues 1 убийство = +1 лвл

    Взлом игр (начинающим)
    13
    0 Голоса
    13 Сообщения
    517 Просмотры
    G

    @CoinsDMG Замечательно.:+1:

  • Вылетает игра

    Взлом игр (вопросы и ответы)
    1
    0 Голоса
    1 Сообщения
    229 Просмотры
    Нет ответов
  • Textorcist взлом для импорта сохранений

    Взлом игр (начинающим)
    7
    0 Голоса
    7 Сообщения
    384 Просмотры
    StoneWeaverS

    Пользователь @magrega написал в Textorcist взлом для импорта сохранений:

    Запилил гайд в стиме, тебя упомянул @StoneWeaver, если вдруг интересно
    Гайд

    Прикольный гайд и спасибо, что упомянул )) Но я бы копнул дальше, и пореверсил бы игру, чтобы понять, как кодируется и декодируется этот айдишник. Возможно, на досуге так и сделаю ))

  • Hollow Knight скорость персонажа

    Взлом игр (начинающим)
    10
    0 Голоса
    10 Сообщения
    456 Просмотры
    Partizan1078P

    @quane Ищите fall speed

  • AutoForge v0.3.0 +5

    Общий
    2
    3 Голоса
    2 Сообщения
    272 Просмотры
    StoneWeaverS

    @DieVis дал тебе права на заливку файлов в раздел файлы - таблицы. Если есть возможность, перезалей свои таблички в тот раздел, пожалуйста.

  • Сделать так, чтобы Лара стреляла из двух пистолетов в Shadow of the Tomb Raider

    Закрыта Взлом игр (вопросы и ответы)
    7
    0 Голоса
    7 Сообщения
    399 Просмотры
    StoneWeaverS

    @Tomb-Raider Не за что ) Не уверен, что кто-то из ребят заинтересуется, но мало ли, всякое бывает... Тему закрываю тогда

  • Скрытие CE

    Общий
    10
    0 Голоса
    10 Сообщения
    393 Просмотры
    B

    @__fastcall King's_Fall

  • Code Filter крашит игру

    Закрыта Взлом игр (начинающим)
    6
    0 Голоса
    6 Сообщения
    228 Просмотры
    StoneWeaverS

    @Haarfus Да было бы за что )) Тему закрываю, раз вопрос исчерпан.

  • помощь

    Закрыта Обратная связь
    2
    0 Голоса
    2 Сообщения
    5k Просмотры
    StoneWeaverS

    @Beezwax95 Привет! Увы, мы не занимаемся андроид играми, тем более онлайн. Ну и да, эту тему придётся закрыть, так как раздел обратной связи предназначен для обратной связи по работе самого форума.

  • BluestacksX-Heroes at War-cheat request

    Платные запросы
    1
    0 Голоса
    1 Сообщения
    203 Просмотры
    Нет ответов
  • Шифровка

    Взлом игр (начинающим)
    7
    0 Голоса
    7 Сообщения
    459 Просмотры
    G

    @Templar если не изменяет мне память, горячая клавиша не нужна.
    а ну вот, вторая галочка сверху в настройках 11.jpg

  • [Cheat Engine] Как сделать множитель урона?

    Взлом игр (вопросы и ответы)
    10
    0 Голоса
    10 Сообщения
    1k Просмотры
    HereticH

    @Partizan1078
    Понял, благодарю!
    Постараюсь разобраться, может найду ещё что-нибудь интересное для добавления в таблицу)

  • Взлом Герои 5 повелитель орды по сети

    Платные запросы
    1
    0 Голоса
    1 Сообщения
    137 Просмотры
    Нет ответов
  • Deep Rock Galactic upd 15.06.2024

    Трейнеры
    12
    7 Голоса
    12 Сообщения
    999 Просмотры
    LIRWL

    @voupsy Всё о чем спрашиваете, можете сами проверить, я в онлайны не играю!

  • Таблица для Norland

    Платные запросы
    1
    0 Голоса
    1 Сообщения
    190 Просмотры
    Нет ответов
  • FIFA MANAGER 2014 (24)

    Платные запросы
    1
    0 Голоса
    1 Сообщения
    98 Просмотры
    Нет ответов