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 : 216.73.216.155
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby18 /
lib64 /
ruby /
1.8 /
webrick /
httpauth /
Delete
Unzip
Name
Size
Permission
Date
Action
authenticator.rb
2.32
KB
-rw-r--r--
2007-02-12 23:01
basicauth.rb
1.71
KB
-rw-r--r--
2007-02-12 23:01
digestauth.rb
11.21
KB
-rw-r--r--
2007-02-12 23:01
htdigest.rb
2.12
KB
-rw-r--r--
2007-02-12 23:01
htgroup.rb
1.41
KB
-rw-r--r--
2007-02-12 23:01
htpasswd.rb
1.98
KB
-rw-r--r--
2007-02-12 23:01
userdb.rb
726
B
-rw-r--r--
2007-02-12 23:01
Save
Rename
# # httpauth/basicauth.rb -- HTTP basic access authentication # # Author: IPR -- Internet Programming with Ruby -- writers # Copyright (c) 2003 Internet Programming with Ruby writers. All rights # reserved. # # $IPR: basicauth.rb,v 1.5 2003/02/20 07:15:47 gotoyuzo Exp $ require 'webrick/config' require 'webrick/httpstatus' require 'webrick/httpauth/authenticator' module WEBrick module HTTPAuth class BasicAuth include Authenticator AuthScheme = "Basic" def self.make_passwd(realm, user, pass) pass ||= "" pass.crypt(Utils::random_string(2)) end attr_reader :realm, :userdb, :logger def initialize(config, default=Config::BasicAuth) check_init(config) @config = default.dup.update(config) end def authenticate(req, res) unless basic_credentials = check_scheme(req) challenge(req, res) end userid, password = basic_credentials.unpack("m*")[0].split(":", 2) password ||= "" if userid.empty? error("user id was not given.") challenge(req, res) end unless encpass = @userdb.get_passwd(@realm, userid, @reload_db) error("%s: the user is not allowed.", userid) challenge(req, res) end if password.crypt(encpass) != encpass error("%s: password unmatch.", userid) challenge(req, res) end info("%s: authentication succeeded.", userid) req.user = userid end def challenge(req, res) res[@response_field] = "#{@auth_scheme} realm=\"#{@realm}\"" raise @auth_exception end end class ProxyBasicAuth < BasicAuth include ProxyAuthenticator end end end