stealthlib

Header-only C++20 Windows hardening utilities: compile-time string obfuscation, PEB-based API resolution, secure memory helpers. (by rolanfreeman6-png)

Stealthlib Alternatives

Similar projects and alternatives to stealthlib based on common topics and language

  1. icpp

    Running C++ in anywhere like a script.

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. PicoSHA2

    a header-file-only, SHA256 hash generator in C++

  4. entt

    82 stealthlib VS entt

    Gaming meets modern C++ - a fast and reliable entity component system (ECS) and much more

  5. doctest

    The fastest feature-rich C++11/14/17/20/23 single-header testing framework

  6. proxy

    Discontinued Proxy: Next Generation Polymorphism in C++

  7. tomlplusplus

    Header-only TOML config file parser and serializer for C++17.

  8. lazy_importer

    library for importing functions from dlls in a hidden, reverse engineer unfriendly way

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better stealthlib alternative or higher similarity.

stealthlib discussion

Log in or Post with

stealthlib reviews and mentions

Posts with mentions or reviews of stealthlib. We have used some of these posts to build our list of alternatives and similar projects.
  • How to hide strings in C++ binaries with consteval
    1 project | dev.to | 6 Jul 2026
    cpp auto key = xorstr_("my_api_key"); Problem: constexpr depends on the optimizer. MSVC doesn't fold it — plaintext leaks to .rodata. Also: dangling pointer in xorstr_() macro (returns char* from temporary). StealthLib — consteval (compiler-independent) auto key = S("my_api_key"); consteval forces compile-time evaluation on every compiler. Plaintext is consumed during translation — never emitted. Verified by binary_scan_test on MSVC + GCC + Clang. Differential testing Same strings, same compiler, same platform: StealthLib: 7/7 PASS xorstr: 3/7 FAIL (dangling pointer) What else is inside Hash-based API resolution (no API names in binary) 4-channel anti-debug (PEB + NtQuery + rdtsc + DR registers) IAT/EAT integrity checks VM detection (CPUID + DMI + disk) FIPS-180-4 SHA-256 Per-build key rotation (16 variants) RAII auto re-encrypt guards Quality 6 SAST tools clean: PVS-Studio (0 findings), SonarCloud (A ratings), CodeQL, Coverity (0.17 density), Semgrep, Codacy. 4.5 billion fuzz executions, 0 crashes. 40 mutation tests, 100% killed. 94.6% coverage. GitHub https://github.com/rolanfreeman6-png/stealthlib

Stats

Basic stealthlib repo stats
1
1
9.3
13 days ago

rolanfreeman6-png/stealthlib is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of stealthlib is C++.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that C++ is
the 7th most popular programming language
based on number of references?