!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_tdfonline/php/3ros/simplesamlphp/modules/core/www/   drwxr-xr-x
Free 14.16 GB of 61.93 GB (22.86%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

require_once('_include.php');

/**
 * This page clears the user's IdP discovery choices.
 */

/* The base path for cookies. This should be the installation directory for simpleSAMLphp. */
$config SimpleSAML_Configuration::getInstance();
$cookiePath '/' $config->getBaseUrl();

/* We delete all cookies which starts with 'idpdisco_' */
foreach($_COOKIE as $cookieName => $value) {
    if (
substr($cookieName09) !== 'idpdisco_') {
        
/* Not a idpdisco cookie. */
        
continue;
    }

    
/* Delete the cookie. We delete it once without the secure flag and once with the secure flag. This
     * ensures that the cookie will be deleted in any case.
     */
    
setcookie($cookieName''time() - 24*60*60$cookiePath);
}


/* Find where we should go now. */
if(array_key_exists('ReturnTo'$_REQUEST)) {
    
$returnTo $_REQUEST['ReturnTo'];
} else {
    
/* Return to the front page if no other destination is given. This is the same as the base cookie path. */
    
$returnTo $cookiePath;
}

/* Redirect to destination. */
SimpleSAML_Utilities::redirect($returnTo);

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.9675 ]--