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 | : 3.145.55.25
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 /
baltic /
web /
modules /
search /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
UnicodeTest.txt
44.18
KB
-rw-r--r--
search_embedded_form.info
295
B
-rw-r--r--
search_embedded_form.module
1.9
KB
-rw-r--r--
search_extra_type.info
273
B
-rw-r--r--
search_extra_type.module
1.63
KB
-rw-r--r--
search_node_tags.info
281
B
-rw-r--r--
search_node_tags.module
517
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : search_extra_type.module
<?php /** * @file * Dummy module implementing a search type for search module testing. */ /** * Implements hook_search_info(). */ function search_extra_type_search_info() { return array( 'title' => 'Dummy search type', 'path' => 'dummy_path', 'conditions_callback' => 'search_extra_type_conditions', ); } /** * Test conditions callback for hook_search_info(). */ function search_extra_type_conditions() { $conditions = array(); if (!empty($_REQUEST['search_conditions'])) { $conditions['search_conditions'] = $_REQUEST['search_conditions']; } return $conditions; } /** * Implements hook_search_execute(). * * This is a dummy search, so when search "executes", we just return a dummy * result containing the keywords and a list of conditions. */ function search_extra_type_search_execute($keys = NULL, $conditions = NULL) { if (!$keys) { $keys = ''; } return array( array( 'link' => url('node'), 'type' => 'Dummy result type', 'title' => 'Dummy title', 'snippet' => "Dummy search snippet to display. Keywords: {$keys}\n\nConditions: " . print_r($conditions, TRUE), ), ); } /** * Implements hook_search_page(). * * Adds some text to the search page so we can verify that it runs. */ function search_extra_type_search_page($results) { $output['prefix']['#markup'] = '<h2>Test page text is here</h2> <ol class="search-results">'; foreach ($results as $entry) { $output[] = array( '#theme' => 'search_result', '#result' => $entry, '#module' => 'search_extra_type', ); } $output['suffix']['#markup'] = '</ol>' . theme('pager'); return $output; }
Close