Projects STRLCPY obfus.h Commits ff58f58e
🤬
  • Fake signatures option added!

  • Loading...
  • DosX committed 1 month ago
    ff58f58e
    1 parent 2dcdc0e3
  • ■ ■ ■ ■ ■
    README.md
    skipped 19 lines
    20 20  > // Additional options
    21 21  > #define cflow_v2 1 // More powerful Control Flow obfuscation (slowly!)
    22 22  > #define antidebug_v2 1 // Use better dynamic anti-debugging protection
     23 +> #define fake_signs 1 // Adds fake signatures of various protectors or packers
    23 24  >
    24 25  > // Disabling default features
    25 26  > #define no_cflow 1 // Don't use Control-Flow obfuscation
    skipped 2 lines
    28 29  > or use it with compiler args:
    29 30  >
    30 31  > ```
    31  -> tcc "app.c" -w -D no_cflow -D antidebug_v2
     32 +> tcc "app.c" -w -D no_cflow -D antidebug_v2 -D fake_signs
    32 33  > ```
    33 34   
    34 35  ⚠️ When compiling an application with obfuscation, use the `-w` argument to suppress warnings. Otherwise, the console will display numerous intimidating logs that have no impact on the final result. There's no need to be alarmed by them.
    skipped 7 lines
    42 43  // #define no_cflow 1
    43 44  // #define no_antidebug 1
    44 45  #define antidebug_v2 1
     46 +#define fake_signs 1
    45 47  #include "obfus.h"
    46 48   
    47 49  void main() {
    skipped 16 lines
Please wait...
Page is in error, reload to recover