Projects STRLCPY obfus.h Commits 3e612d1c
🤬
  • ■ ■ ■ ■ ■ ■
    include/obfus.h
    1  -// Obfuscation of C? Why not?
    2  -// Coded by (C) DosX, 2024
    3  -//
    4  -// [Additional options]
    5  -// cflow_v2 = more powerful Control Flow obfuscation (slowly!)
    6  -// antidebug_v2 = use better dynamic anti-debugging protection
    7  -// fake_signs = adds fake signatures of various protectors or packers
    8  -//
    9  -// [Disabling default features]
    10  -// no_cflow = disable control flow obfuscation
    11  -// no_antidebug = disable antidebug protection
    12  -//
    13  -// no_obf = disable obfuscation
    14  -//
    15  -// GitHub:
    16  -// https://github.com/DosX-dev/obfus.h
     1 +/*
     2 + ██████╗ ██████╗ ███████╗██╗ ██╗███████╗ ██╗
     3 + ██╔═══██╗██╔══██╗██╔════╝██║ ██║██╔════╝ ██║
     4 + ██║ ██║██████╔╝█████╗ ██║ ██║███████╗ ███████║
     5 + ██║ ██║██╔══██╗██╔══╝ ██║ ██║╚════██║ ██╔══██║
     6 + ╚██████╔╝██████╔╝██║ ╚██████╔╝███████║ ██╗ ██║ ██║
     7 + ╚═════╝ ╚═════╝ ╚═╝ ╚═════╝ ╚══════╝ ╚═╝ ╚═╝ ╚═╝
     8 + 
     9 + Very reliable armor for your C programs!
     10 + Coded by (C) DosX, 2024
     11 + 
     12 + [Additional options]
     13 + ~ cflow_v2 = more powerful Control Flow obfuscation (slowly!)
     14 + ~ antidebug_v2 = use better dynamic anti-debugging protection
     15 + ~ fake_signs = adds fake signatures of various protectors or packers
     16 + 
     17 + [Disabling default features]
     18 + ~ no_cflow = disable control flow obfuscation
     19 + ~ no_antidebug = disable antidebug protection
     20 + 
     21 + ~ no_obf = disable obfuscation
     22 + 
     23 + GitHub:
     24 + -> https://github.com/DosX-dev/obfus.h
     25 + 
     26 +*/
    17 27   
    18 28  #if !defined(no_obf) && no_obf != 1
    19 29   
    skipped 939 lines
Please wait...
Page is in error, reload to recover