![]() |
|
obfuscate - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Coding (https://sinister.ly/Forum-Coding--71) +--- Thread: obfuscate (/Thread-obfuscate) |
obfuscate - phoyt123 - 09-09-2017 how to make a good obfuscate/usg , when i made mine it will be like jlsfgsdg.FvlgdusgOL(char 1 + char 2); or something like that anyone know how to make it better it has method/var renamer string/variable encryption namespace obuscation whats control flow and how do i make it better? RE: obfuscate - phyrrus9 - 09-09-2017 Obfuscation applied to static strings and code obfuscators are completely different. To do this with code, you're going to want to do a lot more than just changing the names of things, you want to make the actual assembly code unreadable. Start pulling instructions off of the stack, then have it so you do some math operation to each instruction in a series that you want to execute. |