Projects STRLCPY obfus.h Commits 027b8cb6
🤬
  • hide_antidebug -> antidebug_v2

  • Loading...
  • DosX committed 1 month ago
    027b8cb6
    1 parent b126f801
  • ■ ■ ■ ■ ■ ■
    README.md
    skipped 17 lines
    18 18  > Available options for protection configuring:
    19 19  > ```c
    20 20  > // Additional options
    21  -> #define cflow_v2 1 // more powerful Control Flow obfuscation (slowly!)
    22  -> #define hide_antidebug 1 // Use dynamic calls to hide antidebugger
     21 +> #define cflow_v2 1 // More powerful Control Flow obfuscation (slowly!)
     22 +> #define antidebug_v2 1 // Use better dynamic anti-debugging protection
    23 23  >
    24 24  > // Disabling default features
    25 25  > #define no_cflow 1 // Don't use Control-Flow obfuscation
    skipped 37 lines
  • ■ ■ ■ ■ ■ ■
    include/obfus.h
    skipped 2 lines
    3 3  //
    4 4  // [Additional options]
    5 5  // cflow_v2 = more powerful Control Flow obfuscation (slowly!)
    6  -// hide_antidebug = use dynamic calls to hide antidebugger
     6 +// antidebug_v2 = use better dynamic anti-debugging protection
    7 7  //
    8 8  // [Disabling default features]
    9 9  // no_cflow = disable control flow obfuscation
    skipped 350 lines
    360 360   BREAK_STACK_1;
    361 361   NOP_FLOOD;
    362 362   BREAK_STACK_2;
    363  -#if !defined(hide_antidebug) && hide_antidebug != 1
     363 +#if !defined(antidebug_v2) && antidebug_v2 != 1
    364 364   
    365 365   // Standart antidebugger
    366 366   NOP_FLOOD;
    skipped 555 lines
Please wait...
Page is in error, reload to recover