UnknownSec Bypass
403
:
/
var
/
www
/
html
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
test.php
<?php session_start(); if ($_POST["vercode"] != $_SESSION["vercode"] OR $_SESSION["vercode"]=='') { echo "<script>alert('Incorrect verification code');</script>" ; } else{ echo "<script>alert('Verification code match !');</script>" ; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Elegant Account Login Form with Avatar Icon</title> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> <link href="https://fonts.googleapis.com/css?family=Roboto|Varela+Round" rel="stylesheet"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <style type="text/css"> body { color: #999; background: #f5f5f5; font-family: 'Varela Round', sans-serif; } .form-control { box-shadow: none; border-color: #ddd; } .form-control:focus { border-color: #4aba70; } .login-form { width: 350px; margin: 0 auto; padding: 30px 0; } .login-form form { color: #434343; border-radius: 1px; margin-bottom: 15px; background: #fff; border: 1px solid #f3f3f3; box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); padding: 30px; } .login-form h4 { text-align: center; font-size: 22px; margin-bottom: 20px; } .login-form .avatar { color: #fff; margin: 0 auto 30px; text-align: center; width: 100px; height: 100px; border-radius: 50%; z-index: 9; background: #4aba70; padding: 15px; box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1); } .login-form .avatar i { font-size: 62px; } .login-form .form-group { margin-bottom: 20px; } .login-form .form-control, .login-form .btn { min-height: 40px; border-radius: 2px; transition: all 0.5s; } .login-form .close { position: absolute; top: 15px; right: 15px; } .login-form .btn { background: #4aba70; border: none; line-height: normal; } .login-form .btn:hover, .login-form .btn:focus { background: #42ae68; } .login-form .checkbox-inline { float: left; } .login-form input[type="checkbox"] { margin-top: 2px; } .login-form .forgot-link { float: right; } .login-form .small { font-size: 13px; } .login-form a { color: #4aba70; } </style> </head> <body> <div class="login-form"> <form action="" method="post"> <div class="avatar"><i class="material-icons"></i></div> <h4 class="modal-title">Login to Your Account</h4> <div class="form-group"> <input type="text" class="form-control" placeholder="Username" required="required"> </div> <div class="form-group"> <input type="password" class="form-control" placeholder="Password" required="required"> </div> <div class="form-group"> <input type="text" name="vercode" class="form-control" placeholder="Verfication Code" required="required"> </div> <div class="form-group small clearfix"> <label class="checkbox-inline">Verification Code</label> <img src="captcha.php" > </div> <input type="submit" class="btn btn-primary btn-block btn-lg" value="Login"> </form> </div> </body> </html>
Copyright © 2025 - UnknownSec