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.197.164
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 # # httpservlet.rb -- HTTPServlet Utility File # # Author: IPR -- Internet Programming with Ruby -- writers # Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou # Copyright (c) 2002 Internet Programming with Ruby writers. All rights # reserved. # # $IPR: httpservlet.rb,v 1.21 2003/02/23 12:24:46 gotoyuzo Exp $ require_relative 'httpservlet/abstract' require_relative 'httpservlet/filehandler' require_relative 'httpservlet/cgihandler' require_relative 'httpservlet/erbhandler' require_relative 'httpservlet/prochandler' module WEBrick module HTTPServlet FileHandler.add_handler("cgi", CGIHandler) FileHandler.add_handler("rhtml", ERBHandler) end end