!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.4.16. PHP/5.4.16 

uname -a: Linux roko-bkp 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 

uid=48(apache) gid=48(apache) groups=48(apache),1003(webmaster) 

Safe-mode: OFF (not secure)

/var/www/html/nusoap-0.9.5/lib/   drwxr-xr-x
Free 9.43 GB of 93.48 GB (10.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     class.soap_fault.php (2.25 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php




/**
* Contains information for a SOAP fault.
* Mainly used for returning faults from deployed functions
* in a server instance.
* @author   Dietrich Ayala <dietrich@ganx4.com>
* @version  $Id: class.soap_fault.php,v 1.14 2007/04/11 15:49:47 snichol Exp $
* @access public
*/
class nusoap_fault extends nusoap_base {
    
/**
     * The fault code (client|server)
     * @var string
     * @access private
     */
    
var $faultcode;
    
/**
     * The fault actor
     * @var string
     * @access private
     */
    
var $faultactor;
    
/**
     * The fault string, a description of the fault
     * @var string
     * @access private
     */
    
var $faultstring;
    
/**
     * The fault detail, typically a string or array of string
     * @var mixed
     * @access private
     */
    
var $faultdetail;

    
/**
    * constructor
    *
    * @param string $faultcode (SOAP-ENV:Client | SOAP-ENV:Server)
    * @param string $faultactor only used when msg routed between multiple actors
    * @param string $faultstring human readable error message
    * @param mixed $faultdetail detail, typically a string or array of string
    */
    
function nusoap_fault($faultcode,$faultactor='',$faultstring='',$faultdetail=''){
        
parent::nusoap_base();
        
$this->faultcode $faultcode;
        
$this->faultactor $faultactor;
        
$this->faultstring $faultstring;
        
$this->faultdetail $faultdetail;
    }

    
/**
    * serialize a fault
    *
    * @return    string    The serialization of the fault instance.
    * @access   public
    */
    
function serialize(){
        
$ns_string '';
        foreach(
$this->namespaces as $k => $v){
            
$ns_string .= "\n  xmlns:$k=\"$v\"";
        }
        
$return_msg =
            
'<?xml version="1.0" encoding="'.$this->soap_defencoding.'"?>'.
            
'<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"'.$ns_string.">\n".
                
'<SOAP-ENV:Body>'.
                
'<SOAP-ENV:Fault>'.
                    
$this->serialize_val($this->faultcode'faultcode').
                    
$this->serialize_val($this->faultactor'faultactor').
                    
$this->serialize_val($this->faultstring'faultstring').
                    
$this->serialize_val($this->faultdetail'detail').
                
'</SOAP-ENV:Fault>'.
                
'</SOAP-ENV:Body>'.
            
'</SOAP-ENV:Envelope>';
        return 
$return_msg;
    }
}

/**
 * Backward compatibility
 */
class soap_fault extends nusoap_fault {
}


?>

:: 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 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0032 ]--