Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ Examples:
obfuscator hehe.exe -map mymap.map -pdb mypdb.pdb -f main -t TransformName -v SomeName 1337 -v SomeName0 1337 -g TransformName -v SomeGlobalName 1337
```

In case of unexpected exit without any error message or in case you feel lucky, try adjusting the chances. E.g.:
```commandline
obfuscator hehe.exe -pdb hehe.pdb -f main -t ConstantCrypt -v chance 55
```

## Writeup
- [https://blog.es3n1n.eu/posts/obfuscator-pt-1](https://blog.es3n1n.eu/posts/obfuscator-pt-1)

Expand Down
2 changes: 1 addition & 1 deletion src/lib/obfuscator/transforms/configs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ namespace obfuscator {
std::uint8_t repeat_times_ = repeat_times_default_;

/// \brief Transform run chance in percents
std::uint8_t chance_default_ = 30; // (from 0 to 100)%
std::uint8_t chance_default_ = 100; // (from 0 to 100)%
std::uint8_t chance_ = chance_default_;
};

Expand Down