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 /
ruby20 /
lib64 /
ruby /
2.0.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.31
KB
-rw-r--r--
2013-01-26 06:42
cgi.rb
7.97
KB
-rw-r--r--
2013-01-26 06:42
compat.rb
912
B
-rw-r--r--
2011-05-18 01:59
config.rb
5.56
KB
-rw-r--r--
2013-01-26 06:42
cookie.rb
3.88
KB
-rw-r--r--
2013-01-26 08:01
htmlutils.rb
680
B
-rw-r--r--
2014-02-16 22:26
httpauth.rb
3.33
KB
-rw-r--r--
2011-05-11 05:07
httpproxy.rb
9.65
KB
-rw-r--r--
2013-03-24 21:57
httprequest.rb
14.33
KB
-rw-r--r--
2013-12-24 21:16
httpresponse.rb
10.56
KB
-rw-r--r--
2013-01-26 06:42
https.rb
1.87
KB
-rw-r--r--
2013-01-26 06:42
httpserver.rb
7.69
KB
-rw-r--r--
2013-01-26 06:42
httpservlet.rb
669
B
-rw-r--r--
2009-10-02 16:15
httpstatus.rb
5.26
KB
-rw-r--r--
2012-08-21 10:20
httputils.rb
12.71
KB
-rw-r--r--
2014-02-16 22:26
httpversion.rb
1.57
KB
-rw-r--r--
2013-01-26 06:42
log.rb
3.92
KB
-rw-r--r--
2013-01-26 06:42
server.rb
8.42
KB
-rw-r--r--
2013-01-26 06:42
ssl.rb
6.67
KB
-rw-r--r--
2013-01-26 06:42
utils.rb
6.44
KB
-rw-r--r--
2013-01-26 06:42
version.rb
384
B
-rw-r--r--
2013-01-26 06:42
Save
Rename
# # 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 compatability. # # 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