File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/lib/obfuscator/transforms Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ Examples:
2727 obfuscator hehe.exe -map mymap.map -pdb mypdb.pdb -f main -t TransformName -v SomeName 1337 -v SomeName0 1337 -g TransformName -v SomeGlobalName 1337
2828```
2929
30+ In case of unexpected exit without any error message or in case you feel lucky, try adjusting the chances. E.g.:
31+ ``` commandline
32+ obfuscator hehe.exe -pdb hehe.pdb -f main -t ConstantCrypt -v chance 55
33+ ```
34+
3035## Writeup
3136- [ https://blog.es3n1n.eu/posts/obfuscator-pt-1 ] ( https://blog.es3n1n.eu/posts/obfuscator-pt-1 )
3237
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ namespace obfuscator {
117117 std::uint8_t repeat_times_ = repeat_times_default_;
118118
119119 // / \brief Transform run chance in percents
120- std::uint8_t chance_default_ = 30 ; // (from 0 to 100)%
120+ std::uint8_t chance_default_ = 100 ; // (from 0 to 100)%
121121 std::uint8_t chance_ = chance_default_;
122122 };
123123
You can’t perform that action at this time.
0 commit comments