WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

sv cheats bypass [css!]

reverseverse

Newbie
Newbie

reverseverse

Newbie
Newbie
Status
Offline
Joined
Jun 13, 2019
Messages
2
Reaction score
3
idk cuz bored and mb someone need this
and i didn't find css section... (sorry for my english i russian btw)
tested on old css
if you want port this to new css you need update offsets and use VirtualProtectEx
and yes you can add some checks...
C++:
DWORD pID = 0;
DWORD Enginemodule = GetModuleBase("engine.dll", pID);
DWORD Clientmodule = GetModuleBase("client.dll", pID);

DWORD GetModuleBase(LPSTR lpModuleName, DWORD dwProcessId)
{
    MODULEENTRY32 lpModuleEntry = { 0 };
    HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwProcessId);
    if (!hSnapShot)    return NULL;
    lpModuleEntry.dwSize = sizeof(lpModuleEntry);
    BOOL bModule = Module32First(hSnapShot, &lpModuleEntry);
    while (bModule)
    {
        if (!strcmp(lpModuleEntry.szModule, lpModuleName))
        {
            CloseHandle(hSnapShot);
            return (DWORD)lpModuleEntry.modBaseAddr;
        }
        bModule = Module32Next(hSnapShot, &lpModuleEntry);
    }   
    CloseHandle(hSnapShot);
    return NULL;
}   
int main()
{
   HWND hwnd = FindWindowA(0, "Counter-Strike Source");
   GetWindowThreadProcessId(hwnd, &pID);
   HANDLE hProc = OpenProcess(PROCESS_ALL_ACCESS, 0, pID);
   int sv_cheats = 0x51F774 + Enginemodule;
   int value = 1;
   WriteProcessMemory(hProc, (LPVOID)sv_cheats, &value, 4, 0);
   return 0;
}
 

root

Newbie
Newbie

root

Newbie
Newbie
Status
Offline
Joined
Jun 5, 2019
Messages
1
Reaction score
0
easy VAC :)
Code:
DWORD dwProtect;
VirtualProtectEx(hProc, (LPVOID)sv_cheats, sizeof(int), PAGE_EXECUTE_READWRITE, &dwProtect);
WriteProcessMemory(hProc, (LPVOID)sv_cheats, &value, sizeof(int), NULL);
VirtualProtectEx(hProc, (LPVOID)sv_cheats, sizeof(int), dwProtect, NULL);
 
Top