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 /
pdf /
reader /
filter /
[ HOME SHELL ]
Name
Size
Permission
Action
ascii85.rb
756
B
-rw-r--r--
ascii_hex.rb
854
B
-rw-r--r--
depredict.rb
4.41
KB
-rw-r--r--
flate.rb
1.31
KB
-rw-r--r--
lzw.rb
492
B
-rw-r--r--
null.rb
261
B
-rw-r--r--
run_length.rb
1.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : run_length.rb
# coding: utf-8 # class PDF::Reader # :nodoc: module Filter # :nodoc: # implementation of the run length stream filter class RunLength def initialize(options = {}) @options = options end ################################################################################ # Decode the specified data with the RunLengthDecode compression algorithm def filter(data) pos = 0 out = "" while pos < data.length length = data.getbyte(pos) pos += 1 case when length == 128 break when length < 128 # When the length is < 128, we copy the following length+1 bytes # literally. out << data[pos, length + 1] pos += length else # When the length is > 128, we copy the next byte (257 - length) # times; i.e., "\xFA\x00" ([250, 0]) will expand to # "\x00\x00\x00\x00\x00\x00\x00". out << data[pos, 1] * (257 - length) end pos += 1 end Depredict.new(@options).filter(out) end end end end
Close