!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\php\PEAR\Zend\Search\Lucene\Search\   drwxrwxrwx
Free 7.25 GB of 239.26 GB (3.03%)
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:     Query.php (6.85 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Zend Framework
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://framework.zend.com/license/new-bsd
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@zend.com so we can send you a copy immediately.
 *
 * @category   Zend
 * @package    Zend_Search_Lucene
 * @subpackage Search
 * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 * @version    $Id: Query.php 18954 2009-11-12 20:01:33Z alexander $
 */


/**
 * @category   Zend
 * @package    Zend_Search_Lucene
 * @subpackage Search
 * @copyright  Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 */
abstract class Zend_Search_Lucene_Search_Query
{
    
/**
     * query boost factor
     *
     * @var float
     */
    
private $_boost 1;

    
/**
     * Query weight
     *
     * @var Zend_Search_Lucene_Search_Weight
     */
    
protected $_weight null;

    
/**
     * Current highlight color
     *
     * @var integer
     */
    
private $_currentColorIndex 0;

    
/**
     * Gets the boost for this clause.  Documents matching
     * this clause will (in addition to the normal weightings) have their score
     * multiplied by boost.   The boost is 1.0 by default.
     *
     * @return float
     */
    
public function getBoost()
    {
        return 
$this->_boost;
    }

    
/**
     * Sets the boost for this query clause to $boost.
     *
     * @param float $boost
     */
    
public function setBoost($boost)
    {
        
$this->_boost $boost;
    }

    
/**
     * Score specified document
     *
     * @param integer $docId
     * @param Zend_Search_Lucene_Interface $reader
     * @return float
     */
    
abstract public function score($docIdZend_Search_Lucene_Interface $reader);

    
/**
     * Get document ids likely matching the query
     *
     * It's an array with document ids as keys (performance considerations)
     *
     * @return array
     */
    
abstract public function matchedDocs();

    
/**
     * Execute query in context of index reader
     * It also initializes necessary internal structures
     *
     * Query specific implementation
     *
     * @param Zend_Search_Lucene_Interface $reader
     * @param Zend_Search_Lucene_Index_DocsFilter|null $docsFilter
     */
    
abstract public function execute(Zend_Search_Lucene_Interface $reader$docsFilter null);

    
/**
     * Constructs an appropriate Weight implementation for this query.
     *
     * @param Zend_Search_Lucene_Interface $reader
     * @return Zend_Search_Lucene_Search_Weight
     */
    
abstract public function createWeight(Zend_Search_Lucene_Interface $reader);

    
/**
     * Constructs an initializes a Weight for a _top-level_query_.
     *
     * @param Zend_Search_Lucene_Interface $reader
     */
    
protected function _initWeight(Zend_Search_Lucene_Interface $reader)
    {
        
// Check, that it's a top-level query and query weight is not initialized yet.
        
if ($this->_weight !== null) {
            return 
$this->_weight;
        }

        
$this->createWeight($reader);
        
$sum $this->_weight->sumOfSquaredWeights();
        
$queryNorm $reader->getSimilarity()->queryNorm($sum);
        
$this->_weight->normalize($queryNorm);
    }

    
/**
     * Re-write query into primitive queries in the context of specified index
     *
     * @param Zend_Search_Lucene_Interface $index
     * @return Zend_Search_Lucene_Search_Query
     */
    
abstract public function rewrite(Zend_Search_Lucene_Interface $index);

    
/**
     * Optimize query in the context of specified index
     *
     * @param Zend_Search_Lucene_Interface $index
     * @return Zend_Search_Lucene_Search_Query
     */
    
abstract public function optimize(Zend_Search_Lucene_Interface $index);

    
/**
     * Reset query, so it can be reused within other queries or
     * with other indeces
     */
    
public function reset()
    {
        
$this->_weight null;
    }


    
/**
     * Print a query
     *
     * @return string
     */
    
abstract public function __toString();

    
/**
     * Return query terms
     *
     * @return array
     */
    
abstract public function getQueryTerms();

    
/**
     * Query specific matches highlighting
     *
     * @param Zend_Search_Lucene_Search_Highlighter_Interface $highlighter  Highlighter object (also contains doc for highlighting)
     */
    
abstract protected function _highlightMatches(Zend_Search_Lucene_Search_Highlighter_Interface $highlighter);

    
/**
     * Highlight matches in $inputHTML
     *
     * @param string $inputHTML
     * @param string  $defaultEncoding   HTML encoding, is used if it's not specified using Content-type HTTP-EQUIV meta tag.
     * @param Zend_Search_Lucene_Search_Highlighter_Interface|null $highlighter
     * @return string
     */
    
public function highlightMatches($inputHTML$defaultEncoding ''$highlighter null)
    {
        if (
$highlighter === null) {
            require_once 
'Zend/Search/Lucene/Search/Highlighter/Default.php';
            
$highlighter = new Zend_Search_Lucene_Search_Highlighter_Default();
        }

        
/** Zend_Search_Lucene_Document_Html */
        
require_once 'Zend/Search/Lucene/Document/Html.php';

        
$doc Zend_Search_Lucene_Document_Html::loadHTML($inputHTMLfalse$defaultEncoding);
        
$highlighter->setDocument($doc);

        
$this->_highlightMatches($highlighter);

        return 
$doc->getHTML();
    }

    
/**
     * Highlight matches in $inputHtmlFragment and return it (without HTML header and body tag)
     *
     * @param string $inputHtmlFragment
     * @param string  $encoding   Input HTML string encoding
     * @param Zend_Search_Lucene_Search_Highlighter_Interface|null $highlighter
     * @return string
     */
    
public function htmlFragmentHighlightMatches($inputHtmlFragment$encoding 'UTF-8'$highlighter null)
    {
        if (
$highlighter === null) {
            require_once 
'Zend/Search/Lucene/Search/Highlighter/Default.php';
            
$highlighter = new Zend_Search_Lucene_Search_Highlighter_Default();
        }

        
$inputHTML '<html><head><META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8"/></head><body>'
                   
iconv($encoding'UTF-8//IGNORE'$inputHtmlFragment) . '</body></html>';

        
/** Zend_Search_Lucene_Document_Html */
        
require_once 'Zend/Search/Lucene/Document/Html.php';

        
$doc Zend_Search_Lucene_Document_Html::loadHTML($inputHTML);
        
$highlighter->setDocument($doc);

        
$this->_highlightMatches($highlighter);

        return 
$doc->getHtmlBody();
    }
}


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