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 : 3.140.201.179
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 /
browser-sync-ui /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
plugins
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
UI.js
5.62
KB
-rw-rw-r--
2022-08-30 11:49
async-tasks.js
801
B
-rw-rw-r--
2022-08-30 11:49
async.js
5.79
KB
-rw-rw-r--
2022-08-30 11:49
client-elements.js
2.01
KB
-rw-rw-r--
2022-08-30 11:49
client-js.js
3.37
KB
-rw-rw-r--
2022-08-30 11:49
config.js
992
B
-rw-rw-r--
2022-08-30 11:49
directive-stripper.js
1.84
KB
-rw-rw-r--
2022-08-30 11:49
hooks.js
7.04
KB
-rw-rw-r--
2022-08-30 11:49
opts.js
492
B
-rw-rw-r--
2022-08-30 11:49
resolve-plugins.js
3.2
KB
-rw-rw-r--
2022-08-30 11:49
server.js
4.97
KB
-rw-rw-r--
2022-08-30 11:49
transform.options.js
600
B
-rw-rw-r--
2022-08-30 11:49
transforms.js
224
B
-rw-rw-r--
2022-08-30 11:49
urls.js
0
B
-rw-rw-r--
2022-08-30 11:49
utils.js
668
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; (function (window, document, bs, undefined) { var socket = bs.socket; var uiOptions = { bs: {} }; socket.on("ui:connection", function (options) { uiOptions = options; bs.socket.emit("ui:history:connected", { href: window.location.href }); }); socket.on("ui:element:remove", function (data) { if (data.id) { var elem = document.getElementById(data.id); if (elem) { removeElement(elem); } } }); socket.on("highlight", function () { var id = "__browser-sync-highlight__"; var elem = document.getElementById(id); if (elem) { return removeElement(elem); } (function (e) { e.style.position = "fixed"; e.style.zIndex = "1000"; e.style.width = "100%"; e.style.height = "100%"; e.style.borderWidth = "5px"; e.style.borderColor = "red"; e.style.borderStyle = "solid"; e.style.top = "0"; e.style.left = "0"; e.setAttribute("id", id); document.getElementsByTagName("body")[0].appendChild(e); })(document.createElement("div")); }); socket.on("ui:element:add", function (data) { var elem = document.getElementById(data.id); if (!elem) { if (data.type === "css") { return addCss(data); } if (data.type === "js") { return addJs(data); } if (data.type === "dom") { return addDomNode(data); } } }); bs.addDomNode = addDomNode; bs.addJs = addJs; bs.addCss = addJs; function addJs(data) { (function (e) { e.setAttribute("src", getAbsoluteUrl(data.src)); e.setAttribute("id", data.id); document.getElementsByTagName("body")[0].appendChild(e); })(document.createElement("script")); } function addCss(data) { (function (e) { e.setAttribute("rel", "stylesheet"); e.setAttribute("type", "text/css"); e.setAttribute("id", data.id); e.setAttribute("media", "all"); e.setAttribute("href", getAbsoluteUrl(data.src)); document.getElementsByTagName("head")[0].appendChild(e); })(document.createElement("link")); } function addDomNode(data) { var elem = document.createElement(data.tagName); for (var attr in data.attrs) { elem.setAttribute(attr, data.attrs[attr]); } if (data.placement) { document.getElementsByTagName(data.placement)[0].appendChild(elem); } else { document.getElementsByTagName("body")[0].appendChild(elem); } return elem; } function removeElement(element) { if (element && element.parentNode) { element.parentNode.removeChild(element); } } function getAbsoluteUrl(path) { if (path.match(/^h/)) { return path; } return [window.location.protocol, "//", getHost(), path].join(""); } function getHost () { return uiOptions.bs.mode === "snippet" ? window.location.hostname + ":" + uiOptions.bs.port : window.location.host; } })(window, document, ___browserSync___);