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 : history.js
/* * history.js: Example of using the prompt history capabilities. * * (C) 2010, Nodejitsu Inc. * */ var prompt = require('../lib/prompt'); // // Start the prompt // prompt.start(); var properties = { properties: { animal: { description: 'Enter an animal', default: 'dog', pattern: /dog|cat/ }, sound: { description: 'What sound does this animal make?', conform: function (value) { var animal = prompt.history(0).value; return animal === 'dog' && value === 'woof' || animal === 'cat' && value === 'meow'; } } } } // // Get two properties from the user // prompt.get(properties, function (err, result) { // // Log the results. // console.log('Command-line input received:'); console.log(' animal: ' + result.animal); console.log(' sound: ' + result.sound); });
Close