Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.218.250.241
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
kus /
phdadm /
admin /
plugins /
morrisjs /
[ HOME SHELL ]
Name
Size
Permission
Action
examples
[ DIR ]
drwxr-xr-x
less
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
spec
[ DIR ]
drwxr-xr-x
.gitignore
76
B
-rwxr-xr-x
.travis.yml
590
B
-rwxr-xr-x
Gruntfile.js
2.22
KB
-rwxr-xr-x
README.md
9.88
KB
-rwxr-xr-x
bower.json
391
B
-rwxr-xr-x
bower.travis.json
390
B
-rwxr-xr-x
morris.css
433
B
-rwxr-xr-x
morris.js
64.5
KB
-rwxr-xr-x
morris.min.js
34.82
KB
-rwxr-xr-x
package.json
871
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Gruntfile.js
module.exports = function (grunt) { require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), coffee: { lib: { options: { bare: false }, files: { 'morris.js': ['build/morris.coffee'] } }, spec: { options: { bare: true }, files: { 'build/spec.js': ['build/spec.coffee'] } }, }, concat: { 'build/morris.coffee': { options: { banner: "### @license\n"+ "<%= pkg.name %> v<%= pkg.version %>\n"+ "Copyright <%= (new Date()).getFullYear() %> <%= pkg.author.name %> All rights reserved.\n" + "Licensed under the <%= pkg.license %> License.\n" + "###\n", }, src: [ 'lib/morris.coffee', 'lib/morris.grid.coffee', 'lib/morris.hover.coffee', 'lib/morris.line.coffee', 'lib/morris.area.coffee', 'lib/morris.bar.coffee', 'lib/morris.donut.coffee' ], dest: 'build/morris.coffee' }, 'build/spec.coffee': ['spec/support/**/*.coffee', 'spec/lib/**/*.coffee'] }, less: { all: { src: 'less/*.less', dest: 'morris.css', options: { compress: true } } }, uglify: { build: { options: { preserveComments: 'some' }, files: { 'morris.min.js': 'morris.js' } } }, mocha: { index: ['spec/specs.html'], options: {run: true} }, watch: { all: { files: ['lib/**/*.coffee', 'spec/lib/**/*.coffee', 'spec/support/**/*.coffee', 'less/**/*.less'], tasks: 'default' }, dev: { files: 'lib/*.coffee' , tasks: ['concat:build/morris.coffee', 'coffee:lib'] } }, shell: { visual_spec: { command: './run.sh', options: { stdout: true, failOnError: true, execOptions: { cwd: 'spec/viz' } } } } }); grunt.registerTask('default', ['concat', 'coffee', 'less', 'uglify', 'mocha', 'shell:visual_spec']); };
Close