Stealthlib Alternatives
Similar projects and alternatives to stealthlib based on common topics and language
-
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
-
-
-
-
-
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
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
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++.