Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.145.109.97
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby27 /
share /
ruby /
webrick /
Delete
Unzip
Name
Size
Permission
Date
Action
httpauth
[ DIR ]
drwxr-xr-x
2024-03-03 22:47
httpservlet
[ DIR ]
drwxr-xr-x
2024-03-03 22:47
accesslog.rb
4.33
KB
-rw-r--r--
2023-03-30 12:34
cgi.rb
8.02
KB
-rw-r--r--
2023-03-30 12:34
compat.rb
943
B
-rw-r--r--
2023-03-30 12:34
config.rb
5.7
KB
-rw-r--r--
2023-03-30 12:34
cookie.rb
3.91
KB
-rw-r--r--
2023-03-30 12:34
htmlutils.rb
711
B
-rw-r--r--
2023-03-30 12:34
httpauth.rb
3.36
KB
-rw-r--r--
2023-03-30 12:34
httpproxy.rb
10.27
KB
-rw-r--r--
2023-03-30 12:34
httprequest.rb
15.69
KB
-rw-r--r--
2023-03-30 12:34
httpresponse.rb
13.24
KB
-rw-r--r--
2023-03-30 12:34
https.rb
3.08
KB
-rw-r--r--
2023-03-30 12:34
httpserver.rb
8.17
KB
-rw-r--r--
2023-03-30 12:34
httpservlet.rb
705
B
-rw-r--r--
2023-03-30 12:34
httpstatus.rb
5.24
KB
-rw-r--r--
2023-03-30 12:34
httputils.rb
12.88
KB
-rw-r--r--
2023-03-30 12:34
httpversion.rb
1.6
KB
-rw-r--r--
2023-03-30 12:34
log.rb
3.99
KB
-rw-r--r--
2023-03-30 12:34
server.rb
10.05
KB
-rw-r--r--
2023-03-30 12:34
ssl.rb
7.23
KB
-rw-r--r--
2023-03-30 12:34
utils.rb
6.94
KB
-rw-r--r--
2023-03-30 12:34
version.rb
415
B
-rw-r--r--
2023-03-30 12:34
Save
Rename
# frozen_string_literal: false # # compat.rb -- cross platform compatibility # # Author: IPR -- Internet Programming with Ruby -- writers # Copyright (c) 2002 GOTOU Yuuzou # Copyright (c) 2002 Internet Programming with Ruby writers. All rights # reserved. # # $IPR: compat.rb,v 1.6 2002/10/01 17:16:32 gotoyuzo Exp $ ## # System call error module used by webrick for cross platform compatibility. # # EPROTO:: protocol error # ECONNRESET:: remote host reset the connection request # ECONNABORTED:: Client sent TCP reset (RST) before server has accepted the # connection requested by client. # module Errno ## # Protocol error. class EPROTO < SystemCallError; end ## # Remote host reset the connection request. class ECONNRESET < SystemCallError; end ## # Client sent TCP reset (RST) before server has accepted the connection # requested by client. class ECONNABORTED < SystemCallError; end end