From: Stefan Fritsch
Date: Fri, 22 Jun 2012 14:56:44 +0000 (+0000)
Subject: note more prominently that SHA and crypt are insecure
X-Git-Tag: 2.5.0-alpha~6709
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6367f6a183073783ed085e4e3eea4ccd08966e61;p=thirdparty%2Fapache%2Fhttpd.git
note more prominently that SHA and crypt are insecure
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1352910 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/programs/htpasswd.xml b/docs/manual/programs/htpasswd.xml
index f08caf37c7a..b254e141d46 100644
--- a/docs/manual/programs/htpasswd.xml
+++ b/docs/manual/programs/htpasswd.xml
@@ -108,11 +108,13 @@ distribution.
-d
Use crypt()
encryption for passwords. This is not
supported by the httpd server on Windows and
- Netware.
+ Netware. This algorithm limits the password length to 8 characters.
+ This algorithm is insecure by today's standards.
-s
Use SHA encryption for passwords. Facilitates migration from/to Netscape
- servers using the LDAP Directory Interchange Format (ldif).
+ servers using the LDAP Directory Interchange Format (ldif).
+ This algorithm is insecure by today's standards.
-p
Use plaintext passwords. Though htpasswd
will support
@@ -200,6 +202,9 @@ distribution.
there is only one encrypted representation. The crypt()
and
MD5 formats permute the representation by prepending a random salt string,
to make dictionary attacks against the passwords more difficult.
+
+ The SHA and crypt()
formats are insecure by today's
+ standards.
Restrictions
diff --git a/support/htpasswd.c b/support/htpasswd.c
index 16e55a0630b..993ce625e3e 100644
--- a/support/htpasswd.c
+++ b/support/htpasswd.c
@@ -283,9 +283,10 @@ static void usage(void)
" (default)"
"." NL);
apr_file_printf(errfile, " -d Force CRYPT encryption of the password"
- "." NL);
+ " (8 chars max, insecure)." NL);
apr_file_printf(errfile, " -p Do not encrypt the password (plaintext)." NL);
- apr_file_printf(errfile, " -s Force SHA encryption of the password." NL);
+ apr_file_printf(errfile, " -s Force SHA encryption of the password"
+ " (insecure)." NL);
apr_file_printf(errfile, " -b Use the password from the command line "
"rather than prompting for it." NL);
apr_file_printf(errfile, " -D Delete the specified user." NL);