Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
gems /
3.1.0 /
gems /
debug-1.4.0 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
console
340
B
-rw-r--r--
2022-04-12 11:11
gentest
804
B
-rw-r--r--
2022-04-12 11:11
setup
131
B
-rw-r--r--
2022-04-12 11:11
Save
Rename
#!/usr/bin/env ruby require 'optparse' require_relative '../test/tool/test_builder' options = {} OptionParser.new do |opt| opt.banner = 'Usage: bin/gentest [file] [option]' opt.on('-m METHOD', 'Method name in the test file') do |m| options[:method] = m end opt.on('-c CLASS', 'Class name in the test file') do |c| options[:class] = c end opt.on('--open=FRONTEND', 'Start remote debugging with opening the network port.', 'Currently, only vscode is supported.') do |f| options[:open] = f.downcase end opt.parse!(ARGV) end exit if ARGV.empty? if options[:open] == 'vscode' DEBUGGER__::DAPTestBuilder.new(ARGV, options[:method], options[:class]).start else DEBUGGER__::LocalTestBuilder.new(ARGV, options[:method], options[:class]).start end