Jawbreaker is a Python obfuscator written in Python3, using double encoding in
base16, base32, base64, HTTP requests and a Hastebin-like API made and hosted by me on Pagekite.
+ Good obfuscation, skids won't be able to see your code
+ Very fast execution
+ File size will always be 49kb, no matter your code's length
- Using a third-party HTTP server (hosted by me)
- Using HTTP requests
- When the HTTP server is restarted all the data will be deleted from the service
- Sometimes the API is down. Check his availability here (it should redirect you on this repo)
- The API is sometimes slow, since I have really bad internet
Feel free to make a pull request on this repository to submit any idea!
- Use random order encoding, like
base16(base32(base64("hello world")))
->base32(base64(base16("hello world")))
- Host the HTTP server on a VPS/Raspberry PI
- Please use this program only for educational purposes.
- It is not meant to be used in any malicious way, and I decline any responsibility for what you do with it.
billythegoat356