ac3ss0r / obfusheader.h

Obfusheader.h is a portable header file for C++14 compile-time obfuscation.
Apache License 2.0
374 stars 50 forks source link

Fake-Sig help #4

Closed alnicke closed 3 months ago

alnicke commented 3 months ago

can you provide a usage of fake sig?

90th commented 3 months ago

it acts as a decoy.

ac3ss0r commented 3 months ago

can you provide a usage of fake sig?

Whenever you enable it upon compiling fake signatures will be added to the binary automatically. Those signatures are detected by DIE (detect-it-easy) and other popular softwares. This way you can trick reverse-engineers into thinking your binary was protected with multiple big protectors, such as Themida, VMProtect, SecuROM, etc

ac3ss0r commented 3 months ago

Note that in Visual C++ you will need to disable "whole program optimization" for this to work. For g++/clang it will work by default.

image