Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.69.17.90
Cant Read [ /etc/named.conf ]
7.4.33
aja
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 /
aja /
public_html /
ead.aptans /
admin /
mnet /
[ HOME SHELL ]
Name
Size
Permission
Action
access_control.php
8.61
KB
-rw-rw-r--
delete.php
2.08
KB
-rw-r--r--
index.php
4.92
KB
-rw-rw-r--
peer_forms.php
8.44
KB
-rw-r--r--
peers.php
10.21
KB
-rw-rw-r--
profilefields.php
3.05
KB
-rw-r--r--
profilefields_form.php
2.82
KB
-rw-r--r--
services.php
3.32
KB
-rw-r--r--
services_form.php
3.01
KB
-rw-r--r--
tabs.php
1.93
KB
-rw-rw-r--
testclient.php
7.61
KB
-rw-r--r--
trustedhosts.html
2.21
KB
-rw-rw-r--
trustedhosts.php
1.97
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : trustedhosts.php
<?php // Allows the admin to configure services for remote hosts require(__DIR__.'/../../config.php'); require_once($CFG->libdir.'/adminlib.php'); include_once($CFG->dirroot.'/mnet/lib.php'); admin_externalpage_setup('trustedhosts'); if (!extension_loaded('openssl')) { echo $OUTPUT->header(); print_error('requiresopenssl', 'mnet', '', NULL, true); } $site = get_site(); $trusted_hosts = '';//array(); $old_trusted_hosts = get_config('mnet', 'mnet_trusted_hosts'); if (!empty($old_trusted_hosts)) { $old_trusted_hosts = explode(',', $old_trusted_hosts); } else { $old_trusted_hosts = array(); } $test_ip_address = optional_param('testipaddress', NULL, PARAM_HOST); $in_range = false; if (!empty($test_ip_address)) { foreach($old_trusted_hosts as $host) { if (address_in_subnet($test_ip_address, $host)) { $in_range = true; $validated_by = $host; break; } } } /// If data submitted, process and store if (($form = data_submitted()) && confirm_sesskey()) { $hostlist = preg_split("/[\s,]+/", $form->hostlist); foreach($hostlist as $host) { list($address, $mask) = explode('/', $host.'/'); if (empty($address)) continue; if (strlen($mask) == 0) $mask = 32; $trusted_hosts .= trim($address).'/'.trim($mask)."\n"; unset($address, $mask); } set_config('mnet_trusted_hosts', str_replace("\n", ',', $trusted_hosts), 'mnet'); } elseif (!empty($old_trusted_hosts)) { foreach($old_trusted_hosts as $host) { list($address, $mask) = explode('/', $host.'/'); if (empty($address)) continue; if (strlen($mask) == 0) $mask = 32; $trusted_hosts .= trim($address).'/'.trim($mask)."\n"; unset($address, $mask); } } include('./trustedhosts.html');
Close