OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
2.5.0
/
uri
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
common.rb
19.98 KB
12/12/2017 11:56:25 AM
rw-r--r--
📄
ftp.rb
7.09 KB
08/15/2017 01:05:50 AM
rw-r--r--
📄
generic.rb
35.99 KB
12/14/2017 06:30:22 AM
rw-r--r--
📄
http.rb
2.38 KB
09/11/2017 06:12:40 AM
rw-r--r--
📄
https.rb
611 bytes
12/16/2015 05:07:31 AM
rw-r--r--
📄
ldap.rb
5.77 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
ldaps.rb
501 bytes
12/16/2015 05:07:31 AM
rw-r--r--
📄
mailto.rb
7.87 KB
12/12/2016 03:24:28 PM
rw-r--r--
📄
rfc2396_parser.rb
17.38 KB
12/16/2015 05:07:31 AM
rw-r--r--
📄
rfc3986_parser.rb
6.22 KB
05/15/2023 11:41:43 AM
rw-r--r--
Editing: ldaps.rb
Close
# frozen_string_literal: false # = uri/ldap.rb # # License:: You can redistribute it and/or modify it under the same term as Ruby. # # See URI for general documentation # require 'uri/ldap' module URI # The default port for LDAPS URIs is 636, and the scheme is 'ldaps:' rather # than 'ldap:'. Other than that, LDAPS URIs are identical to LDAP URIs; # see URI::LDAP. class LDAPS < LDAP # A Default port of 636 for URI::LDAPS DEFAULT_PORT = 636 end @@schemes['LDAPS'] = LDAPS end