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 /
shell-quote /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
comment.js
642
B
-rw-rw-rw-
env.js
1.81
KB
-rw-rw-rw-
env_fn.js
483
B
-rw-rw-rw-
op.js
2.98
KB
-rw-rw-rw-
parse.js
1.34
KB
-rw-rw-rw-
quote.js
1.37
KB
-rw-rw-rw-
set.js
565
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : quote.js
'use strict'; var test = require('tape'); var quote = require('../').quote; test('quote', function (t) { t.equal(quote(['a', 'b', 'c d']), 'a b \'c d\''); t.equal( quote(['a', 'b', "it's a \"neat thing\""]), 'a b "it\'s a \\"neat thing\\""' ); t.equal( quote(['$', '`', '\'']), '\\$ \\` "\'"' ); t.equal(quote([]), ''); t.equal(quote(['a\nb']), "'a\nb'"); t.equal(quote([' #(){}*|][!']), "' #(){}*|][!'"); t.equal(quote(["'#(){}*|][!"]), '"\'#(){}*|][\\!"'); t.equal(quote(['X#(){}*|][!']), 'X\\#\\(\\)\\{\\}\\*\\|\\]\\[\\!'); t.equal(quote(['a\n#\nb']), "'a\n#\nb'"); t.equal(quote(['><;{}']), '\\>\\<\\;\\{\\}'); t.equal(quote(['a', 1, true, false]), 'a 1 true false'); t.equal(quote(['a', 1, null, undefined]), 'a 1 null undefined'); t.equal(quote(['a\\x']), 'a\\\\x'); t.end(); }); test('quote ops', function (t) { t.equal(quote(['a', { op: '|' }, 'b']), 'a \\| b'); t.equal( quote(['a', { op: '&&' }, 'b', { op: ';' }, 'c']), 'a \\&\\& b \\; c' ); t.end(); }); test('quote windows paths', { skip: 'breaking change, disabled until 2.x' }, function (t) { var path = 'C:\\projects\\node-shell-quote\\index.js'; t.equal(quote([path, 'b', 'c d']), 'C:\\projects\\node-shell-quote\\index.js b \'c d\''); t.end(); }); test("chars for windows paths don't break out", function (t) { var x = '`:\\a\\b'; t.equal(quote([x]), '\\`\\:\\\\a\\\\b'); t.end(); });
Close