!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:     9.php (1.99 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Include the RssGenerator class
require_once('XML/RssGenerator.php');

// Some sample data representing a database query
$articles = array (
    array (
        
'title'=>'Verify a User\'s Email Address Using PHP',
        
'link'=>'http://www.sitepoint.com/article/1051',
        
'description'=>'So you published a registration page on your site... 
          and all you get is fake email addresses? Joe shows how to use
          PHP\'s checkdnsrr function to ensure the mail domain exists,
          and those addresses are valid.'
          
),
    array (
        
'title'=>'Using Regular Expressions in PHP',
        
'link'=>'http://www.sitepoint.com/article/974',
        
'description'=>'Are you getting stuck on PHP\'s regular expressions?
          Look no further than James\' down-and-dirty how-to, which tells
          you all the basics you need to know, and shows how to put them
          to good use!'
          
)
);

// Define variables to be used in building the feed
$title='Sitepoint';
$link='http://www.sitepoint.com';
$desc='Empowering Web Developers since 1997';
$about='http://www.sitepoint.com/about/';
$logo='http://www.sitepoint.com/images/sitepoint-logo.gif';
$searchTitle='Search';
$searchDesc='Search Sitepoint...';
$searchUrl='http://www.sitepoint.com/search/search.php';
$searchVar='q';

// Instantiate the RssGenerator
$rssGen=new RssGenerator();

// Add the channel information
$rssGen->addChannel($title,$link,$desc,$about);

// Add the image description
$rssGen->addImage($logo,$title,$link);

// Add the search description
$rssGen->addSearch($searchTitle,$searchDesc,$searchUrl,$searchVar);

// Loop through the articles...
foreach ($articles as $article) {
    
    
// Add the <item /> for each article
    
$rssGen->addItem($article['title'],
                     
$article['link'],$article['description']);
}

// Send the XML Mime type
header 'Content-type: text/xml' );

// Display the document
echo ( $rssGen->toString() );
?>

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