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 /
rvg /
[ HOME SHELL ]
Name
Size
Permission
Action
clippath.rb
1.44
KB
-rw-r--r--
container.rb
3.91
KB
-rw-r--r--
deep_equal.rb
1.63
KB
-rw-r--r--
describable.rb
1.15
KB
-rw-r--r--
embellishable.rb
13.49
KB
-rw-r--r--
misc.rb
20.78
KB
-rw-r--r--
paint.rb
1.78
KB
-rw-r--r--
pathdata.rb
4.45
KB
-rw-r--r--
rvg.rb
10.72
KB
-rw-r--r--
stretchable.rb
5.01
KB
-rw-r--r--
stylable.rb
4.08
KB
-rw-r--r--
text.rb
4.56
KB
-rw-r--r--
to_c.rb
2.51
KB
-rw-r--r--
transformable.rb
4.28
KB
-rw-r--r--
units.rb
1.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : deep_equal.rb
module Magick class RVG [PathData, Styles, Transforms].each do |c| c.class_eval do def deep_equal(other) if self != other puts "#{c.inspect} not equal.\nself:#{self} != other:#{other}" return false end true end end end [Shape, TextBase, Image, Group, Content, Use, ClipPath, Pattern, self].each do |c| c.class_eval do def deep_equal(other) ivs = instance_variables ivs.each do |iv| itv = instance_variable_get(iv) otv = other.instance_variable_get(iv) if itv.respond_to?(:deep_equal) if itv.equal?(otv) puts "#{iv} has deep_equal but self.#{iv} and other.#{iv} are the same object." return false end unless itv.deep_equal(otv) puts "Not equal.\nself.#{iv}=#{itv.inspect}\nother.#{iv}=#{otv.inspect}" return false end else case itv when Float, Symbol, TrueClass, FalseClass, Integer, NilClass return false if itv != otv else if itv.equal?(otv) puts "#{iv} is dup-able but self.#{iv} and other.#{iv} are the same object." return false end if itv != otv puts "Not equal.\nself.#{iv}=#{itv.inspect}\nother.#{iv}=#{otv.inspect}" return false end end end end true end end end end # class RVG end # module Magick
Close