You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a native C++ code obfuscator that scrambles C++ source code to make it very difficult to understand or reverse-engineer, while still keeping the execution and control flow intact.
4
+
5
+
This shall provide significant protection for source code intellectual property, or help in testing behavioral based anti malware engines.
6
+
7
+
##Features
8
+
9
+
1. Strips single/multi line comments
10
+
2. Adding a computational complex junk code snippet, while not affecting the asymptotic complexity of the overall program
11
+
3. Removing leading white-space
12
+
4. Removing line breaks
13
+
5. Handling all preprocessor directives, 'using' declarations and single-line 'else' clauses where the braces have been omitted.
0 commit comments