⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.93
Server IP:
65.108.141.171
Server:
Linux server.heloix.com 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
webmin
/
virtual-server
/
View File Name :
clone_form.cgi
#!/usr/bin/perl # Display system cloning form require './virtual-server-lib.pl'; &ReadParse(); $d = &get_domain($in{'dom'}); # Check limits if ($d->{'parent'} && !&can_create_sub_servers() || !$d->{'parent'} && !&can_create_master_servers()) { &error($text{'clone_ecannot'}); } ($dleft, $dreason, $dmax) = &count_domains( $d->{'alias'} ? "aliasdoms" : $d->{'parent'} ? "realdoms" : "topdoms"); &error(&text('setup_emax', $dmax, $virtualmin_account_subscriptions)) if ($dleft == 0); &ui_print_header(&domain_in($d), $text{'clone_title'}, "", "clone"); print $text{'clone_warn'},"<p>\n"; print &ui_form_start("clone.cgi"); print &ui_hidden("dom", $d->{'id'}),"\n"; print &ui_table_start($text{'clone_header'}, undef, 2); # Domain being cloned print &ui_table_row($text{'clone_dom'}, "<tt>".&show_domain_name($d)."</tt>"); # New domain name print &ui_table_row($text{'clone_newdom'}, &ui_textbox("newdomain", undef, 40)); # New username and password if (!$d->{'parent'}) { print &ui_table_row($text{'clone_newuser'}, &vui_noauto_textbox("newuser", undef, 20)); print &ui_table_row($text{'clone_newpass'}, &ui_radio("newpass_def", 1, [ [ 1, $text{'clone_samepass'} ], [ 0, &vui_noauto_password("newpass", undef, 20) ] ])); } # IP address if ($d->{'virt'} && &can_select_ip()) { $tmpl = &get_template($d->{'template'}); $ipfield = &ui_textbox("ip", undef, 20)." ". &ui_checkbox("virtalready", 1, $text{'form_virtalready'}); if ($tmpl->{'ranges'} eq 'none') { # Must enter an IP print &ui_table_row($text{'clone_newip'}, $ipfield); } else { # Can select an IP, or allocate print &ui_table_row($text{'clone_newip'}, &ui_radio("ip_def", 1, [ [ 1, $text{'clone_alloc'}."<br>" ], [ 0, $text{'clone_vip'} ] ]). " ".$ipfield); } } print &ui_table_end(); print &ui_form_end([ [ undef, $text{'clone_ok'} ] ]); &ui_print_footer(&domain_footer_link($d), "", $text{'index_return'});