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 : 18.219.197.162
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
spdy /
lib /
spdy /
Delete
Unzip
Name
Size
Permission
Date
Action
agent.js
6.61
KB
-rw-r--r--
2017-05-23 01:55
handle.js
5.77
KB
-rw-r--r--
2017-05-23 01:27
request.js
527
B
-rw-r--r--
2017-05-23 01:16
response.js
2.85
KB
-rw-r--r--
2017-05-23 01:16
server.js
7.3
KB
-rw-r--r--
2017-05-23 01:55
socket.js
921
B
-rw-r--r--
2017-05-23 01:27
Save
Rename
'use strict' var util = require('util') var net = require('net') function Socket (parent, options) { net.Socket.call(this, options) var state = {} this._spdyState = state state.parent = parent this.servername = parent.servername this.npnProtocol = parent.npnProtocol this.alpnProtocol = parent.alpnProtocol this.authorized = parent.authorized this.authorizationError = parent.authorizationError this.encrypted = true this.allowHalfOpen = true } util.inherits(Socket, net.Socket) module.exports = Socket var methods = [ 'renegotiate', 'setMaxSendFragment', 'getTLSTicket', 'setServername', 'setSession', 'getPeerCertificate', 'getSession', 'isSessionReused', 'getCipher', 'getEphemeralKeyInfo' ] methods.forEach(function (method) { Socket.prototype[method] = function methodWrap () { var parent = this._spdyState.parent return parent[method].apply(parent, arguments) } })