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 /
pm2 /
lib /
tools /
[ HOME SHELL ]
Name
Size
Permission
Action
Config.js
6.09
KB
-rw-rw-r--
IsAbsolute.js
606
B
-rw-rw-r--
copydirSync.js
2.8
KB
-rw-rw-r--
deleteFolderRecursive.js
480
B
-rw-rw-r--
find-package-json.js
1.73
KB
-rw-rw-r--
fmt.js
2.04
KB
-rw-rw-r--
isbinaryfile.js
2.64
KB
-rw-rw-r--
json5.js
22.94
KB
-rw-rw-r--
open.js
1.57
KB
-rw-rw-r--
passwd.js
1.13
KB
-rw-rw-r--
promise.min.js
2.59
KB
-rw-rw-r--
sexec.js
1.17
KB
-rw-rw-r--
treeify.js
3.46
KB
-rw-rw-r--
which.js
3.49
KB
-rw-rw-r--
xdg-open
20.93
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : open.js
var exec = require('child_process').exec , path = require('path') ; /** * open a file or uri using the default application for the file type. * * @return {ChildProcess} - the child process object. * @param {string} target - the file/uri to open. * @param {string} appName - (optional) the application to be used to open the * file (for example, "chrome", "firefox") * @param {function(Error)} callback - called with null on success, or * an error object that contains a property 'code' with the exit * code of the process. */ module.exports = open; function open(target, appName, callback) { var opener; if (typeof(appName) === 'function') { callback = appName; appName = null; } switch (process.platform) { case 'darwin': if (appName) { opener = 'open -a "' + escape(appName) + '"'; } else { opener = 'open'; } break; case 'win32': // if the first parameter to start is quoted, it uses that as the title // so we pass a blank title so we can quote the file we are opening if (appName) { opener = 'start "" "' + escape(appName) + '"'; } else { opener = 'start ""'; } break; default: if (appName) { opener = escape(appName); } else { // use Portlands xdg-open everywhere else opener = path.join(__dirname, './xdg-open'); } break; } if (process.env.SUDO_USER) { opener = 'sudo -u ' + process.env.SUDO_USER + ' ' + opener; } return exec(opener + ' "' + escape(target) + '"', callback); } function escape(s) { return s.replace(/"/g, '\\\"'); }
Close