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 | : 3.147.78.249
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 /
kusdde /
adm /
admin /
plugins /
raphael /
[ HOME SHELL ]
Name
Size
Permission
Action
Gruntfile.js
2.06
KB
-rwxr-xr-x
raphael.js
304.86
KB
-rwxr-xr-x
raphael.min.js
90.35
KB
-rwxr-xr-x
raphael.no-deps.js
292.18
KB
-rwxr-xr-x
raphael.no-deps.min.js
88.02
KB
-rwxr-xr-x
webpack.config.js
1.01
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : webpack.config.js
"use strict"; const webpack = require("webpack"); const fs = require("fs"); const args = process.argv; let plugins = [ new webpack.BannerPlugin(fs.readFileSync('./dev/banner.txt', 'utf8'), { raw: true, entryOnly: true }) ]; let externals = []; let filename = "raphael"; if(args.indexOf('--no-deps') !== -1){ console.log('Building version without deps'); externals.push("eve"); filename += ".no-deps" } if(args.indexOf('--min') !== -1){ console.log('Building minified version'); plugins.push( new webpack.optimize.UglifyJsPlugin({ compress:{ dead_code: false, unused: false } }) ); filename += ".min" } module.exports = { entry: './dev/raphael.amd.js', output: { filename: filename + ".js", libraryTarget: "umd", library: "Raphael" }, externals: externals, plugins: plugins, loaders: [ { test: /\.js$/, loader: "eslint-loader", include: "./dev/" } ], eslint: { configFile: './.eslintrc' }, resolve: { modulesDirectories: ["bower_components"] } };
Close