summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Thompson <jim@netgate.com>2015-08-25 12:42:16 -0500
committerJim Thompson <jim@netgate.com>2015-08-25 12:42:16 -0500
commit4d9801c2dbd2b3e54a39578ee62b93af66607227 (patch)
tree62be220fcb3421d07b1cfc96f8693613dd1482a9
parent032f04564ea0627d21800ddf4bfdb472421df301 (diff)
downloadpfsense-4d9801c2dbd2b3e54a39578ee62b93af66607227.zip
pfsense-4d9801c2dbd2b3e54a39578ee62b93af66607227.tar.gz
Get rid of NT-hash crap
-rw-r--r--etc/inc/auth.inc4
-rwxr-xr-xusr/local/www/status.php1
2 files changed, 1 insertions, 4 deletions
diff --git a/etc/inc/auth.inc b/etc/inc/auth.inc
index 9c5bba6..3c0acaa 100644
--- a/etc/inc/auth.inc
+++ b/etc/inc/auth.inc
@@ -561,7 +561,7 @@ function local_user_del($user) {
local_group_del_user($user);
}
-function local_user_set_password(& $user, $password) {
+function local_user_set_password(&$user, $password) {
$user['password'] = crypt($password);
$user['md5-hash'] = md5($password);
@@ -574,8 +574,6 @@ function local_user_set_password(& $user, $password) {
$ustr .= sprintf("%X", $a);
}
- // Generate the NT-HASH from the unicode string
- $user['nt-hash'] = bin2hex(hash("md4", $ustr));
}
function local_user_get_groups($user, $all = false) {
diff --git a/usr/local/www/status.php b/usr/local/www/status.php
index b969e0a..6561c98 100755
--- a/usr/local/www/status.php
+++ b/usr/local/www/status.php
@@ -88,7 +88,6 @@ function doCmdT($title, $command) {
$line = preg_replace("/<ipsecpsk>.*?<\\/ipsecpsk>/", "<ipsecpsk>xxxxx</ipsecpsk>", $line);
$line = preg_replace("/<md5-hash>.*?<\\/md5-hash>/", "<md5-hash>xxxxx</md5-hash>", $line);
$line = preg_replace("/<md5password>.*?<\\/md5password>/", "<md5password>xxxxx</md5password>", $line);
- $line = preg_replace("/<nt-hash>.*?<\\/nt-hash>/", "<nt-hash>xxxxx</nt-hash>", $line);
$line = preg_replace("/<radius_secret>.*?<\\/radius_secret>/", "<radius_secret>xxxxx</radius_secret>", $line);
$line = preg_replace("/<ldap_bindpw>.*?<\\/ldap_bindpw>/", "<ldap_bindpw>xxxxx</ldap_bindpw>", $line);
$line = preg_replace("/<passwordagain>.*?<\\/passwordagain>/", "<passwordagain>xxxxx</passwordagain>", $line);
OpenPOWER on IntegriCloud