Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
TF89388 /
wp-content /
themes /
noisa /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
icons
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
page-templates
[ DIR ]
drwxr-xr-x
vc_templates
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
404.php
1021
B
-rw-r--r--
archive.php
2.28
KB
-rw-r--r--
author.php
2.29
KB
-rw-r--r--
category.php
2.28
KB
-rw-r--r--
comments.php
4.94
KB
-rw-r--r--
content-custom.php
484
B
-rw-r--r--
content-page.php
599
B
-rw-r--r--
content-search.php
2.35
KB
-rw-r--r--
content-single.php
753
B
-rw-r--r--
content.php
11.43
KB
-rw-r--r--
footer.php
1.46
KB
-rw-r--r--
functions-extended.php
16.18
KB
-rw-r--r--
functions.php
25.77
KB
-rw-r--r--
header.php
4.85
KB
-rw-r--r--
index.php
1.88
KB
-rw-r--r--
page.php
1.33
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
0
B
-rw-r--r--
screenshot.png
496.33
KB
-rw-r--r--
search.php
2.27
KB
-rw-r--r--
searchform.php
356
B
-rw-r--r--
sidebar-category.php
498
B
-rw-r--r--
sidebar-custom.php
1.13
KB
-rw-r--r--
sidebar-footer-col1.php
446
B
-rw-r--r--
sidebar-footer-col2.php
446
B
-rw-r--r--
sidebar-footer-col3.php
446
B
-rw-r--r--
sidebar-slidebar.php
441
B
-rw-r--r--
sidebar.php
484
B
-rw-r--r--
single-noisa_artists.php
1.71
KB
-rw-r--r--
single-noisa_events.php
1.74
KB
-rw-r--r--
single-noisa_gallery.php
5.98
KB
-rw-r--r--
single-noisa_releases.php
1.74
KB
-rw-r--r--
single.php
1.74
KB
-rw-r--r--
style.css
147.06
KB
-rw-r--r--
tag.php
2.27
KB
-rw-r--r--
taxonomy.php
14.91
KB
-rw-r--r--
woocommerce.php
2.92
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : woocommerce.php
<?php /** * Theme Name: Noisa * Theme Author: Mariusz Rek - Rascals Themes * Theme URI: http://rascalsthemes.com/noisa * Author URI: http://rascalsthemes.com * File: woocommerce.php * @package noisa * @since 1.0.0 */ get_header(); // Get panel options $noisa_opts = noisa_opts(); // Copy query $temp_post = $post; $query_temp = $wp_query; // Shop id $shop_id = get_option( 'woocommerce_shop_page_id' ); // Get layout $noisa_layout = get_post_meta( $shop_id, '_layout', true ); $noisa_layout = isset( $noisa_layout ) && $noisa_layout !== '' ? $noisa_layout = $noisa_layout : $noisa_layout = 'wide'; if ( ! is_shop() ) { $noisa_layout = 'wide'; } // Get Custom Intro Section if ( is_shop() ) { get_template_part( 'inc/custom-intro' ); } else { echo '<section class="intro intro-disabled light-bg clearfix"></section>'; } ?> <?php // Hooks and functions /* Remove default page title */ add_filter('woocommerce_show_page_title', 'override_page_title'); function override_page_title() { return false; } /* Change default catalog image */ remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); add_action( 'woocommerce_before_shop_loop_item_title', 'wc_catalog_thumb', 10); /* WooCommerce Loop Product Thumbs */ function wc_catalog_thumb() { echo wc_get_product_thumbnail(); } /* WooCommerce Product Thumbnail */ if ( ! function_exists( 'wc_get_product_thumbnail' ) ) { function wc_get_product_thumbnail( $size = 'shop_catalog', $placeholder_width = 0, $placeholder_height = 0 ) { global $post, $woocommerce; if ( ! $placeholder_width ) { $placeholder_width = wc_get_image_size( 'shop_catalog_image_width' ); } if ( ! $placeholder_height ) { $placeholder_height = wc_get_image_size( 'shop_catalog_image_height' ); } $output = '<span class="thumb-icon">'; if ( has_post_thumbnail() ) { $output .= get_the_post_thumbnail( $post->ID, $size ); } else { $output .= '<img src="'. woocommerce_placeholder_img_src() .'" alt="Placeholder" width="' . $placeholder_width . '" height="' . $placeholder_height . '" />'; } $output .= '<span class="icon plus"></span>'; $output .= '</span>'; return $output; } } ?> <div id="content"> <div class="container blog-classic clearfix"> <div role="main" class="main <?php echo esc_attr( $noisa_layout ) ?>"> <?php woocommerce_content(); ?> </div> <!-- .main --> <?php if ( $noisa_layout !== 'wide' && $noisa_layout !== 'thin' && $noisa_layout !== 'vc' ) : ?> <?php get_sidebar( 'custom' ); ?> <?php endif; ?> </div> <!-- .container --> </div> <!-- #content --> <?php // Get orginal query $post = $temp_post; $wp_query = $query_temp; get_footer();
Close