x00
MVPx00 MVP
Reactions
-
Re: Hash root user pass upon installation.
note that _Insertinternal method used by SaveAdminUser contain the lines if (array_key_exists('Password', $Fields)) { $PasswordHash = new Gdn_PasswordHash(); $Fields['Password'] =… (View Post)1 -
Re: Hash root user pass upon installation.
function CheckVanilla($Password, $StoredHash) { $this->Weak = FALSE; if (!isset($StoredHash[0])) return FALSE; if ($StoredHash[0] === '_' || $StoredHash[0] === '$') { return pa… (View Post)2 -
Re: Hash root user pass upon installation.
I think this might be the issue if ($this->GetID($UserID) !== FALSE) { $this->SQL->Put($this->Name, $Fields); } else { It is doing a Put without sanitising. That is the case where there i… (View Post)3 -
Re: Ban tool
We all have interests, my interest if to keep the core clean. If you express you opinion I'll express mine. Maybe it could be implemented as a core plugin. Therefore it is one click away. (View Post)2 -
Re: need to allow user access different websites
jsConnect should work with JSONP, couldn't see any reason why not. (View Post)6
