!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/samples/   drwxr-xr-x
Free 9.4 GB of 93.48 GB (10.05%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     wsdlclient12.php (5.69 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 *    $Id: wsdlclient12.php,v 1.4 2007/11/06 14:50:07 snichol Exp $
 *
 *    WSDL client sample.
 *
 *    Service: WSDL
 *    Payload: document/literal
 *    Transport: http
 *    Authentication: none
 */
require_once('../lib/nusoap.php');
require_once(
'../lib/class.wsdlcache.php');
$proxyhost = isset($_POST['proxyhost']) ? $_POST['proxyhost'] : '';
$proxyport = isset($_POST['proxyport']) ? $_POST['proxyport'] : '';
$proxyusername = isset($_POST['proxyusername']) ? $_POST['proxyusername'] : '';
$proxypassword = isset($_POST['proxypassword']) ? $_POST['proxypassword'] : '';

$method = isset($_GET['method']) ? $_GET['method'] : 'ItemSearch';

$SubscriptionId 'Your AWS subscription id';

$wsdlurl 'http://webservices.amazon.com/AWSECommerceService/US/AWSECommerceService.wsdl';
$cache = new wsdlcache('.'120);
$wsdl $cache->get($wsdlurl);
if (
is_null($wsdl)) {
    
$wsdl = new wsdl($wsdlurl,
                    
$proxyhost$proxyport$proxyusername$proxypassword);
    
$cache->put($wsdl);
} else {
    
$wsdl->debug_str '';
    
$wsdl->debug('Retrieved from cache');
}
$client = new nusoap_client($wsdltrue,
                        
$proxyhost$proxyport$proxyusername$proxypassword);
$err $client->getError();
if (
$err) {
    echo 
'<h2>Constructor error</h2><pre>' $err '</pre>';
}

$client->soap_defencoding 'UTF-8';

function 
GetCartCreateParams() {
    global 
$SubscriptionId;

    
// create items to be added to the cart
    
$item = array ();
    
$item[0] = array(  "ASIN" => "0596004206",
                       
"Quantity" => "1"
                    
);
    
$item[1] = array(  "ASIN" => "0596003277",
                       
"Quantity" => "2"
                    
);

    
// pack it to <Item> array
    
$items =  array("Item" => $item);
    
// Construct request parameters
    
$request = array("Items" => $items"ResponseGroup" => "CartSimilarities");
    
    
// Construct  all parameters
    
$cartCreate = array(    "SubscriptionId"  => $SubscriptionId,
                            
"Request" => $request
                         
);

    return 
$cartCreate;
}

function 
GetItemLookupParams() {
    global 
$SubscriptionId;

    
$itemLookupRequest[] = array(
        
'ItemId' => 'B0002IQML6',
        
'IdType' => 'ASIN',
        
'Condition' => 'All',
        
'ResponseGroup' => 'Large'
    
);
    
    
$itemLookupRequest[] = array(
        
'ItemId' => '0486411214',
        
'IdType' => 'ASIN',
        
'Condition' => 'New',
        
'ResponseGroup' => 'Small'
    
);

    
$itemLookup = array(
        
'SubscriptionId' => $SubscriptionId,
    
//    'AssociateTag' => '',
        
'Request' => $itemLookupRequest,
    );
    
    return 
$itemLookup;
}

function 
GetItemSearchParams() {
    global 
$SubscriptionId;

    
$itemSearchRequest = array(
        
'BrowseNode' => '53',
        
'ItemPage' => 1,
    
//    'ResponseGroup' => array('Request', 'Small'),
        
'SearchIndex' => 'Books',
        
'Sort' => 'salesrank'
    
);
    
    
$itemSearch = array(
        
'SubscriptionId' => $SubscriptionId,
    
//    'AssociateTag' => '',
    //    'Validate' => '',
    //    'XMLEscaping' => '',
    //    'Shared' => $itemSearchRequest,
        
'Request' => array($itemSearchRequest)
    );
    
    return 
$itemSearch;
}

function 
GetItemSearchParams2() {
    global 
$SubscriptionId;

    
$request = array(
        
"Keywords" => "postal stamps",
        
"SearchIndex" => "Books"
    
);

    
$itemSearch = array(
        
'SubscriptionId' => $SubscriptionId,
        
'Request' => $request
    
);

    return 
$itemSearch;
}

function 
GetListLookupParams() {
    global 
$SubscriptionId;

    
$listLookupRequest[] = array(
        
'ListId' => '1L0ZL7Y9FL4U0',
        
'ListType' => 'WishList',
        
'ProductPage' => 1,
        
'ResponseGroup' => 'ListFull',
        
'Sort' => 'LastUpdated'
    
);
    
    
$listLookupRequest[] = array(
        
'ListId' => '1L0ZL7Y9FL4U0',
        
'ListType' => 'WishList',
        
'ProductPage' => 2,
        
'ResponseGroup' => 'ListFull',
        
'Sort' => 'LastUpdated'
    
);
/*
// two lookup maximum
    $listLookupRequest[] = array(
        'ListId' => '1L0ZL7Y9FL4U0',
        'ListType' => 'WishList',
        'ProductPage' => 3,
        'ResponseGroup' => 'ListFull',
        'Sort' => 'LastUpdated'
    );
*/    
    
$listLookup = array(
        
'SubscriptionId' => $SubscriptionId,
    
//    'AssociateTag' => '',
        
'Request' => $listLookupRequest,
    );
    
    return 
$listLookup;
}

function 
GetListSearchParams() {
    global 
$SubscriptionId;

    
$listSearchRequest[] = array(
        
'FirstName' => 'Scott',
        
'LastName' => 'Nichol',
        
'ListType' => 'WishList'
    
);
    
    
$listSearch = array(
        
'SubscriptionId' => $SubscriptionId,
    
//    'AssociateTag' => '',
        
'Request' => $listSearchRequest,
    );
    
    return 
$listSearch;
}

if (
$method == 'ItemLookup') {
    
$result $client->call('ItemLookup', array('body' => GetItemLookupParams()));
} elseif (
$method == 'ItemSearch') {
    
$result $client->call('ItemSearch', array('body' => GetItemSearchParams()));
} elseif (
$method == 'ItemSearch2') {
    
$result $client->call('ItemSearch', array('body' => GetItemSearchParams2()));
} elseif (
$method == 'ListLookup') {
    
$result $client->call('ListLookup', array('body' => GetListLookupParams()));
} elseif (
$method == 'ListSearch') {
    
$result $client->call('ListSearch', array('body' => GetListSearchParams()));
} elseif (
$method == 'CartCreate') {
    
$result $client->call('CartCreate', array('body' => GetCartCreateParams()));
} else {
    echo 
"Unsupported method $method";
    exit;
}
// Check for a fault
if ($client->fault) {
    echo 
'<h2>Fault</h2><pre>';
    
print_r($result);
    echo 
'</pre>';
} else {
    
// Check for errors
    
$err $client->getError();
    if (
$err) {
        
// Display the error
        
echo '<h2>Error</h2><pre>' $err '</pre>';
    } else {
        
// Display the result
        
echo '<h2>Result</h2><pre>';
        
print_r($result);
        echo 
'</pre>';
    }
}
echo 
'<h2>Request</h2><pre>' htmlspecialchars($client->requestENT_QUOTES) . '</pre>';
echo 
'<h2>Response</h2><pre>' htmlspecialchars($client->responseENT_QUOTES) . '</pre>';
echo 
'<h2>Debug</h2><pre>' htmlspecialchars($client->debug_strENT_QUOTES) . '</pre>';
?>

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