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

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

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