├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── grep-audit.sh ├── netcat.php ├── ssh-tunnel.php ├── tcp-proxy.php └── url-fuzzer.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstarke/php-security-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstarke/php-security-tools/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstarke/php-security-tools/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstarke/php-security-tools/HEAD/composer.lock -------------------------------------------------------------------------------- /grep-audit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstarke/php-security-tools/HEAD/grep-audit.sh -------------------------------------------------------------------------------- /netcat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstarke/php-security-tools/HEAD/netcat.php -------------------------------------------------------------------------------- /ssh-tunnel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstarke/php-security-tools/HEAD/ssh-tunnel.php -------------------------------------------------------------------------------- /tcp-proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstarke/php-security-tools/HEAD/tcp-proxy.php -------------------------------------------------------------------------------- /url-fuzzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstarke/php-security-tools/HEAD/url-fuzzer.php --------------------------------------------------------------------------------