https://github.com/cvar1984/eval-logger
PHP Extension to deobfuscate webshell
https://github.com/cvar1984/eval-logger
deobfuscation hacktoberfest php webshell
Last synced: about 1 year ago
JSON representation
PHP Extension to deobfuscate webshell
- Host: GitHub
- URL: https://github.com/cvar1984/eval-logger
- Owner: Cvar1984
- License: gpl-3.0
- Created: 2025-06-13T10:58:15.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-13T11:16:22.000Z (about 1 year ago)
- Last Synced: 2025-06-13T12:25:17.827Z (about 1 year ago)
- Topics: deobfuscation, hacktoberfest, php, webshell
- Language: C
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eval-logger
this is a tool to deobfuscate php script who use eval in the technique, it return original string from the eval, so no matter how much you use eval, it will useless
# Install
```sh
sudo dnf install php-devel php-pear gcc make autoconf
phpize
./configure --enable-eval_logger
make
```
# Test
```sh
php -d extension=/home/user/eval-logger/modules/eval_logger.so ~/Downloads/webshell.php
cat eval_log.txt
```
for php7 use [evalhook](https://github.com/Cvar1984/evalhook) instead