Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
[ A ]
[ C ]
[ D ]
C: /
laragon /
etc /
apps /
phpRedisAdmin /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxrwxrwx
css
[ DIR ]
drwxrwxrwx
images
[ DIR ]
drwxrwxrwx
includes
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
.gitignore
58
B
-rw-rw-rw-
Dockerfile
280
B
-rw-rw-rw-
README.markdown
3.01
KB
-rw-rw-rw-
composer.json
603
B
-rw-rw-rw-
composer.lock
2.32
KB
-rw-rw-rw-
delete.php
2.04
KB
-rw-rw-rw-
docker-compose.yml
233
B
-rw-rw-rw-
edit.php
5.69
KB
-rw-rw-rw-
export.php
4.51
KB
-rw-rw-rw-
flush.php
174
B
-rw-rw-rw-
import.php
2.28
KB
-rw-rw-rw-
index.php
9.11
KB
-rw-rw-rw-
info.php
1000
B
-rw-rw-rw-
login.php
1.37
KB
-rw-rw-rw-
logout.php
1.11
KB
-rw-rw-rw-
overview.php
3.32
KB
-rw-rw-rw-
rename.php
1.19
KB
-rw-rw-rw-
save.php
325
B
-rw-rw-rw-
ttl.php
1.01
KB
-rw-rw-rw-
view.php
12.07
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : delete.php
<?php if (!isset($_POST['post'])) { die('Javascript needs to be enabled for you to delete keys.'); } require_once 'includes/common.inc.php'; if (isset($_GET['key'])) { // String if (!isset($_GET['type']) || ($_GET['type'] == 'string')) { // Delete the whole key. $redis->del($_GET['key']); } // Hash else if (($_GET['type'] == 'hash') && isset($_GET['hkey'])) { // Delete only the field in the hash. $redis->hDel($_GET['key'], $_GET['hkey']); } // List else if (($_GET['type'] == 'list') && isset($_GET['index'])) { // Lists don't have simple delete operations. // You can only remove something based on a value so we set the value at the index to some random value we hope doesn't occur elsewhere in the list. $value = str_rand(69); // This code assumes $value is not present in the list. To make sure of this we would need to check the whole list and place a Watch on it to make sure the list isn't modified in between. $redis->lSet($_GET['key'], $_GET['index'], $value); $redis->lRem($_GET['key'], 1, $value); } // Set else if (($_GET['type'] == 'set') && isset($_GET['value'])) { // Removing members from a set can only be done by supplying the member. $redis->sRem($_GET['key'], $_GET['value']); } // ZSet else if (($_GET['type'] == 'zset') && isset($_GET['value'])) { // Removing members from a zset can only be done by supplying the value. $redis->zRem($_GET['key'], $_GET['value']); } die('?view&s='.$server['id'].'&d='.$server['db'].'&key='.urlencode($_GET['key'])); } if (isset($_GET['tree'])) { $keys = $redis->keys($_GET['tree'].'*'); foreach ($keys as $key) { $redis->del($key); } die('?view&s='.$server['id'].'&d='.$server['db']); } if (isset($_GET['batch_del'])) { $keys = $_POST['selected_keys']; $keys = trim($keys, ','); if (empty($keys)) die('No keys to delete'); $keys = explode(',', $keys); foreach ($keys as $key) { $redis->del($key); } die('?view&s=' . $server['id'] . '&d=' . $server['db'] . '&key=' . urlencode($keys[0])); } ?>
Close