Skip to content

PiggyAwesome/int-obfuscator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

int-obfuscator

Obfuscate your python code into a string of integers. De-obfuscate also supported.

How it works:

Each printable character gets replaced with it's own uniqe two-character interger.

To deofbuscate, the intergers is splitted by every second character, then replaces it with it's corosponding value

WARNING: Pipe (|) is not supported for obfuscation!

Returns ValueError when pipe is used.

ValueError: Invalid character: "|"

Obfuscate:

>>> import int_obfuscate as ob
>>> ob.obfuscate("print(\"Hello, World\")")
252718232969634314212124739458242721136370

Deobfuscate:

>>> import int_obfuscate as ob
>>> ob.decode(252718232969634314212124739458242721136370)
print("Hello, World")

Have fun sending secret messages to your friends, or ratting pcs with intergers!

Update: Due to some issues I had with the FBI, I have to tell you guys to not use this to rat someone's PC. Someone did it on youtube.com/ and got me in trouble after the FBI watched it. Bruh? The poster of the video" = Very Sussy. I did not Quite mean it that way. It's ok, you can be 100% sure 4ever that, that is what I want to say and that its really me saying this. N9t the FBI forcing me to do this With a gun pointed to my head. XD Ok cya later sQuad!

About

Obfuscate your python code into a string of integers. De-obfuscate also supported.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages