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 /
ruby24 /
lib64 /
ruby /
2.4.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--
2020-03-31 17:12
cgi.rb
8.06
KB
-rw-r--r--
2020-03-31 17:12
compat.rb
943
B
-rw-r--r--
2020-03-31 17:12
config.rb
5.69
KB
-rw-r--r--
2020-03-31 17:12
cookie.rb
3.91
KB
-rw-r--r--
2020-03-31 17:12
htmlutils.rb
711
B
-rw-r--r--
2020-03-31 17:12
httpauth.rb
3.36
KB
-rw-r--r--
2020-03-31 17:12
httpproxy.rb
9.6
KB
-rw-r--r--
2020-03-31 17:12
httprequest.rb
14.88
KB
-rw-r--r--
2020-03-31 17:12
httpresponse.rb
11.89
KB
-rw-r--r--
2020-03-31 17:12
https.rb
1.9
KB
-rw-r--r--
2020-03-31 17:12
httpserver.rb
7.75
KB
-rw-r--r--
2020-03-31 17:12
httpservlet.rb
700
B
-rw-r--r--
2020-03-31 17:12
httpstatus.rb
5.24
KB
-rw-r--r--
2020-03-31 17:12
httputils.rb
12.74
KB
-rw-r--r--
2020-03-31 17:12
httpversion.rb
1.6
KB
-rw-r--r--
2020-03-31 17:12
log.rb
3.99
KB
-rw-r--r--
2020-03-31 17:12
server.rb
10.06
KB
-rw-r--r--
2020-03-31 17:12
ssl.rb
6.93
KB
-rw-r--r--
2020-03-31 17:12
utils.rb
6.95
KB
-rw-r--r--
2020-03-31 17:12
version.rb
415
B
-rw-r--r--
2020-03-31 17:12
Save
Rename
# frozen_string_literal: false #-- # htmlutils.rb -- HTMLUtils Module # # 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: htmlutils.rb,v 1.7 2002/09/21 12:23:35 gotoyuzo Exp $ module WEBrick module HTMLUtils ## # Escapes &, ", > and < in +string+ def escape(string) return "" unless string str = string.b str.gsub!(/&/n, '&') str.gsub!(/\"/n, '"') str.gsub!(/>/n, '>') str.gsub!(/</n, '<') str.force_encoding(string.encoding) end module_function :escape end end