Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
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
2023-07-10 23:53
httpservlet
[ DIR ]
drwxr-xr-x
2023-07-10 23:53
accesslog.rb
4.33
KB
-rw-r--r--
2023-03-30 14:34
cgi.rb
8.02
KB
-rw-r--r--
2023-03-30 14:34
compat.rb
943
B
-rw-r--r--
2023-03-30 14:34
config.rb
5.7
KB
-rw-r--r--
2023-03-30 14:34
cookie.rb
3.91
KB
-rw-r--r--
2023-03-30 14:34
htmlutils.rb
711
B
-rw-r--r--
2023-03-30 14:34
httpauth.rb
3.36
KB
-rw-r--r--
2023-03-30 14:34
httpproxy.rb
10.27
KB
-rw-r--r--
2023-03-30 14:34
httprequest.rb
15.69
KB
-rw-r--r--
2023-03-30 14:34
httpresponse.rb
13.24
KB
-rw-r--r--
2023-03-30 14:34
https.rb
3.08
KB
-rw-r--r--
2023-03-30 14:34
httpserver.rb
8.17
KB
-rw-r--r--
2023-03-30 14:34
httpservlet.rb
705
B
-rw-r--r--
2023-03-30 14:34
httpstatus.rb
5.24
KB
-rw-r--r--
2023-03-30 14:34
httputils.rb
12.88
KB
-rw-r--r--
2023-03-30 14:34
httpversion.rb
1.6
KB
-rw-r--r--
2023-03-30 14:34
log.rb
3.99
KB
-rw-r--r--
2023-03-30 14:34
server.rb
10.05
KB
-rw-r--r--
2023-03-30 14:34
ssl.rb
7.23
KB
-rw-r--r--
2023-03-30 14:34
utils.rb
6.94
KB
-rw-r--r--
2023-03-30 14:34
version.rb
415
B
-rw-r--r--
2023-03-30 14: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