1
mirror of https://github.com/rapid7/metasploit-payloads synced 2024-11-20 14:39:22 +01:00

Land #426, log error to base stream

This commit is contained in:
Spencer McIntyre 2020-07-31 18:07:40 -04:00
commit 6b4b617277
No known key found for this signature in database
GPG Key ID: 58101BA0D0D9C987

View File

@ -74,7 +74,7 @@ public class ProcessChannel extends Channel {
stderrThread.join();
handleInteract(null);
} catch (Throwable t) {
t.printStackTrace(this.outputStream);
t.printStackTrace(meterpreter.getErrorStream());
}
}
}