search for: rcsid

Displaying 20 results from an estimated 93 matches for "rcsid".

2002 Oct 10
3
pks for openssh
I was directed to the following site by one of our customers regarding a keyserver built into openssh. There's a patch for 3.4p1 on their site, but the license isn't very clear, nor is it clear if they have approached the openssh team regarding the inclusion of this subsystem into openssh proper. I've been asked to patch Mandrake's openssh with this feature, but I'm
2002 Mar 12
2
sys/queue.h
...====================================================== RCS file: /var/cvs/openssh/sftp-client.c,v retrieving revision 1.24 diff -u -r1.24 sftp-client.c --- sftp-client.c 26 Feb 2002 18:02:44 -0000 1.24 +++ sftp-client.c 12 Mar 2002 02:12:01 -0000 @@ -30,11 +30,7 @@ #include "includes.h" RCSID("$OpenBSD: sftp-client.c,v 1.24 2002/02/24 16:57:19 markus Exp $"); -#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H) -#include <sys/queue.h> -#else #include "openbsd-compat/fake-queue.h" -#endif #include "buffer.h" #include "bu...
2004 Jun 30
3
OpenSSL ENIGNE support for OpenSSH
Hi all, attached is a patch that enables using hardware crypto accelerators available through OpenSSL library for SSH operations. Especially in ssh/sshd it can bring a significant speed improvement. OTOH if no crypto engine is available, nothing bad happens and default software crypto routines are used. This patch is used in SUSE Linux OpenSSH package and proved to work (at least it didn't
2004 Apr 13
3
scp problem
RCSID("$OpenBSD: scp.c,v 1.113 2003/11/23 23:21:21 djm Exp $"); Part of the OpenSSH_3.8p1, SSH protocols 1.5/2.0, OpenSSL 0.9.7c 30 Sep 2003 distribution Could someone verify this case we found that causes a file to be missed during copying? Here is the setup to replicate the problem: On hos...
2005 Nov 20
0
[PATCH] Solaris 10 and missing OpenSSL functions >128bit
...00 1.4 +++ cipher-aes.c 20 Nov 2005 02:39:30 -0000 @@ -23,7 +23,11 @@ */ #include "includes.h" -#if OPENSSL_VERSION_NUMBER < 0x00907000L + +/* compatibility with old or broken OpenSSL versions */ +#include "openbsd-compat/openssl-compat.h" + +#ifdef USE_BUILTIN_RIJNDAEL RCSID("$OpenBSD: cipher-aes.c,v 1.2 2003/11/26 21:44:29 djm Exp $"); #include <openssl/evp.h> @@ -31,10 +35,6 @@ RCSID("$OpenBSD: cipher-aes.c,v 1.2 2003 #include "xmalloc.h" #include "log.h" -#if OPENSSL_VERSION_NUMBER < 0x00906000L -#define SSH_OLD_EVP...
2001 Feb 08
1
openbsd-compat/vis.c fails to build (patch)
vis.c from the 20010208 snap fails to build under OpenBSD 2.8. apply the following in the openssh root to fix: --- openbsd-compat/vis.c.old Thu Feb 8 09:21:18 2001 +++ openbsd-compat/vis.c Thu Feb 8 09:21:26 2001 @@ -35,9 +35,9 @@ static char rcsid[] = "$OpenBSD: vis.c,v 1.5 2000/07/19 15:25:13 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ -#ifndef HAVE_VIS - #include "includes.h" + +#ifndef HAVE_VIS #define isoctal(c)
2002 Jan 22
2
ssh-keyscan: xmalloc out of memory error
hi all, I got "xmalloc: out of memory" when i used ssh-keyscan to a remote host that is using SSH protocol 2 and only protocol 2 (no fallback to SSH protocol 1). Looks to me more like ssh-keyscan doesn't talk SSH protocol 2 to the server. Please help. Here is the exact error: # /usr/local/bin/ssh-keyscan -v miad_1 # miad_1 SSH-2.0-OpenSSH_3.0.2p1 xmalloc: out of memory
2004 May 12
1
Van Dyke's Public Key Assistant
Jeff Van Dyke's "Public Key Assistant subsystem" was previously discussed here: (end of a short thread) http://marc.theaimsgroup.com/?l=openssh-unix-dev&m=103436908422003&w=2 I do see a few comments that seem to point out his arrogance and some disgust about OpenBSD's RCSID, but has anybody found it to be unsecure or if it was bug ridden. The subject sorta dies right there. If you follow the links on www.vandyke.com, they still seem to be maintaining the patch... Even if it was never going to be part of the RFC and might be only mildly popular is there a technical re...
2002 Sep 04
4
Determining Local IP Address within .profile
...to the local SSHD. We use MC/Serviceguard which can create many Interfaces where a remote client could connect and we like to know within .profile which interface the client has connected to. I've looked at the sourcecode and maybe the following could do something I described : session.c:871 RCSID("$OpenBSD: session.c,v 1.142 2002/06/26 13:49:26 deraadt Exp $"); do_setup_env child_set_env(&env, &envsize, "SSH_LOCAL_IP", get_local_ipaddr(packet_get_connection_in()); what do you think of it ? thanx, mario
2003 Jan 24
0
[Bug 473] New: cannot update password using PAM on HP-UX system that has been tsconverted
...re 1c1 < /* $Id: auth-pam.h,v 1.3 2002/05/14 16:35:43 cvsuser Exp $ */ --- > /* $Id: auth-pam.h,v 1.11 2001/03/27 06:12:24 djm Exp $ */ 18c18 < void do_pam_chauthtok(struct passwd *pw); --- > void do_pam_chauthtok(void); diff auth-pam.c /extra/openssh-3.1p1/auth-pam.c | more 38c38 < RCSID("$Id: auth-pam.c,v 1.3 2002/05/14 16:35:43 cvsuser Exp $"); --- > RCSID("$Id: auth-pam.c,v 1.42 2002/02/05 01:40:47 djm Exp $"); 146d145 < 326c325 < void do_pam_chauthtok(struct passwd *pw) --- > void do_pam_chauthtok(void) 329,331d327 < uid_t current_uid; &...
2003 Aug 08
1
Help request: merging OpenBSD Kerberos change into Portable.
...=================================== RCS file: /cvs/src/usr.bin/ssh/auth-krb5.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -u -r1.10 -r1.11 --- auth-krb5.c 2002/11/21 23:03:51 1.10 +++ auth-krb5.c 2003/07/16 15:02:06 1.11 @@ -28,7 +28,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth-krb5.c,v 1.10 2002/11/21 23:03:51 deraadt Exp $"); +RCSID("$OpenBSD: auth-krb5.c,v 1.11 2003/07/16 15:02:06 markus Exp $"); #include "ssh.h" #include "ssh1.h" @@ -208,6 +208,7 @@ int auth_krb5_password(Authctxt *authctxt, const char *pass...
2003 Sep 15
1
Fwd: Re: [Full-Disclosure] new ssh exploit?
Has anyone around here heard of this ? ---Mike >Subject: Re: [Full-Disclosure] new ssh exploit? >From: christopher neitzert <chris@neitzert.com> >Reply-To: chris@neitzert.com >To: full-disclosure@lists.netsys.com >X-Mailer: Ximian Evolution 1.4.3.99 >Sender: full-disclosure-admin@lists.netsys.com >X-BeenThere: full-disclosure@lists.netsys.com
2000 Jun 12
1
AIX and 2.1.1p1
The new login code works fine with AIX 4.3. Two nits, though. If --disable-lastlog is defined, the code still tries to slog through wtmp to determine the last login time. Is this a bug or a feature? If a feature, change the DISABLE_LASTLOG test below to WITH_AIXAUTHENTICATE. Also, a small typo in configure.in, plus an AIX tweak. --- configure.in.orig Thu Jun 8 21:58:35 2000 +++ configure.in Mon
2014 Jul 09
5
[LLVMdev] [PATCH][REQUEST] Could someone submit this CSR Kalimba definitions patch please?
...itprofiling.c =================================================================== --- lib/ExecutionEngine/IntelJITEvents/jitprofiling.c (revision 212519) +++ lib/ExecutionEngine/IntelJITEvents/jitprofiling.c (working copy) @@ -30,7 +30,7 @@ #include "jitprofiling.h" -static const char rcsid[] = "\n@(#) $Revision: 243501 $\n"; +static const char rcsid[] = "\n@(#) $Revision: #4 $\n"; #define DLL_ENVIRONMENT_VAR "VS_PROFILER" Index: lib/Support/Triple.cpp =================================================================== --- lib/Support/Trip...
2003 Mar 26
2
what actually uses xdr_mem.c?
In regards to FreeBSD-SA-03:05.xdr, does anyone know which static binaries or tools under /bin or /sbin actually use that problem code? The recent XDR fixes the xdrmem_getlong_aligned(), xdrmem_putlong_aligned(), xdrmem_getlong_unaligned(), xdrmem_putlong_unaligned(), xdrmem_getbytes(), and/or xdrmem_putbytes() functions, but it is difficult to know what uses these (going backwards manually).
2006 Jan 08
3
Allow --without-privsep build.
...time, sshd will use the path defined in $external_path_file" echo " Make sure the path to scp is present, otherwise scp will not work" --- openssh-4.2p1/monitor.c~ 2005-07-17 08:53:31.000000000 +0100 +++ openssh-4.2p1/monitor.c 2006-01-07 18:40:42.000000000 +0000 @@ -69,6 +69,8 @@ RCSID("$OpenBSD: monitor.c,v 1.63 2005/0 static Gssctxt *gsscontext = NULL; #endif +#ifdef USE_PRIVSEP + /* Imports */ extern ServerOptions options; extern u_int utmp_len; @@ -1916,3 +1918,5 @@ mm_answer_gss_userok(int sock, Buffer *m return (authenticated); } #endif /* GSSAPI */ + +#endi...
2001 Apr 02
1
[PATCH]: scp could hang in Cygwin
...========================================== RCS file: /cvs/openssh_cvs/openbsd-compat/bsd-cygwin_util.c,v retrieving revision 1.3 diff -u -p -r1.3 bsd-cygwin_util.c --- openbsd-compat/bsd-cygwin_util.c 2001/02/18 01:30:56 1.3 +++ openbsd-compat/bsd-cygwin_util.c 2001/04/02 19:47:14 @@ -20,7 +20,6 @@ RCSID("$Id: bsd-cygwin_util.c,v 1.3 2001 #ifdef HAVE_CYGWIN #include <fcntl.h> -#include <io.h> #include <stdlib.h> #include <sys/vfs.h> #include <windows.h> Index: openbsd-compat/bsd-cygwin_util.h =================================================================...
2001 Jul 11
2
[PATCH]: Cygwin: Allow sshd to switch user context without password
...======================================== RCS file: /cvs/openssh_cvs/openbsd-compat/bsd-cygwin_util.c,v retrieving revision 1.4 diff -u -p -r1.4 bsd-cygwin_util.c --- openbsd-compat/bsd-cygwin_util.c 2001/04/13 14:28:42 1.4 +++ openbsd-compat/bsd-cygwin_util.c 2001/07/11 20:35:40 @@ -21,10 +21,14 @@ RCSID("$Id: bsd-cygwin_util.c,v 1.4 2001 #include <fcntl.h> #include <stdlib.h> +#include <sys/utsname.h> #include <sys/vfs.h> #include <windows.h> #define is_winnt (GetVersion() < 0x80000000) +#define ntsec_on(c) ((c) && strstr((c),"ntsec...
2005 May 21
3
Compiling openssh-4.0p1 on Solaris 10.
...:18: ../log.h: In function `fatal': ../log.h:56: warning: empty declaration ../log.h:65: error: parse error before "volatile" ../log.h:65: error: old-style parameter declarations in prototyped function definition ../log.h:56: error: parameter name omitted bsd-arc4random.c:20: error: `rcsid' undeclared (first use in this function) bsd-arc4random.c:20: error: (Each undeclared identifier is reported only once bsd-arc4random.c:20: error: for each function it appears in.) bsd-arc4random.c:20: warning: left-hand operand of comma expression has no effect bsd-arc4random.c:20: error: par...
2002 Jan 23
1
Fix AFS and Kerberos interaction
...packet_send_debug("AFS token passing disabled before authentication."); break; -#endif /* AFS */ +#endif /* AFS && KRB4 */ #endif /* AFS || KRB5 */ case SSH_CMSG_AUTH_RHOSTS: --- radix.c 2002/01/23 10:13:32 1.1 +++ radix.c 2002/01/23 10:27:36 @@ -27,7 +27,7 @@ RCSID("$OpenBSD: radix.c,v 1.16 2001/06/23 15:12:19 itojun Exp $"); -#ifdef AFS +#if defined(AFS) && defined(KRB4) #include <krb.h> #include <radix.h> @@ -211,4 +211,4 @@ return 1; } -#endif /* AFS */ +#endif /* AFS && KRB4 */ --- readconf.c 2002/01/23 12:...