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.147.67.34
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
sockjs /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
chunking-test.js
2.46
KB
-rw-r--r--
2017-10-12 16:23
iframe.js
1.21
KB
-rw-r--r--
2017-10-12 16:23
sockjs.js
7.86
KB
-rw-r--r--
2017-10-12 16:23
trans-eventsource.js
1.85
KB
-rw-r--r--
2017-10-12 16:23
trans-htmlfile.js
2.27
KB
-rw-r--r--
2017-10-12 16:23
trans-jsonp.js
3.13
KB
-rw-r--r--
2017-10-12 16:23
trans-websocket.js
7.33
KB
-rw-r--r--
2017-10-12 16:23
trans-xhr.js
3.71
KB
-rw-r--r--
2017-10-12 16:23
transport.js
11.93
KB
-rw-r--r--
2017-10-12 16:23
utils.js
3.9
KB
-rw-r--r--
2017-10-12 16:23
webjs.js
8.61
KB
-rw-r--r--
2017-10-12 16:23
Save
Rename
// Generated by CoffeeScript 1.12.7 (function() { var HtmlFileReceiver, iframe_template, transport, utils, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, hasProp = {}.hasOwnProperty; utils = require('./utils'); transport = require('./transport'); iframe_template = "<!doctype html>\n<html><head>\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n</head><body><h2>Don't panic!</h2>\n <script>\n document.domain = document.domain;\n var c = parent.{{ callback }};\n c.start();\n function p(d) {c.message(d);};\n window.onload = function() {c.stop();};\n </script>"; iframe_template += Array(1024 - iframe_template.length + 14).join(' '); iframe_template += '\r\n\r\n'; HtmlFileReceiver = (function(superClass) { extend(HtmlFileReceiver, superClass); function HtmlFileReceiver() { return HtmlFileReceiver.__super__.constructor.apply(this, arguments); } HtmlFileReceiver.prototype.protocol = "htmlfile"; HtmlFileReceiver.prototype.doSendFrame = function(payload) { return HtmlFileReceiver.__super__.doSendFrame.call(this, '<script>\np(' + JSON.stringify(payload) + ');\n</script>\r\n'); }; return HtmlFileReceiver; })(transport.ResponseReceiver); exports.app = { htmlfile: function(req, res) { var callback; if (!('c' in req.query || 'callback' in req.query)) { throw { status: 500, message: '"callback" parameter required' }; } callback = 'c' in req.query ? req.query['c'] : req.query['callback']; if (/[^a-zA-Z0-9-_.]/.test(callback)) { throw { status: 500, message: 'invalid "callback" parameter' }; } res.setHeader('Content-Type', 'text/html; charset=UTF-8'); res.writeHead(200); res.write(iframe_template.replace(/{{ callback }}/g, callback)); transport.register(req, this, new HtmlFileReceiver(req, res, this.options)); return true; } }; }).call(this);