Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rem01gaming/py-deobfuscate-freecodingtools
Deobfuscate python script obfuscation by freecodingtools.org
https://github.com/rem01gaming/py-deobfuscate-freecodingtools
Last synced: 1 day ago
JSON representation
Deobfuscate python script obfuscation by freecodingtools.org
- Host: GitHub
- URL: https://github.com/rem01gaming/py-deobfuscate-freecodingtools
- Owner: Rem01Gaming
- License: gpl-3.0
- Created: 2024-08-02T13:10:49.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-11T01:44:35.000Z (2 months ago)
- Last Synced: 2024-09-11T06:44:07.039Z (2 months ago)
- Language: Python
- Size: 665 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**notes:** I'm not responsible for any short of loss due to this script. it's your fault for choosing this solution for obfuscating your script. have a nice day.
# What is this?
![freecodingtools.org obfuscated script sample](./.assets/sample.png)
A shell script for deobfuscate obfuscated python script by [freecodingtools.org](https://freecodingtools.org/py-obfuscator). even the website says _'this method makes it difficult for hackers to gain access to your sensitive source code. This Python obfuscator is highly advanced, using multi-layer obfuscation to make it effectively impossible to recover the original source code.'_, a random 15yo just casually cracked this open like it was nothing.## How this work?
```yaml
1. Replace 'exec' to 'print`
2. Run the script like usual but append to temp file
3. Grep encrypted script chunk from temp file
4. Compiles the decryption script with the script chunk
5. Loop from step 2 until there's no string 'exec' on temp file
```## Installation and Usage
```shell
# Install dependencies
apt update -y && apt upgrade -y
apt install python2 && apt install python3# Deobfuscate
bash py-deobfuscate.sh example.py
or
python3 py-deobfuscate.py example.py
```## Oh no, i used this web for obfs my secret script ðŸ˜
**You're done, anyone now can see what's actually inside your script, have a nice day 🧋**