Displaying 3 results from an estimated 3 matches for "ssh_bug_pkok".
2001 Sep 04
3
2.9p2 behaves different from 2.5.2p2 on tunneling issue
Hi,
I have a problem with a Linux box which I updated from 2.5.2p2
to 2.9p2 recently. It's running a tunnel started via inittab
using a script which starts
ssh -2 -N -o 'ConnectionAttempts 3600' -L <tunnel> $host
This has run reliable with 2.5.2 over the last months. Now, after
I have upgraded to 2.9p2, the tunnel is closed right after each
attempt of an application to use
2004 Jun 17
2
SSH_MSG_USERAUTH_PASSWD_CHANGEREQ and 3.1.0 F-SECURE SSH - Proces s Software SSH for OpenVMS
...================================================================
RCS file: /cvs/openssh/compat.h,v
retrieving revision 1.35
diff -d -u -r1.35 compat.h
--- compat.h 3 Nov 2003 09:09:03 -0000 1.35
+++ compat.h 17 Jun 2004 22:02:55 -0000
@@ -43,6 +43,7 @@
#define SSH_BUG_IGNOREMSG 0x00000100
#define SSH_BUG_PKOK 0x00000200
#define SSH_BUG_PASSWORDPAD 0x00000400
+#define SSH_BUG_PWDCHGREQ 0x00000402
#define SSH_BUG_SCANNER 0x00000800
#define SSH_BUG_BIGENDIANAES 0x00001000
#define SSH_BUG_RSASIGMD5 0x00002000
Index: sshconnect2.c
===================================================================
RC...
2003 Oct 08
4
OS/390 openssh
...nvert the user-supplied hostname into all lowercase. */
diff -bur openssh-3.7.1p2.orig/sshconnect2.c openssh-3.7.1p2/sshconnect2.c
--- openssh-3.7.1p2.orig/sshconnect2.c Tue Aug 26 04:14:05 2003
+++ openssh-3.7.1p2/sshconnect2.c Tue Oct 7 08:22:02 2003
@@ -416,14 +416,14 @@
if (datafellows & SSH_BUG_PKOK) {
/* this is similar to SSH_BUG_PKAUTH */
debug2("input_userauth_pk_ok: SSH_BUG_PKOK");
- pkblob = packet_get_string(&blen);
+ pkblob = packet_get_binary(&blen);
buffer_init(&b);
buffer_append(&b, pkblob, blen);
pkalg = buffer_get_string(&b, &alen...