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 : synonyms.js
'use strict' // A list of all the synonyms of assert methods. // In addition to these, multi-word camelCase are also synonymized to // all lowercase and snake_case const multiword = obj => Object.keys(obj).reduce((s, i) => (s[i] = [ multiword_(i) ] .concat(obj[i].map(multiword_)) .reduce((s, i) => (s.push.apply(s, i), s), []), s), obj) const multiword_ = str => str.match(/[A-Z]/) ? [ str, str.toLowerCase(), str.replace(/[A-Z]/g, $0 => '_' + $0.toLowerCase()) ] : [str] module.exports = multiword({ ok: ['true', 'assert'], notOk: ['false', 'assertNot'], error: ['ifError', 'ifErr'], throws: ['throw'], doesNotThrow: ['notThrow'], // exactly the same. === equal: [ 'equals', 'isEqual', 'is', 'strictEqual', 'strictEquals', 'strictIs', 'isStrict', 'isStrictly' ], // not equal. !== not: [ 'inequal', 'notEqual', 'notEquals', 'notStrictEqual', 'notStrictEquals', 'isNotEqual', 'isNot', 'doesNotEqual', 'isInequal' ], // deep equivalence. == for scalars same: [ 'equivalent', 'looseEqual', 'looseEquals', 'deepEqual', 'deepEquals', 'isLoose', 'looseIs', 'isEquivalent' ], // deep inequivalence. != for scalars notSame: [ 'inequivalent', 'looseInequal', 'notDeep', 'deepInequal', 'notLoose', 'looseNot', 'notEquivalent', 'isNotDeepEqual', 'isNotDeeply', 'notDeepEqual', 'isInequivalent', 'isNotEquivalent' ], // deep equivalence, === for scalars strictSame: [ 'strictEquivalent', 'strictDeepEqual', 'sameStrict', 'deepIs', 'isDeeply', 'isDeep', 'strictDeepEquals' ], // deep inequivalence, !== for scalars strictNotSame: [ 'strictInequivalent', 'strictDeepInequal', 'notSameStrict', 'deepNot', 'notDeeply', 'strictDeepInequals', 'notStrictSame' ], // found has the fields in wanted, string matches regexp match: [ 'has', 'hasFields', 'matches', 'similar', 'like', 'isLike', 'includes', 'include', 'isSimilar', 'contains' ], notMatch: [ 'dissimilar', 'unsimilar', 'notSimilar', 'unlike', 'isUnlike', 'notLike', 'isNotLike', 'doesNotHave', 'isNotSimilar', 'isDissimilar' ], type: [ 'isa', 'isA' ] })
Close