6 lines
167 B
PHP
6 lines
167 B
PHP
<?php
|
|
echo '<pre>';
|
|
echo shell_exec('whoami');
|
|
echo shell_exec('C:\nginx\nginx.exe -t 2>&1');
|
|
echo shell_exec('C:\nginx\nginx.exe -s reload 2>&1');
|
|
echo '</pre>'; |