├── Pipfile ├── Pipfile.lock ├── README.md ├── dorks.txt ├── error.log ├── main.py ├── modules ├── __init__.py ├── banner.py ├── executor.py ├── file_module.py └── request_module.py ├── output.log ├── poc.png ├── requirements.txt └── tenor.gif /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/README.md -------------------------------------------------------------------------------- /dorks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/dorks.txt -------------------------------------------------------------------------------- /error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/main.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | pass -------------------------------------------------------------------------------- /modules/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/modules/banner.py -------------------------------------------------------------------------------- /modules/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/modules/executor.py -------------------------------------------------------------------------------- /modules/file_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/modules/file_module.py -------------------------------------------------------------------------------- /modules/request_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/modules/request_module.py -------------------------------------------------------------------------------- /output.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/poc.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/requirements.txt -------------------------------------------------------------------------------- /tenor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incogbyte/laravel-phpunit-rce-masscaner/HEAD/tenor.gif --------------------------------------------------------------------------------