7 lines
263 B
PHP
7 lines
263 B
PHP
<?php
|
|
header("Content-Type: text/plain");
|
|
echo "nginx sovereign route:\n";
|
|
echo @shell_exec("grep -rn 'sovereign' /etc/nginx/ 2>/dev/null | head -10");
|
|
echo "\n\nfpm listening procs:\n";
|
|
echo @shell_exec("ss -tlnp 2>/dev/null | grep -E ':4000|:5000' | head -5");
|