Jump to content

ÇÖZÜLDÜ - Kayıt İçin Güvenlik Kontrolü


Recommended Posts

çözdüm yardımlarınız için teşekkürler bu tarz bot saldırılarına maruz kalanlar için

classes/Validate.php dosyasının içerisindeki public static function isName($name) fonksyonunu aşağıdaki gibi değiştebilirler
public static function isName($name)
    {
		 if (preg_match('/www|http/ui', $name)) {
            return false;
        }
		
        return preg_match(Tools::cleanNonUnicodeSupport('/^[^0-9!<>,;?=+()@#"°{}_$%:]*$/u'), stripslashes($name));
    }

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...