From c3e524df73fc1251ae2cfe35aa7199e3f6b22d98 Mon Sep 17 00:00:00 2001 From: djm Date: Sun, 26 Mar 2006 03:11:39 +0000 Subject: [PATCH] - djm@cvs.openbsd.org 2006/03/22 21:27:15 [deattack.c deattack.h packet.c] remove IV support from the CRC attack detector, OpenSSH has never used it - it only applied to IDEA-CFB, which we don't support. prompted by NetBSD Coverity report via elad AT netbsd.org; feedback markus@ "nuke it" deraadt@ --- packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packet.c b/packet.c index ee936963..0121f8ae 100644 --- a/packet.c +++ b/packet.c @@ -988,7 +988,7 @@ packet_read_poll1(void) * Ariel Futoransky(futo@core-sdi.com) */ if (!receive_context.plaintext && - detect_attack(buffer_ptr(&input), padded_len, NULL) == DEATTACK_DETECTED) + detect_attack(buffer_ptr(&input), padded_len) == DEATTACK_DETECTED) packet_disconnect("crc32 compensation attack: network attack detected"); /* Decrypt data to incoming_packet. */ -- 2.45.2