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\Cards\Card; use Illuminate\Contracts\Validation\Rule; use LVR\CreditCard\Factory; class CardCvc implements Rule { const MSG_CARD_CVC_INVALID = 'Invalid CVV'; protected $message; /** * Credit card number. * * @var string */ protected $card_number; public function __construct($card_number) { $this->message = static::MSG_CARD_CVC_INVALID; $this->card_number = $card_number; } /** * Determine if the validation rule passes. * * @param string $attribute * @param mixed $value * * @return bool */ public function passes($attribute, $value) { try { return Factory::makeFromNumber($this->card_number)->isValidCvc($value); } catch (\Exception $ex) { return false; } } /** * Get the validation error message. * * @return string */ public function message() { return trans($this->message); } }