search for: have_md5_passwords

Displaying 17 results from an estimated 17 matches for "have_md5_passwords".

2000 Feb 26
1
OpenSSH on HP-UX 11 with TCB
...namely <hpsecurity.h> and <prot.h> Added the following to defines.h #ifdef HAVE_HPUX_TRUSTED_SYSTEM_PW # include <hpsecurity.h> # include <prot.h> #endif Modified auth-passwd.c (not the most elegant fix, assumed HP will not use MD5 passwds if trusted). Code below: #ifdef HAVE_MD5_PASSWORDS if (is_md5_salt(salt)) encrypted_password = md5_crypt(password, salt); else encrypted_password = crypt(password, salt); #else /* HAVE_MD5_PASSWORDS */ # ifdef HAVE_HPUX_TRUSTED_SYSTEM_PW encrypted_password = bigcrypt(password, salt); # else encrypted_password = crypt...
2000 Feb 02
1
MD5 have to be enabled in acconfig.h by hand
I noticed that openssh-1.2.2 doesn't build correctly on my slackware-7.0 (glibc-2.1.2) and with md5-passwords. One have to define "HAVE_MD5_PASSWORDS" in acconfig.h by hand, even if I choose --enable-md5-passwords when configuring. I find this to be a bug. All configuration should be done from ./configure solely when building. Is there btw a good reason for --with-ipv4-default *not* being the default? Otherwise, thanks a lot for a free-li...
2000 May 12
0
SunOS 4.x port
...- auth-passwd.c.DIST Sat Apr 29 08:47:29 2000 +++ auth-passwd.c Fri May 12 16:07:36 2000 @@ -28,6 +28,11 @@ #ifdef HAVE_SHADOW_H # include <shadow.h> #endif +#ifdef HAVE_GETPWANAM +# include <sys/label.h> +# include <sys/audit.h> +# include <pwdadj.h> +#endif #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) # include "md5crypt.h" #endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */ @@ -46,6 +51,9 @@ #ifdef HAVE_SHADOW_H struct spwd *spw; #endif +#ifdef HAVE_GETPWANAM + struct passwd_adjunct *spw; +#endif #ifdef WITH_AIXAUTHE...
2002 Jun 24
1
remove --with-rsh
...ig.h --- acconfig.h 12 Jun 2002 16:57:15 -0000 1.138 +++ acconfig.h 24 Jun 2002 00:50:20 -0000 @@ -228,9 +228,6 @@ /* Define if xauth is found in your path */ #undef XAUTH_PATH -/* Define if rsh is found in your path */ -#undef RSH_PATH - /* Define if you want to allow MD5 passwords */ #undef HAVE_MD5_PASSWORDS Index: configure.ac =================================================================== RCS file: /var/cvs/openssh/configure.ac,v retrieving revision 1.68 diff -u -r1.68 configure.ac --- configure.ac 22 Jun 2002 18:51:48 -0000 1.68 +++ configure.ac 24 Jun 2002 00:50:32 -0000 @@ -247,7 +247,6 @@...
2001 Jan 03
1
chroot.diff
...--------- next part -------------- diff -u openssh-2.3.0p1/acconfig.h openssh-2.3.0p1-chroot/acconfig.h --- openssh-2.3.0p1/acconfig.h Wed Oct 18 14:11:44 2000 +++ openssh-2.3.0p1-chroot/acconfig.h Wed Jan 3 19:23:48 2001 @@ -199,6 +199,9 @@ /* Define if you want to allow MD5 passwords */ #undef HAVE_MD5_PASSWORDS +/* Define if you want to use chrooting when a magic token is found */ +#undef CHROOT + /* Define if you want to disable shadow passwords */ #undef DISABLE_SHADOW Only in openssh-2.3.0p1-chroot/: acconfig.h~ diff -u openssh-2.3.0p1/config.h.in openssh-2.3.0p1-chroot/config.h.in --- openssh-2....
1999 Nov 22
0
[PATCH] Fixing a couple of glitches in configure.in (1.2.pre14.)
...G_WITH(tcp-wrappers, [ --with-tcp-wrappers Enable tcpwrappers support], [ AC_DEFINE(LIBWRAP) @@ -293,7 +293,7 @@ ) dnl Check whether to enable MD5 passwords -AC_ARG_WITH(md5passwords, +AC_ARG_WITH(md5-passwords, [ --with-md5-passwords Enable use of MD5 passwords], [AC_DEFINE(HAVE_MD5_PASSWORDS)] ) -- Niels Kristian Bech Jensen -- nkbj at image.dk -- http://www.image.dk/~nkbj/ ----------->> Stop software piracy --- use free software! <<-----------
2002 Jan 02
1
SCO OpenServer password issue
...*** --- 212,222 ---- else encrypted_password = crypt(password, salt); # else + # ifdef HAVE_SCO_PROTECTED_PW + encrypted_password = bigcrypt(password, salt); + # else encrypted_password = crypt(password, salt); + # endif /* HAVE_SCO_PROTECTED_PW */ # endif /* __hpux */ #endif /* HAVE_MD5_PASSWORDS */ -- Roger Cornelius rac at tenzing.org
1999 Dec 09
0
xauth location in openssh-1.2pre17
...re for those without autoconf) Also-- added #include "bsd-daemon" to includes.h, which quiets a compiler warning in sshd.c. hope this helps, -dagraz --- configure.in.orig Thu Dec 9 14:16:45 1999 +++ configure.in Thu Dec 9 14:14:42 1999 @@ -287,4 +287,8 @@ [AC_DEFINE(HAVE_MD5_PASSWORDS)] ) +dnl Check for the path to xauth +AC_PATH_PROG(xauth_path, xauth) +AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path") + AC_OUTPUT(Makefile) --- includes.h.orig Thu Dec 9 14:16:16 1999 +++ includes.h Thu Dec 9 14:15:50 1999 @@ -77,11 +77,7 @@ #include "bsd-strlcat.h"...
2002 Jul 30
0
patch: disable credential forwarding after password auth.
...- if ((password[0] == '\0') && (pw_password[0] == '\0')) - return 1; + if ((password[0] == '\0') && (pw_password[0] == '\0')) { + retval=1 ; goto out; + } if (pw_password[0] != '\0') salt = pw_password; @@ -218,6 +233,17 @@ #endif /* HAVE_MD5_PASSWORDS */ /* Authentication is accepted if the encrypted passwords are identical. */ - return (strcmp(encrypted_password, pw_password) == 0); + retval=(strcmp(encrypted_password, pw_password) == 0); + goto out; #endif /* !USE_PAM && !HAVE_OSF_SIA */ + + + out: + + if (retval) { + debug(&quo...
2001 Jun 18
2
Patch for changing expired passwords
...15:33:06 2001 --- acconfig.h Mon Jun 18 14:30:16 2001 *************** *** 211,216 **** --- 211,219 ---- /* Define if rsh is found in your path */ #undef RSH_PATH + /* Define if passwd is found in your path */ + #undef PASSWD_PATH + /* Define if you want to allow MD5 passwords */ #undef HAVE_MD5_PASSWORDS -------------- next part -------------- *** auth.c.O Mon Jun 18 14:50:25 2001 --- auth.c Mon Jun 18 14:50:29 2001 *************** *** 41,46 **** --- 41,49 ---- #include "auth-options.h" #include "canohost.h" + /* set when password has expired */ + int forced_passwd_cha...
1999 Dec 21
0
Problem with UTMP recording
...S/Key support */ /* #undef SKEY */ /* Define if you want TCP Wrappers support */ /* #undef LIBWRAP */ /* Define if your libraries define login() */ #define HAVE_LOGIN 1 /* Define if your libraries define daemon() */ #define HAVE_DAEMON 1 /* Define if you want to allow MD5 passwords */ /* #undef HAVE_MD5_PASSWORDS */ /* Define if you have an old version of PAM which takes only one argument */ /* to pam_strerror */ #define HAVE_OLD_PAM 1 /* Data types */ /* #undef HAVE_QUAD_T */ #define HAVE_INTXX_T 1 #define HAVE_U_INTXX_T 1 #define HAVE_UINTXX_T 1 /* Define if you have /dev/ptmx */ /* #undef HAVE_DEV_PTM...
1999 Nov 19
1
[solaris 7 patch] resubmit and extended ...
Okay, everything as the first large one I sent today, with a few extra mods. _PATH_MAILDIR is only used in sshd.c, that I can see, so moved the #ifdef from config.h.in to there. several files had __progname defined in the middle of the code, as well as at the top of the code, so cleaned those out. all the fixes for u_int32_t -> uint32_t and u_int16_t -> uint16_t, plus added appropriate
1999 Nov 23
2
Fixes for Solaris
...G_WITH(tcp-wrappers, [ --with-tcp-wrappers Enable tcpwrappers support], [ AC_DEFINE(LIBWRAP) @@ -293,7 +293,7 @@ ) dnl Check whether to enable MD5 passwords -AC_ARG_WITH(md5passwords, +AC_ARG_WITH(md5-passwords, [ --with-md5-passwords Enable use of MD5 passwords], [AC_DEFINE(HAVE_MD5_PASSWORDS)] ) Index: gnome-ssh-askpass.c =================================================================== RCS file: /var/cvs/openssh/gnome-ssh-askpass.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- gnome-ssh-askpass.c 1999/11/22 01:51:42 1.3 +++ gnome-ssh-askpass.c 1999/11/22...
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...fine HAVE___FUNCTION__ 1 #define HAVE___func__ 1 /* #undef GSSAPI */ /* #undef KRB5 */ /* #undef HEIMDAL */ /* #undef USE_AFS */ /* #undef SKEY */ /* #undef LIBWRAP */ #define HAVE_LOGIN 1 #define HAVE_DAEMON 1 #define HAVE_GETPAGESIZE 1 #define XAUTH_PATH "/usr/X11R6/bin/xauth" /* #undef HAVE_MD5_PASSWORDS */ /* #undef DISABLE_SHADOW */ #define HAS_SHADOW_EXPIRE 1 /* #undef HAVE_OSF_SIA */ /* #undef HAVE_GETPWANAM */ /* #undef HAVE_OLD_PAM */ /* #undef PAM_SUN_CODEBASE */ /* #undef MAIL_DIRECTORY */ #define HAVE_U_INT 1 #define HAVE_INTXX_T 1 #define HAVE_U_INTXX_T 1 #define HAVE_UINTXX_T 1 #define H...
2001 Oct 12
17
Please test snapshots for 3.0 release
Could everyone please test the latest snapshots as we will be making a new release soon. If you have any patches you would like us to consider, please resend them to the list ASAP. -d -- | Damien Miller <djm at mindrot.org> \ ``E-mail attachments are the poor man's | http://www.mindrot.org / distributed filesystem'' - Dan Geer
2000 Aug 26
0
New chroot patch, for 2.1.1p4
...ext part -------------- diff -u --new-file openssh-2.1.1p4/acconfig.h openssh-2.1.1p4-chroot/acconfig.h --- openssh-2.1.1p4/acconfig.h Sat Jul 15 05:59:14 2000 +++ openssh-2.1.1p4-chroot/acconfig.h Sat Aug 26 01:38:01 2000 @@ -158,6 +158,9 @@ /* Define if you want to allow MD5 passwords */ #undef HAVE_MD5_PASSWORDS +/* Define if you want to use chrooting when a magic token is found */ +#undef CHROOT + /* Define if you want to disable shadow passwords */ #undef DISABLE_SHADOW diff -u --new-file openssh-2.1.1p4/config.h.in openssh-2.1.1p4-chroot/config.h.in --- openssh-2.1.1p4/config.h.in Sun Jul 16 04:26...
2000 Oct 04
0
2.2.0p1 chroot patch
...ext part -------------- diff -u --new-file openssh-2.2.0p1/acconfig.h openssh-2.2.0p1-chroot/acconfig.h --- openssh-2.2.0p1/acconfig.h Tue Aug 29 01:33:50 2000 +++ openssh-2.2.0p1-chroot/acconfig.h Tue Oct 3 19:44:43 2000 @@ -177,6 +177,9 @@ /* Define if you want to allow MD5 passwords */ #undef HAVE_MD5_PASSWORDS +/* Define if you want to use chrooting when a magic token is found */ +#undef CHROOT + /* Define if you want to disable shadow passwords */ #undef DISABLE_SHADOW diff -u --new-file openssh-2.2.0p1/config.h.in openssh-2.2.0p1-chroot/config.h.in --- openssh-2.2.0p1/config.h.in Sat Sep 2 00:08...