!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\xampp\xampp\htdocs\jaime\Xcode\XML\   drwxrwxrwx
Free 7.96 GB of 239.26 GB (3.33%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     21.php (2.77 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Include PEAR::SOAP Client class
require_once('SOAP/Client.php');

// Instantiate the SOAP_WSDL class; Modify this!
$wsdl=new SOAP_WSDL('http://localhost/phprecipes/XML/20.php?wsdl');

// Instantiate the ArticleClient class
$articleClient=$wsdl->getProxy();

// Start building a table
$table="<table>\n";

// If we're viewing a single article
if ( isset ( $_GET['id'] ) ) {
    
// Call the getArticle() SOAP method
    
$article $articleClient->getArticleById($_GET['id']);

    
// Handle any errors
    
if (PEAR::isError($article)) {
        
$fault=$article->getFault();
        
trigger_error('Fault: '.$fault->faultcode.' '.$fault->faultstring);
        
$table.="<tr>\n<td>Service unavailable at this time</td>\n</tr>\n";
    } else {
        
// Build the table
        
$table.="<tr>\n<td class=\"title\">".$article->title.
                
"</td>\n</tr>\n";
        
$table.="<tr>\n<td class=\"author\">by ".$article->author.
                
"</td>\n</tr>\n";
        
$table.="<tr>\n<td>".$article->body."</td>\n</tr>\n";
    }

} else {
    
// Call the getArticles() SOAP method
    
$articles $articleClient->getArticles();

    
// Handle any errors
    
if (PEAR::isError($articles)) {
        
$fault=$articles->getFault();
        
trigger_error('Fault: '.$fault->faultcode.' '.$fault->faultstring);
        
$table.="<tr>\n<td>Service unavailable at this time</td>\n</tr>\n";
    } else {
        
// Loop through each article building the table
        
foreach ( $articles as $article ) {
            
$table.="<tr>\n";
            
$table.="<td><a href=\"".$_SERVER['PHP_SELF'].
                    
"?id=".$article->article_id."\">".$article->title."</a></td>";
            
$table.="<td>".$article->author."</td>";
            
$table.="</tr>\n";
        }
    }
}

// Finish the table
$table.="</table>\n";
?>
<!doctype html public "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> Sitepoint Articles </title>
<meta http-equiv="Content-type" content="text/html"
    charset="iso-8859-1" />
<style type="text/css">
h1 {
    font-family: verdana;
    font-size: 15px;
    font-weight: bold;
    color: navy;
}
table {
    background-color: silver;
    width: 450px;
}
th {
    background-color: #f2f3f5;
    font-family: verdana;
    font-size: 11px;
    font-weight: bold;
    text-align: left;
}
td {
    background-color: white;
    font-family: verdana;
    font-size: 11px;
}
a {
    font-weight: bold;
}
.title {
    font-size: 14px;
    font-weight: bold;
}
.author {
    font-weight: italic;
    text-align: right;
}
</style>
</head>
<body>
<h1>Latest Articles</h1>
<?php echo ( $table ); ?>
</body>
</html>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--