ADVobfuscator icon indicating copy to clipboard operation
ADVobfuscator copied to clipboard

Obfuscation library based on C++11/14 and metaprogramming

Results 5 ADVobfuscator issues
Sort by recently updated
recently updated
newest added

This is just an idea/suggestion. Conan is a package manager for C/C++ projects, could ADVobfuscator be added to that package manager? As it would allow for easier integration with C/C++...

Using MetaString, compile with VS 2017 ver 15.7.1, disassemble and you'll find **_constexpr_** not working as supposed. As a result, the strings are obfuscated at runtime. For some unknown reason,...

this code: `int main() { bool res = OBFUSCATED_CALL_RET(BOOL,IsDebuggerPresent); printf("%d\n" , res); return 0; }` will be translate with msvc2015 x86 to: (using ida) ` lea eax, [ebp+var_C] mov large...

I am working on a new version of ADVobfuscator. A complete rewrite based on C++ 20. It will support obfuscation of string like the existing version but will permit to...

While playing with `ObfuscatedCalls` and `DetectDebugger`, I noticed a bug with the macro for returning the result of the function with a predicate. In ObfuscatedCallWithPredicate.h, these lines: ``` #define OBFUSCATED_CALL_RET_P0(R,...