windows-php-reverse-shell
windows-php-reverse-shell copied to clipboard
system() has been disabled for security reasons (Fix)
If you get the above error, change
$output = system($cmd); to $output = exec($cmd); or $output = passthru($cmd);
Whilst exec and pasthru may also be disabled, they are less likely to be disabled than system