Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
gems /
3.0.0 /
gems /
rbs-1.0.4 /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
annotate-with-rdoc
4.27
KB
-rw-r--r--
console
338
B
-rw-r--r--
query-rdoc
2.91
KB
-rw-r--r--
rbs-prof
189
B
-rw-r--r--
run_in_md.rb
1.17
KB
-rw-r--r--
setup
150
B
-rw-r--r--
sort
1.81
KB
-rw-r--r--
steep
103
B
-rw-r--r--
test_runner.rb
710
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : run_in_md.rb
require "tmpdir" require "shellwords" ARGV.each do |path| puts "~~~~~~~ Checking #{path} ~~~~~~" content = File.read(path) snippets = [] lines = [] content.lines.each.with_index do |line, index| case line when /run-start:/ lines = [[line, index+1]] when /run-end/ lines << [line, index+1] snippets << lines lines = [] else lines << [line, index+1] end end snippets.each do |lines| puts ">>> Code detected: " hd, _, *code_lines, _, _ = lines head = hd[0] head.gsub!(/^<!-- +/, "").gsub!(/ +-->$/, "") _,name,command = head.split(/:/) puts "# command=#{Shellwords.split(command).inspect}" puts "# name=#{name}" puts code_lines.map {|line, i| "#{"%4d" % i} #{line}" }.join code = code_lines.map(&:first).join puts ">>> Running..." Dir.mktmpdir do |dir| File.write(File.join(dir, name), code) pid = spawn({ "BUNDLE_GEMFILE" => File.join(__dir__, "../Gemfile") }, *Shellwords.split(command), chdir: dir) _, status = Process.waitpid2(pid) status.success? or raise "Failed to execute code: #{code_lines.join}" end end end
Close