Welcome to hackvshack.net Forum!
Download Free HvH CS2/CS:GO Cheats, CFG, LUA/JS Scripts, and More!
Register

Recent content by Reev

  1. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    TB is not currenly enabled, it is under work.
  2. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    I advise you to report your issue or add it as suggestion in the discord server so I can review it later.
  3. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    Nice, that's actually the cleaner fix, second VirtualAllocEx region for the shellcode to write the full HMODULE into, then ReadProcessMemory it back. It is more reliable than the Module32First route since you skip the snapshot race and get the exact handle instead of matching by module name. Nice!!
  4. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    I get it, not everyone is going to be a fan of the design, and I’m aware of the flaws you mentioned. Some users have complained about it, but I never gave it much priority since the project is still in Beta. It’s also possible that they’re more familiar with designs like Plague’s, Bank’s, or...
  5. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    First one is indeed a bug, you're right. GetExitCodeThread stores into a DWORD and the LoadLibraryA thread returns HMODULE which is 64bit on x64, so any DLL that loads at an address where the low 32 bits are zero gets reported as a failure even though it injected fine. Real false negative path...
  6. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    Most of what you're flagging is msvc compiler emitted code, not my code. The repeated block with 0x7fffffff / 0x7ffffffe and a non returning helper is a CRT internal sentinel pattern the compiler emits inline at every call site, which is why it shows up +20 times identical, nobody writes the...
  7. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    Decompilation isn't source and I'm sure you know that. Compiled code restructured by ghidra always looks weird, that's not evidence of your claim. Point at a specific function and we can start from there.
  8. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    The small embedded PE is a kernel driver (no longer using it - same excuse too lazy to clean it), bundled so the loader drops and loads it at runtime. The bigger one (~163KB) is bass.dll for radio and yt audio (no longer relying on it). bass uses an ancient toolchain with custom section names so...
  9. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    I had VMProtect on the loader earlier in development and dropped it later, the SDK header stayed in the source so the imports still resolve at link time, but the calls are dead (IsProtected returns false on an unpacked binary, IsValidImageCRC returns true). No actual protection logic running...
  10. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    I appreciate the reports, I’ll add them to my ‘easy to‑do list’ once I finish the things that matter most.
  11. Reev

    Safe Net Kobalt Beta (early Access) | Internal Legit cheat | Updated: 22nd May 2026

    You're mixing up two things that have nothing to do with each other. UI polish and the actual engineering behind a cheat are completely different skillsets. I spend my time on what actually matters for the users and I'm sure you know Kobalt is in BETA. You also dodged what I asked. Show me your...