Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 52.14.238.102
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
openurl /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
17
B
-rw-rw-r--
2022-08-30 11:49
README.md
1.02
KB
-rw-rw-r--
2022-08-30 11:49
openurl.js
1.75
KB
-rw-rw-r--
2022-08-30 11:49
package.json
394
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
var spawn = require('child_process').spawn; var command; switch(process.platform) { case 'darwin': command = 'open'; break; case 'win32': command = 'explorer.exe'; break; case 'linux': command = 'xdg-open'; break; default: throw new Error('Unsupported platform: ' + process.platform); } /** * Error handling is deliberately minimal, as this function is to be easy to use for shell scripting * * @param url The URL to open * @param callback A function with a single error argument. Optional. */ function open(url, callback) { var child = spawn(command, [url]); var errorText = ""; child.stderr.setEncoding('utf8'); child.stderr.on('data', function (data) { errorText += data; }); child.stderr.on('end', function () { if (errorText.length > 0) { var error = new Error(errorText); if (callback) { callback(error); } else { throw error; } } else if (callback) { callback(error); } }); } /** * @param fields Common fields are: "subject", "body". * Some email apps let you specify arbitrary headers here. * @param recipientsSeparator Default is ",". Use ";" for Outlook. */ function mailto(recipients, fields, recipientsSeparator, callback) { recipientsSeparator = recipientsSeparator || ","; var url = "mailto:"+recipients.join(recipientsSeparator); Object.keys(fields).forEach(function (key, index) { if (index === 0) { url += "?"; } else { url += "&"; } url += key + "=" + encodeURIComponent(fields[key]); }); open(url, callback); } exports.open = open; exports.mailto = mailto;