obfuscator
1.0.0
用 c++23 编写的本机代码混淆器。
Available options:
-h, --help -- This message
-pdb [path] -- Set custom .pdb file location
-map [path] -- Set custom .map file location
-f [name] -- Start new function configuration
-t [name] -- Start new transform configuration
-g [name] -- Start new transform global configuration
-v [name] [value] -- Push value
Examples:
obfuscator hehe.exe -f main -t TransformName -v SomeName 1337
obfuscator hehe.exe -f main -t TransformName -v SomeName 1337 -g TransformName -v SomeGlobalName 1337
obfuscator hehe.exe -f main -t TransformName -v SomeName 1337 -v SomeName0 1337 -g TransformName -v SomeGlobalName 1337
obfuscator hehe.exe -map mymap.map -pdb mypdb.pdb -f main -t TransformName -v SomeName 1337 -v SomeName0 1337 -g TransformName -v SomeGlobalName 1337
该项目设计用于 Linux 和 Windows 以及任何体系结构。尽管您可能需要将编译器/libc++ 更新到最新版本,因为我们正在使用一些奇特的 C++23 功能。
cmake -B build -DOBFUSCATOR_BUILD_TESTS=0
cmake --build build --config Release
如果您在 Windows 上使用 Visual Studio,则可以使用第一个命令生成 sln 项目,并使用生成的 .sln 文件构建项目。
我们非常感谢您所做的任何贡献。
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)在报告任何可能与代码生成相关的错误之前,请确保附加混淆器使用的随机种子。您可以从混淆器日志中获取此种子;它作为第一条消息打印出来,如下所示:
12:11:30.150 | [ info ] random: seed is 0xcb91ccbef7cbcdc1
GPL-3.0