aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_transport.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2015-12-07 18:38:54 +0100
committerHans Nilsson <[email protected]>2015-12-07 18:38:54 +0100
commitb8ac85a0673d06606c6523e4bb8f46e1034d0638 (patch)
treedec8901f7e4b1e30c6cdc951cf5e8b0089120738 /lib/ssh/src/ssh_transport.erl
parent9be3ffd7bbb7fbf386fe7857b3ff9c9803e91cc7 (diff)
downloadotp-b8ac85a0673d06606c6523e4bb8f46e1034d0638.tar.gz
otp-b8ac85a0673d06606c6523e4bb8f46e1034d0638.tar.bz2
otp-b8ac85a0673d06606c6523e4bb8f46e1034d0638.zip
ssh: fix error for bad packet lengths found by Defensics
Diffstat (limited to 'lib/ssh/src/ssh_transport.erl')
-rw-r--r--lib/ssh/src/ssh_transport.erl5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/ssh/src/ssh_transport.erl b/lib/ssh/src/ssh_transport.erl
index 67a0d29bb8..18037b8461 100644
--- a/lib/ssh/src/ssh_transport.erl
+++ b/lib/ssh/src/ssh_transport.erl
@@ -1004,10 +1004,7 @@ handle_packet_part(<<>>, Encrypted0, undefined, #ssh{decrypt = CryptoAlg} = Ssh0
{ok, PacketLen, _, _, _} when PacketLen > ?SSH_MAX_PACKET_SIZE ->
%% far too long message than expected
- throw(#ssh_msg_disconnect{code = ?SSH_DISCONNECT_PROTOCOL_ERROR,
- description = "Bad packet length "
- ++ integer_to_list(PacketLen),
- language = ""});
+ {error, {exceeds_max_size,PacketLen}};
{ok, PacketLen, Decrypted, Encrypted1,
#ssh{recv_mac_size = MacSize} = Ssh1} ->