One Hat Cyber Team
Your IP :
216.73.217.146
Server IP :
50.6.229.107
Server :
Linux server.hostburly.com 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.2.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
andjemzt
/
nportal.andjemztech.com
/
examAdmin
/
View File Name :
login.php
<?php session_start(); include_once("lang.php"); $_SESSION['logged'] = 0; if (isset($_POST['submit'])) { require ("myloginquery.php"); if ($_POST['username'] == "$thisusername" && $_POST['password'] == "$thispassword") { $_SESSION['logged'] = $exam_sessionid_wd; $_SESSION['myusername'] = $username; $_SESSION['officer_id'] = $officer_id; $_SESSION['mymstatus'] = $mstatus; header ("Refresh: 2; URL=" . $_POST['redirect'] . " "); echo "You are being redirected to your original page request<br>"; echo "(If your browser doesn't support this, <a href=\"" .$_POST['redirect']. "\">click here</a>)"; } else { ?> <? require("inc/headerlogin.php"); ?> <td class="text"> <form action="login.php" method="post" autocomplete=off> <input type="hidden" name="redirect" value="<?php echo $_POST['redirect']; ?>"> <table width="400" border="0" cellspacing="0" cellpadding="5"> <tr> <td colspan="2"><? echo $w_update ?></td> </tr> <tr> <td colspan="2"><? echo $exams_invalid_wd ?></td> </tr> <tr> <td><? echo $exams_user_wd ?></td> <td><input type="text" name="username"></td> </tr> <tr> <td><? echo $exams_pass_wd ?></td> <td><input type="password" name="password"></td> </tr> <tr> <td> </td> <td><input type="submit" name="submit" value="Login"></td> </tr> <tr> <td colspan="2"><? echo $exams_homelink_wd ?></td> </tr> </table> </form> </td> <? require("inc/footer.php"); ?> <?php } } else { ?> <? require("inc/headerlogin.php"); ?> <td class="text"> <form action="login.php" method="post" autocomplete=off> <input type="hidden" name="redirect" value="<?php echo $_GET['redirect']; ?>"> <table width="400" border="0" cellspacing="0" cellpadding="5"> <tr> <td colspan="2"><? echo $w_update ?></td> </tr> <tr> <td colspan="2"><? echo $exams_valid_wd ?></td> </tr> <tr> <td><? echo $exams_user_wd ?></td> <td><input type="text" name="username"></td> </tr> <tr> <td><? echo $exams_pass_wd ?></td> <td><input type="password" name="password"></td> </tr> <tr> <td> </td> <td><input type="submit" name="submit" value="Login"></td> </tr> <tr> <td colspan="2"><? //echo $exams_homelink_wd ?></td> </tr> </table> </form> </td> <? require("inc/footer.php"); ?> <?php } ?>