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 LVR\CreditCard\ExpirationDateValidator; use Illuminate\Contracts\Validation\Rule; class CardExpirationMonth implements Rule { const MSG_CARD_EXPIRATION_MONTH_INVALID = 'Invalid Month'; /** * Month field name. * * @var string */ protected $month; /** * CardExpirationMonth constructor. * * @param string $month */ public function __construct($month) { $this->month = $month; } /** * Determine if the validation rule passes. * * @param string $attribute * @param mixed $value * * @return bool */ public function passes($attribute, $value) { return (new ExpirationDateValidator($this->month, $value)) ->isValid(); } /** * Get the validation error message. * * @return string */ public function message() { return trans(static::MSG_CARD_EXPIRATION_MONTH_INVALID); } }