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
about-us.php
2.021KB
edt
ren
ceo-message.php
2.024KB
edt
ren
contact-us.php
6.12KB
edt
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
includes.php
1.394KB
edt
ren
index.php
8.65KB
edt
ren
our-team.php
3.184KB
edt
ren
slider.php
2.43KB
edt
ren
staff.php
3.029KB
edt
ren
why-us.php
2.235KB
edt
ren
<?php require_once "dbConnection.php"; $db = new dbConnection(); if(isset($_GET["pg"])) { $pg = $_GET["pg"]; $qry = "SELECT * FROM contents WHERE pgname LIKE '$pg' LIMIT 1"; $res = $db -> query($qry); $row = $db -> fetch($res); $titlex = stripslashes($row["title"]); $category = stripslashes($row["category"]); $keywords = stripslashes($row["keywords"]); $descriptions = stripslashes($row["descriptions"]); $imgtitle = stripslashes($row["imgtitle"]); $imgdesc = stripslashes($row["imgdesc"]); $picture = $row["pimage"]; $page_content = stripslashes($row["contents"]); } else { $qry = "SELECT * FROM contents WHERE pgname LIKE 'about-us' LIMIT 1"; $res = $db -> query($qry); $row = $db -> fetch($res); $titlex = stripslashes($row["title"]); $category = stripslashes($row["category"]); $keywords = stripslashes($row["keywords"]); $descriptions = stripslashes($row["descriptions"]); $imgtitle = stripslashes($row["imgtitle"]); $imgdesc = stripslashes($row["imgdesc"]); $picture = $row["pimage"]; $page_content = stripslashes($row["contents"]); } ?> <!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><?=$titlex?> :. Premier Pain Centers P. A.</title> <meta name="keywords" content="<?=$keywords?>"> <meta name="description" content="<?=$descriptions?>"> <?php require_once "includes.php"; ?> </head> <body> <div class="body-wrapper" id="page-top"> <?php require_once "header.php"; ?> <!-- Page Title --> <section class="page-title"> <div class="container"> <div class="row"> <div class="col-sm-12 col-md-12" id="title"> <div class="page-title-inner"> <h2><?=$titlex?></h2> </div> </div> </div> </div> </section> <!-- /Page Title --> <!-- Main Body --> <section class="main-body symptoms"> <div class="container"> <div class="row"> <div class="col-sm-12 col-md-12"> <?php if(!empty($picture) && file_exists($picture)) { ?> <img src="<?=$picture?>" alt="<?=$imgtitle?>" class="img-responsive" style="float:left; margin:20px; float:left;" > <?php } ?> <?=$page_content?> </div> </div> </div> </section> <!-- /Main Body --> <?php require_once "footer.php"; ?> </div> <?php require_once "fincludes.php"; ?> </body> </html>