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 /
prawn /
[ HOME SHELL ]
Name
Size
Permission
Action
document
[ DIR ]
drwxr-xr-x
font
[ DIR ]
drwxr-xr-x
graphics
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
security
[ DIR ]
drwxr-xr-x
table
[ DIR ]
drwxr-xr-x
text
[ DIR ]
drwxr-xr-x
document.rb
23.32
KB
-rw-r--r--
encoding.rb
2.61
KB
-rw-r--r--
errors.rb
2.92
KB
-rw-r--r--
font.rb
13.46
KB
-rw-r--r--
font_metric_cache.rb
1.06
KB
-rw-r--r--
graphics.rb
19.4
KB
-rw-r--r--
grid.rb
6.44
KB
-rw-r--r--
image_handler.rb
896
B
-rw-r--r--
images.rb
6.42
KB
-rw-r--r--
measurement_extensions.rb
671
B
-rw-r--r--
measurements.rb
995
B
-rw-r--r--
outline.rb
11.32
KB
-rw-r--r--
repeater.rb
3.26
KB
-rw-r--r--
security.rb
10.4
KB
-rw-r--r--
soft_mask.rb
2.09
KB
-rw-r--r--
stamp.rb
4.43
KB
-rw-r--r--
table.rb
24.46
KB
-rw-r--r--
text.rb
16.76
KB
-rw-r--r--
transformation_stack.rb
1.13
KB
-rw-r--r--
utilities.rb
998
B
-rw-r--r--
version.rb
44
B
-rw-r--r--
view.rb
2.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : errors.rb
# errors.rb : Implements custom error classes for Prawn # # Copyright April 2008, Gregory Brown. All Rights Reserved. # # This is free software. Please see the LICENSE and COPYING files for details. # module Prawn module Errors # Raised when a table is spanned in an impossible way. # InvalidTableSpan = Class.new(StandardError) # This error is raised when a method requiring a current page is called # without being on a page. # NotOnPage = Class.new(StandardError) # This error is raised when Prawn cannot find a specified font # UnknownFont = Class.new(StandardError) # Raised when Prawn is asked to draw something into a too-small box # CannotFit = Class.new(StandardError) # Raised if group() is called with a block that is too big to be # rendered in the current context. # CannotGroup = Class.new(StandardError) # This error is raised when Prawn is being used on a M17N aware VM, # and the user attempts to add text that isn't compatible with UTF-8 # to their document # IncompatibleStringEncoding = Class.new(StandardError) # This error is raised when Prawn encounters an unknown key in functions # that accept an options hash. This usually means there is a typo in your # code or that the option you are trying to use has a different name than # what you have specified. # UnknownOption = Class.new(StandardError) # this error is raised when a user attempts to embed an image of an # unsupported type. This can either a completely unsupported format, or # a dialect of a supported format (ie. some types of PNG) UnsupportedImageType = Class.new(StandardError) # This error is raised when a named element has alredy been # created. For example, in the stamp module, stamps must have # unique names within a document NameTaken = Class.new(StandardError) # This error is raised when a name is not a valid format InvalidName = Class.new(StandardError) # This error is raised when an object is attempted to be # referenced by name, but no such name is associated with an object UndefinedObjectName = Class.new(StandardError) # This error is raised when a required option has not been set RequiredOption = Class.new(StandardError) # This error is raised when a requested outline item with a given title does # not exist UnknownOutlineTitle = Class.new(StandardError) # This error is raised when a block is required, but not provided BlockRequired = Class.new(StandardError) # This error is rased when a graphics method is called with improper # arguments InvalidGraphicsPath = Class.new(StandardError) # Raised when unrecognized content is provided for a table cell. # UnrecognizedTableContent = Class.new(StandardError) # This error is raised when an incompatible join style is specified InvalidJoinStyle = Class.new(StandardError) end end
Close