Linux cpanel07wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24 01:42:00 EDT 2020 x86_64
Apache
: 163.44.198.52 | : 216.73.216.26
Cant Read [ /etc/named.conf ]
8.0.9
cp657342
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby21 /
lib64 /
ruby /
2.1.0 /
webrick /
[ HOME SHELL ]
Name
Size
Permission
Action
httpauth
[ DIR ]
drwxr-xr-x
httpservlet
[ DIR ]
drwxr-xr-x
accesslog.rb
4.31
KB
-rw-r--r--
cgi.rb
7.97
KB
-rw-r--r--
compat.rb
912
B
-rw-r--r--
config.rb
5.56
KB
-rw-r--r--
cookie.rb
3.88
KB
-rw-r--r--
htmlutils.rb
680
B
-rw-r--r--
httpauth.rb
3.33
KB
-rw-r--r--
httpproxy.rb
9.65
KB
-rw-r--r--
httprequest.rb
14.4
KB
-rw-r--r--
httpresponse.rb
10.63
KB
-rw-r--r--
https.rb
1.87
KB
-rw-r--r--
httpserver.rb
7.69
KB
-rw-r--r--
httpservlet.rb
669
B
-rw-r--r--
httpstatus.rb
5.26
KB
-rw-r--r--
httputils.rb
12.71
KB
-rw-r--r--
httpversion.rb
1.57
KB
-rw-r--r--
log.rb
3.92
KB
-rw-r--r--
server.rb
8.42
KB
-rw-r--r--
ssl.rb
6.67
KB
-rw-r--r--
utils.rb
5.88
KB
-rw-r--r--
version.rb
384
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : https.rb
# # https.rb -- SSL/TLS enhancement for HTTPServer # # Author: IPR -- Internet Programming with Ruby -- writers # Copyright (c) 2001 GOTOU Yuuzou # Copyright (c) 2002 Internet Programming with Ruby writers. All rights # reserved. # # $IPR: https.rb,v 1.15 2003/07/22 19:20:42 gotoyuzo Exp $ require 'webrick/ssl' module WEBrick module Config HTTP.update(SSL) end ## #-- # Adds SSL functionality to WEBrick::HTTPRequest class HTTPRequest ## # HTTP request SSL cipher attr_reader :cipher ## # HTTP request server certificate attr_reader :server_cert ## # HTTP request client certificate attr_reader :client_cert # :stopdoc: alias orig_parse parse def parse(socket=nil) if socket.respond_to?(:cert) @server_cert = socket.cert || @config[:SSLCertificate] @client_cert = socket.peer_cert @client_cert_chain = socket.peer_cert_chain @cipher = socket.cipher end orig_parse(socket) end alias orig_parse_uri parse_uri def parse_uri(str, scheme="https") if server_cert return orig_parse_uri(str, scheme) end return orig_parse_uri(str) end private :parse_uri alias orig_meta_vars meta_vars def meta_vars meta = orig_meta_vars if server_cert meta["HTTPS"] = "on" meta["SSL_SERVER_CERT"] = @server_cert.to_pem meta["SSL_CLIENT_CERT"] = @client_cert ? @client_cert.to_pem : "" if @client_cert_chain @client_cert_chain.each_with_index{|cert, i| meta["SSL_CLIENT_CERT_CHAIN_#{i}"] = cert.to_pem } end meta["SSL_CIPHER"] = @cipher[0] meta["SSL_PROTOCOL"] = @cipher[1] meta["SSL_CIPHER_USEKEYSIZE"] = @cipher[2].to_s meta["SSL_CIPHER_ALGKEYSIZE"] = @cipher[3].to_s end meta end # :startdoc: end end
Close