summaryrefslogtreecommitdiff
path: root/contrib/pam_modules/pam_passwdqc/pwqcheck.php
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/pam_modules/pam_passwdqc/pwqcheck.php')
-rw-r--r--contrib/pam_modules/pam_passwdqc/pwqcheck.php84
1 files changed, 84 insertions, 0 deletions
diff --git a/contrib/pam_modules/pam_passwdqc/pwqcheck.php b/contrib/pam_modules/pam_passwdqc/pwqcheck.php
new file mode 100644
index 000000000000..03f953d25bb4
--- /dev/null
+++ b/contrib/pam_modules/pam_passwdqc/pwqcheck.php
@@ -0,0 +1,84 @@
+<?php
+
+/*
+ * Copyright (c) 2010 by Solar Designer
+ * See LICENSE
+ *
+ * This file was originally written as part of demos for the "How to manage a
+ * PHP application's users and passwords" article submitted to "the Month of
+ * PHP Security" (which was May 2010):
+ *
+ * https://www.openwall.com/articles/PHP-Users-Passwords#enforcing-password-policy
+ *
+ * The pwqcheck() function is a wrapper around the pwqcheck(1) program from
+ * the passwdqc package:
+ *
+ * https://www.openwall.com/passwdqc/
+ *
+ * Returns 'OK' if the new password/passphrase passes the requirements.
+ * Otherwise returns a message explaining one of the reasons why the
+ * password/passphrase is rejected.
+ *
+ * $newpass and $oldpass are the new and current/old passwords/passphrases,
+ * respectively. Only $newpass is required.
+ *
+ * $user is the username.
+ *
+ * $aux may be the user's full name, e-mail address, and/or other textual
+ * info specific to the user (multiple items may be separated with spaces).
+ *
+ * $args are additional arguments to pass to pwqcheck(1), to override the
+ * default password policy.
+ */
+function pwqcheck($newpass, $oldpass = '', $user = '', $aux = '', $args = '')
+{
+// pwqcheck(1) itself returns the same message on internal error
+ $retval = 'Bad passphrase (check failed)';
+
+ $descriptorspec = array(
+ 0 => array('pipe', 'r'),
+ 1 => array('pipe', 'w'));
+// Leave stderr (fd 2) pointing to where it is, likely to error_log
+
+// Replace characters that would violate the protocol
+ $newpass = strtr($newpass, "\n", '.');
+ $oldpass = strtr($oldpass, "\n", '.');
+ $user = strtr($user, "\n:", '..');
+
+// Trigger a "too short" rather than "is the same" message in this special case
+ if (!$newpass && !$oldpass)
+ $oldpass = '.';
+
+ if ($args)
+ $args = ' ' . $args;
+ if (!$user)
+ $args = ' -2' . $args; // passwdqc 1.2.0+
+
+ $command = 'exec '; // No need to keep the shell process around on Unix
+ $command .= 'pwqcheck' . $args;
+ if (!($process = @proc_open($command, $descriptorspec, $pipes)))
+ return $retval;
+
+ $err = 0;
+ fwrite($pipes[0], "$newpass\n$oldpass\n") || $err = 1;
+ if ($user)
+ fwrite($pipes[0], "$user::::$aux:/:\n") || $err = 1;
+ fclose($pipes[0]) || $err = 1;
+ ($output = stream_get_contents($pipes[1])) || $err = 1;
+ fclose($pipes[1]);
+
+ $status = proc_close($process);
+
+// There must be a linefeed character at the end. Remove it.
+ if (substr($output, -1) === "\n")
+ $output = substr($output, 0, -1);
+ else
+ $err = 1;
+
+ if ($err === 0 && ($status === 0 || $output !== 'OK'))
+ $retval = $output;
+
+ return $retval;
+}
+
+?>