Linux cpanel07wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24 01:42:00 EDT 2020 x86_64
Apache
: 163.44.198.52 | : 216.73.216.32
Cant Read [ /etc/named.conf ]
8.0.9
cp657342
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
/
opt /
passenger-5.3.7-4.el6.cloudlinux /
dev /
[ HOME SHELL ]
Name
Size
Permission
Action
colorize-logs
7.29
KB
-rwxr-xr-x
copy_boost_headers
7.01
KB
-rwxr-xr-x
index_cxx_dependencies.rb
3.93
KB
-rwxr-xr-x
install_scripts_bootstrap_code...
1.31
KB
-rwxr-xr-x
list_tests
981
B
-rwxr-xr-x
parse_file_descriptor_log
2.54
KB
-rwxr-xr-x
ruby_server.rb
5.98
KB
-rwxr-xr-x
runner
623
B
-rwxr-xr-x
show-latest-crashlog-dir
784
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : list_tests
#!/usr/bin/env ruby # # Usage: ./dev/list_tests.rb <FILENAME> # # Lists the test names in the given .cpp test file. require_relative '../src/ruby_supportlib/phusion_passenger/utils/ansi_colors' include PhusionPassenger::Utils::AnsiColors def extract_category_name(occurrence) occurrence =~ / (.+) / return $1 end def extract_test_name(occurrence) occurrence = occurrence.sub(/.*?\((.+)\).*/m, '\1') occurrence.gsub!(/"\n[ \t]*"/m, '') occurrence.sub!(/\A"/, '') occurrence.sub!(/"\Z/, '') return occurrence end def start(filename) STDOUT.write(DEFAULT_TERMINAL_COLOR) begin occurrences = File.read(filename).scan(%r{/\*\*\*\*\* .+? \*\*\*\*\*/|set_test_name\(.+?\);}m) occurrences.each do |occurrence| if occurrence =~ %r{\A/} puts ansi_colorize("<b>" + extract_category_name(occurrence) + "</b>") else puts " " + extract_test_name(occurrence) end end ensure STDOUT.write(RESET) end end start(ARGV[0])
Close