An open API service indexing awesome lists of open source software.

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

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.**