windows-php-reverse-shell icon indicating copy to clipboard operation
windows-php-reverse-shell copied to clipboard

system() has been disabled for security reasons (Fix)

Open Reelix opened this issue 5 years ago • 0 comments

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

Reelix avatar Oct 02 '20 14:10 Reelix