!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/laravel-crm/vendor/setasign/fpdi/src/PdfParser/   drwxrwxrwx
Free 13.18 GB of 57.97 GB (22.73%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/**
 * This file is part of FPDI
 *
 * @package   setasign\Fpdi
 * @copyright Copyright (c) 2024 Setasign GmbH & Co. KG (https://www.setasign.com)
 * @license   http://opensource.org/licenses/mit-license The MIT License
 */

namespace setasign\Fpdi\PdfParser;

/**
 * A tokenizer class.
 */
class Tokenizer
{
    
/**
     * @var StreamReader
     */
    
protected $streamReader;

    
/**
     * A token stack.
     *
     * @var string[]
     */
    
protected $stack = [];

    
/**
     * Tokenizer constructor.
     *
     * @param StreamReader $streamReader
     */
    
public function __construct(StreamReader $streamReader)
    {
        
$this->streamReader $streamReader;
    }

    
/**
     * Get the stream reader instance.
     *
     * @return StreamReader
     */
    
public function getStreamReader()
    {
        return 
$this->streamReader;
    }

    
/**
     * Clear the token stack.
     */
    
public function clearStack()
    {
        
$this->stack = [];
    }

    
/**
     * Push a token onto the stack.
     *
     * @param string $token
     */
    
public function pushStack($token)
    {
        
$this->stack[] = $token;
    }

    
/**
     * Get next token.
     *
     * @return false|string
     */
    
public function getNextToken()
    {
        
$token \array_pop($this->stack);
        if (
$token !== null) {
            return 
$token;
        }

        if ((
$byte $this->streamReader->readByte()) === false) {
            return 
false;
        }

        if (
\in_array($byte, ["\x20""\x0A""\x0D""\x0C""\x09""\x00"], true)) {
            if (
$this->leapWhiteSpaces() === false) {
                return 
false;
            }
            
$byte $this->streamReader->readByte();
        }

        switch (
$byte) {
            case 
'/':
            case 
'[':
            case 
']':
            case 
'(':
            case 
')':
            case 
'{':
            case 
'}':
            case 
'<':
            case 
'>':
                return 
$byte;
            case 
'%':
                
$this->streamReader->readLine();
                return 
$this->getNextToken();
        }

        
/* This way is faster than checking single bytes.
         */
        
$bufferOffset $this->streamReader->getOffset();
        do {
            
$lastBuffer $this->streamReader->getBuffer(false);
            
$pos \strcspn(
                
$lastBuffer,
                
"\x00\x09\x0A\x0C\x0D\x20()<>[]{}/%",
                
$bufferOffset
            
);
        } while (
            
// Break the loop if a delimiter or white space char is matched
            // in the current buffer or increase the buffers length
            
$bufferOffset $pos === \strlen($lastBuffer)
            && 
$this->streamReader->increaseLength()
        );

        
$result \substr($lastBuffer$bufferOffset 1$pos 1);
        
$this->streamReader->setOffset($bufferOffset $pos);

        return 
$result;
    }

    
/**
     * Leap white spaces.
     *
     * @return boolean
     */
    
public function leapWhiteSpaces()
    {
        do {
            if (!
$this->streamReader->ensureContent()) {
                return 
false;
            }

            
$buffer $this->streamReader->getBuffer(false);
            
$matches \strspn($buffer"\x20\x0A\x0C\x0D\x09\x00"$this->streamReader->getOffset());
            if (
$matches 0) {
                
$this->streamReader->addOffset($matches);
            }
        } while (
$this->streamReader->getOffset() >= $this->streamReader->getBufferLength());

        return 
true;
    }
}

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