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 /
ttfunk /
[ HOME SHELL ]
Name
Size
Permission
Action
encoding
[ DIR ]
drwxr-xr-x
subset
[ DIR ]
drwxr-xr-x
table
[ DIR ]
drwxr-xr-x
collection.rb
729
B
-rw-r--r--
directory.rb
480
B
-rw-r--r--
reader.rb
896
B
-rw-r--r--
resource_file.rb
2.2
KB
-rw-r--r--
subset.rb
566
B
-rw-r--r--
subset_collection.rb
2.19
KB
-rw-r--r--
table.rb
653
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : reader.rb
module TTFunk module Reader private def io @file.contents end def read(bytes, format) io.read(bytes).unpack(format) end def read_signed(count) read(count * 2, 'n*').map { |i| to_signed(i) } end def to_signed(n) n >= 0x8000 ? -((n ^ 0xFFFF) + 1) : n end def parse_from(position) saved = io.pos io.pos = position result = yield position io.pos = saved result end # For debugging purposes def hexdump(string) bytes = string.unpack('C*') bytes.each_with_index do |c, i| printf('%02X', c) if (i + 1) % 16 == 0 puts elsif (i + 1) % 8 == 0 print ' ' else print ' ' end end puts unless bytes.length % 16 == 0 end end end
Close