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 : old-schema.js
/* * simple-prompt.js: Simple example of using prompt. * * (C) 2010, Nodejitsu Inc. * */ var prompt = require('../lib/prompt'); // // Start the prompt // prompt.start(); // // Get two properties from the user: username and email // prompt.get([ { name: 'username', validator: /^[a-z]+$/, warning: 'Username should consist only lowercase alphabets', empty: false }, { name: 'email', message: 'Email Address' } ], function (err, result) { // // Log the results. // console.log('Command-line input received:'); console.log(' username: ' + result.username); console.log(' email: ' + result.email); });
Close