https://github.com/rem01gaming/deval
Decrypt eval encrypted shell script
https://github.com/rem01gaming/deval
decryption encryption eval obfuscation shell-script
Last synced: 6 months ago
JSON representation
Decrypt eval encrypted shell script
- Host: GitHub
- URL: https://github.com/rem01gaming/deval
- Owner: Rem01Gaming
- License: gpl-3.0
- Created: 2024-02-20T14:17:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-12T05:43:38.000Z (almost 2 years ago)
- Last Synced: 2024-11-17T08:11:39.024Z (over 1 year ago)
- Topics: decryption, encryption, eval, obfuscation, shell-script
- Language: Shell
- Homepage:
- Size: 17.6 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deval (De-eval)
A simple shell script for decrypt eval encrypted shell script
> [!IMPORTANT]
> If you're using Android (with Termux), We recommend you to run it via shell instead of treating it as an executable because of system hiearchy problem.
```bash
Usage: ./deval.sh
```
Example: `./deval.sh ./encrypted`
Output: `./encrypted.dec.sh`
Multiple files are supported
## How this script working?
Fetch the encrypted shell script and replace any `eval` command to `echo`, then execute it as shell script. the output still unreadable at this point, execute the output as shell script and you get the readable script.
## Something about `eval` command
You should **NEVER** use any obfuscator tools that using eval for your project and if you do that, **you basically open source'ing your project NOW.**