python-obfuscator
python-obfuscator copied to clipboard
I got tired of writing good code so I made good code to make bad code
You should use other obfuscation methods, because your code can be deobfuscated in not even 5 seconds by a beginner. Check Hyperion to make your obfuscator better.
Hi, thanks for making this available. I found that some built-in methods for type conversion will be changed during the conversion. for example: > self.fps = int(25) is changed to:...
I am trying to obfuscate a very simple file like the following: ``` from file1 import f1 from file2 import f2 if __name__ == "__main__": f1() f2() print("f3") ``` The...
i need to deobf or get old code. pls
how deorbfuscate
Is there a will to implement the obfuscation at package level ? I noticed that obfuscating file by file in a package using `pyobfuscate` command doesn't change variable names of...
I added a feature that renames functions just like how renaming variables works I also removed the newlines created by the variables_renamer and stopped it from being able to generate...
e.g.: name = 'my name is evil' will be like: XXX = 'my XXX is evil'
You could put the functions into dictionaries, small example: ```py def foo(bar): print(bar) func_dict = { 'foo': foo } func_dict['foo']('Hello world') ```
 I know that part of my code, I'm pretty sure thats "flush = True"