!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/lib/Auth/Yadis/   drwxrwxr-x
Free 13.83 GB of 61.93 GB (22.34%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/**
 * Code for using a proxy XRI resolver.
 */

require_once 'Auth/Yadis/XRDS.php';
require_once 
'Auth/Yadis/XRI.php';

class 
Auth_Yadis_ProxyResolver {
    function 
Auth_Yadis_ProxyResolver($fetcher$proxy_url null)
    {
        
$this->fetcher $fetcher;
        
$this->proxy_url $proxy_url;
        if (!
$this->proxy_url) {
            
$this->proxy_url Auth_Yadis_getDefaultProxy();
        }
    }

    function 
queryURL($xri$service_type null)
    {
        
// trim off the xri:// prefix
        
$qxri substr(Auth_Yadis_toURINormal($xri), 6);
        
$hxri $this->proxy_url $qxri;
        
$args = array(
                      
'_xrd_r' => 'application/xrds+xml'
                      
);

        if (
$service_type) {
            
$args['_xrd_t'] = $service_type;
        } else {
            
// Don't perform service endpoint selection.
            
$args['_xrd_r'] .= ';sep=false';
        }

        
$query Auth_Yadis_XRIAppendArgs($hxri$args);
        return 
$query;
    }

    function 
query($xri$service_types$filters = array())
    {
        
$services = array();
        
$canonicalID null;
        foreach (
$service_types as $service_type) {
            
$url $this->queryURL($xri$service_type);
            
$response $this->fetcher->get($url);
            if (
$response->status != 200 and $response->status != 206) {
                continue;
            }
            
$xrds Auth_Yadis_XRDS::parseXRDS($response->body);
            if (!
$xrds) {
                continue;
            }
            
$canonicalID Auth_Yadis_getCanonicalID($xri,
                                                         
$xrds);

            if (
$canonicalID === false) {
                return 
null;
            }

            
$some_services $xrds->services($filters);
            
$services array_merge($services$some_services);
            
// TODO:
            //  * If we do get hits for multiple service_types, we're
            //    almost certainly going to have duplicated service
            //    entries and broken priority ordering.
        
}
        return array(
$canonicalID$services);
    }
}



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