[ Avaa Bypassed ]




Upload:

Command:

www-data@18.188.66.142: ~ $
# mod_proxy.pl
# Editors for proxy directives

sub mod_proxy_directives
{
local $rv;
$rv = [ [ 'ProxyRequests', 0, 13, 'virtual', undef, 11 ],
        [ 'ProxyRemote', 1, 13, 'virtual', undef, 7 ],
        [ 'ProxyPass', 1, 10, 'virtual', undef, 0 ],
        [ 'ProxyPassReverse', 1, 10, 'virtual', 1.306, 0 ],
        [ 'ProxyBlock', 1, 13, 'virtual', 1.2, 9 ],
        [ 'NoProxy', 1, 13, 'virtual', 1.3, 5 ],
        [ 'ProxyDomain', 0, 13, 'virtual', 1.3, 4 ],
	[ 'AllowCONNECT', 0, 13, 'virtual', 1.302, 2 ],
        [ 'CacheRoot', 0, 13, 'virtual', -2.0, 10 ],
        [ 'CacheSize', 0, 13, 'virtual', -2.0 ],
        [ 'CacheGcInterval', 0, 13, 'virtual', -2.0 ],
        [ 'CacheMaxExpire', 0, 13, 'virtual', -2.0 ],
        [ 'CacheLastModifiedFactor', 0, 13, 'virtual', -2.0 ],
        [ 'CacheDirLevels', 0, 13, 'virtual', -2.0 ],
        [ 'CacheDirLength', 0, 13, 'virtual', -2.0 ],
        [ 'CacheDefaultExpire', 0, 13, 'virtual', -2.0 ],
        [ 'CacheForceCompletion', 0, 13, 'virtual', '1.301-2.0' ],
        [ 'NoCache', 1, 13, 'virtual', -2.0, 3 ],
	[ 'ProxyMaxForwards', 0, 13, 'virtual', 2.0 ],
	[ 'ProxyPreserveHost', 0, 13, 'virtual', 2.031 ],
	[ 'ProxyTimeout', 0, 13, 'virtual', 2.031 ],
	[ 'ProxyVia', 0, 13, 'virtual', 2.0 ] ];
return &make_directives($rv, $_[0], "mod_proxy");
}

require 'cache.pl';

sub edit_ProxyRequests
{
return (1, $text{'mod_proxy_proxy'},
        &choice_input($_[0]->{'value'}, "ProxyRequests", "off",
                      "$text{'yes'},on", "$text{'no'},off"));
}
sub save_ProxyRequests
{
return &parse_choice("ProxyRequests", "off");
}

sub edit_ProxyRemote
{
local($rv, $i, $match, $proxy, $max);
$rv = "<table border>\n".
      "<tr $tb> <td><b>$text{'mod_proxy_req'}</b></td> <td><b>$text{'mod_proxy_forw'}</b></td> </tr>\n";
$max = @{$_[0]}+1;
for($i=0; $i<$max; $i++) {
	if ($_[0]->[$i]->{'value'} =~ /^(\S+)\s+(\S+)$/) {
		$match = $1; $proxy = $2;
		}
	else {
		$match = "*"; $proxy = "";
		}
	$rv .= "<tr $cb>\n";
	$rv .= sprintf
	        "<td><input type=radio name=ProxyRemote_match_all_$i value=1 %s> $text{'mod_proxy_all'}\n",
	        $match eq "*" ? "checked" : "";
	$rv .= sprintf
	        "<input type=radio name=ProxyRemote_match_all_$i value=0 %s> $text{'mod_proxy_match'}\n",
	        $match eq "*" ? "" : "checked";
	$rv .= sprintf
	        "<input name=ProxyRemote_match_$i size=20 value=\"%s\"></td>\n",
	        $match eq "*" ? "" : $match;
	$rv .= "<td><input name=ProxyRemote_proxy_$i size=20 ".
	       "value=\"$proxy\"></td>\n";
	$rv .= "</tr>\n";
	}
$rv .= "</table>\n";
return (2, $text{'mod_proxy_pass'}, $rv);
}
sub save_ProxyRemote
{
local($i, $match, $match_all, $proxy, @rv);
for($i=0; defined($proxy = $in{"ProxyRemote_proxy_$i"}); $i++) {
	$match = $in{"ProxyRemote_match_$i"};
	$match_all = $in{"ProxyRemote_match_all_$i"};
	if ($match !~ /\S/ && $proxy !~ /\S/) { next; }
	if ($match_all) { $match = "*"; }
	elsif ($match !~ /^\S+$/) { &error(&text('mod_proxy_erequest', $match)); }
	$proxy =~ /^http:\/\/\S+$/ || &error(&text('mod_proxy_epurl', $proxy));
	push(@rv, "$match $proxy");
	}
return ( \@rv );
}

sub edit_ProxyPass
{
return (2, $text{'mod_proxy_map'},
	&proxy_pass_input($_[0], "ProxyPass", $_[1]));
}
sub save_ProxyPass
{
return &parse_proxy_pass("ProxyPass");
}

sub edit_ProxyPassReverse
{
return (2, $text{'mod_proxy_headers'},
	&proxy_pass_input($_[0], "ProxyPassReverse", $_[1]));
}
sub save_ProxyPassReverse
{
return &parse_proxy_pass("ProxyPassReverse");
}

# proxy_pass_input(&directives, name, &config)
sub proxy_pass_input
{
local($rv, $i, $path, $url, $max);
$rv = "<table border>\n".
      "<tr $tb> <td><b>$text{'mod_proxy_local'}</b></td> <td><b>$text{'mod_proxy_remote'}</b></td> </tr>\n";
$max = @{$_[0]} + 1;
for($i=0; $i<$max; $i++) {
	if ($_[0]->[$i]->{'value'} =~ /^(\S+)\s+(\S+)$/) {
		$path = $1; $url = $2;
		}
	else { $path = $url = ""; }
	$rv .= "<tr $cb>\n";
	$rv .= "<td>".&ui_textbox("$_[1]_path_$i", $path, 20)."</td>\n";
	if ($_[2]->{'version'} >= 2.0) {
		$rv .= "<td>".&ui_opt_textbox("$_[1]_url_$i",
				$url eq "!" ? undef : $url, 30,
				$text{'mod_proxy_not'})."</td>\n";
		}
	else {
		$rv .= "<td>".&ui_textbox("$_[1]_url_$i", $url, 30),"</td>";
		}
	$rv .= "</tr>\n";
	}
$rv .= "</table>\n";
return $rv;
}

# parse_proxy_pass(name)
sub parse_proxy_pass
{
local($i, $url, $path, @rv, @notrv);
for($i=0; defined($path = $in{"$_[0]_path_$i"}); $i++) {
	$url = $in{"$_[0]_url_${i}_def"} ? "!" : $in{"$_[0]_url_$i"};
	next if (!$path);
	$path =~ /^\/\S*$/ || &error(&text('mod_proxy_elurl', $path));
	$url =~ /^(http|https|balancer|ajp):\/\/(\S+)$/ || $url eq "!" ||
		&error(&text('mod_proxy_erurl', $url));
	if ($url eq "!") {
		push(@notrv, "$path $url");
		}
	else {
		push(@rv, "$path $url");
		}
	}
return ( [ @notrv, @rv ] );
}

sub edit_ProxyBlock
{
local($b, @b);
foreach $b (@{$_[0]}) { push(@b, split(/\s+/, $b->{'value'})); }
return (2, $text{'mod_proxy_block'},
        &opt_input(@b ? join(' ', @b) : undef, "ProxyBlock", $text{'mod_proxy_none3'}, 50));
}
sub save_ProxyBlock
{
return &parse_opt("ProxyBlock", '\S', $text{'mod_proxy_eblock'});
}

sub edit_NoProxy
{
local($n, @n, $i, $rv);
foreach $n (@{$_[0]}) { push(@n, split(/\s+/, $n->{'value'})); }
$rv = "<table border>\n".
      "<tr $tb> <td><b>$text{'mod_proxy_type'}</b></td> <td><b>$text{'mod_proxy_noproxy'}</b></td> </tr>\n";
for($i=0; $i<=@n; $i++) {
	$rv .= "<tr $cb>\n";
	if ($i>=@n) { $type = 0; }
	elsif ($n[$i] =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/) {
		if ($4 == 0) { $type = 3; }
		else { $type = 0; }
		}
	elsif ($n[$i] =~ /^([0-9\.]+)\/(\d+)$/) { $type = 4; }
	elsif ($n[$i] =~ /^([0-9\.]+)$/) { $type = 3; }
	elsif ($n[$i] =~ /^\.(\S+)$/) { $type = 2; }
	else { $type = 1; }
	$rv .= "<td>".&select_input($type, "NoProxy_type_$i", 0,
		"$text{'mod_proxy_ip'},0", "$text{'mod_proxy_host'},1",
		"$text{'mod_proxy_domain'},2", "$text{'mod_proxy_net'},3",
		"$text{'mod_proxy_netbit'},4")."</td>\n";
	$rv .= "<td><input name=NoProxy_for_$i size=30 value=\"$n[$i]\"></td>\n";
	$rv .= "</tr>\n";
	}
$rv .= "</table>\n";
return (2, $text{'mod_proxy_nopass'}, $rv);
}
sub save_NoProxy
{
local($i, $type, $for, @rv);
for($i=0; defined($type = $in{"NoProxy_type_$i"}); $i++) {
	$for = $in{"NoProxy_for_$i"};
	if ($for !~ /\S/) { next; }
	if ($type == 0) {
		&check_ipaddress($for) || 
		    &check_ip6address($for) || 
			&error(&text('mod_proxy_eip', $for));
		}
	elsif ($type == 1) {
		$for =~ /^[A-z0-9\-][A-z0-9\-\.]+[A-z0-9\-]$/ ||
			&error(&text('mod_proxy_ehost', $for));
		}
	elsif ($type == 2) {
		$for =~ /^\.[A-z0-9\-\.]+[A-z0-9\-]$/ ||
			&error(&text('mod_proxy_edomain', $for));
		}
	elsif ($type == 3) {
		if ($for =~ /^(\d+)$/) { $for .= ".0.0.0"; }
		elsif ($for =~ /^(\d+)\.(\d+)$/) { $for .= ".0.0"; }
		elsif ($for =~ /^(\d+)\.(\d+)\.(\d+)$/) { $for .= ".0"; }
		&check_ipaddress($for) || &error(&text('mod_proxy_enet', $for));
		}
	elsif ($type == 4) {
		($for =~ /^(\S+)\/(\d+)$/ &&
	          (&check_ipaddress($1) || &check_ip6address($1)) && $2 < 32) ||
			&error(&text('mod_proxy_enetbit', $for));
		}
	push(@rv, $for);
	}
return @rv ? ( [ join(' ', @rv) ] ) : ( [ ] );
}

sub edit_ProxyDomain
{
return (1, $text{'mod_proxy_nodomain'},
        &opt_input($_[0]->{'value'}, "ProxyDomain", $text{'mod_proxy_none'}, 20));
}
sub save_ProxyDomain
{
return &parse_opt("ProxyDomain", '^[A-z0-9\-]+$', $text{'mod_proxy_enodomain'});
}

sub edit_AllowCONNECT
{
return (1, $text{'mod_proxy_connect'},
        &opt_input($_[0]->{'value'}, "AllowCONNECT", $text{'mod_proxy_default'}, 10));
}
sub save_AllowCONNECT
{
return &parse_opt("AllowCONNECT", '^[\d ]+$', $text{'mod_proxy_econnect'});
}

sub edit_ProxyMaxForwards
{
return (1, $text{'mod_proxy_maxfw'},
	&opt_input($_[0]->{'value'}, "ProxyMaxForwards", $text{'default'}, 5));
}
sub save_ProxyMaxForwards
{
return &parse_opt("ProxyMaxForwards", '^\d+$', $text{'mod_proxy_emaxfw'});
}

sub edit_ProxyPreserveHost
{
return (1, $text{'mod_proxy_preserve'},
	&choice_input($_[0]->{'value'}, "ProxyPreserveHost", "",
	      "$text{'yes'},on", "$text{'no'},off", "$text{'default'},"));
}
sub save_ProxyPreserveHost
{
return &parse_choice("ProxyPreserveHost", "");
}

sub edit_ProxyTimeout
{
return (1, $text{'mod_proxy_timeout'},
	&opt_input($_[0]->{'value'}, "ProxyTimeout", $text{'default'}, 5));
}
sub save_ProxyTimeout
{
return &parse_opt("ProxyTimeout", '^\d+$', $text{'mod_proxy_etimeout'});
}

sub edit_ProxyVia
{
return (1, $text{'mod_proxy_via'},
	&choice_input($_[0]->{'value'}, "ProxyVia", "",
	      "$text{'yes'},on", "$text{'no'},off", "$text{'default'},"));
}
sub save_ProxyVia
{
return &parse_choice("ProxyVia", "");
}



1;


Filemanager

Name Type Size Permission Actions
images Folder 0755
lang Folder 0755
CHANGELOG File 4.06 KB 0644
acl_security.pl File 5.44 KB 0755
allmanual_form.cgi File 1.26 KB 0755
allmanual_save.cgi File 915 B 0755
apache-lib.pl File 57.96 KB 0755
auth-lib.pl File 3.09 KB 0755
autoindex.pl File 9.54 KB 0755
backup_config.pl File 1.4 KB 0755
browsermatch.pl File 2.15 KB 0755
cache.pl File 3 KB 0755
cgi_args.pl File 1.02 KB 0755
change_dir.cgi File 1.36 KB 0755
change_files.cgi File 1.13 KB 0755
config-AlmaLinux-7.0-ALL File 419 B 0644
config-Amazon-Linux-2-ALL File 419 B 0644
config-CentOS-Linux-7.0-ALL File 419 B 0644
config-CentOS-Stream-Linux-8.0-ALL File 419 B 0644
config-CloudLinux-8.0-ALL File 419 B 0644
config-Fedora-Linux-20.00-ALL File 419 B 0644
config-Oracle-Linux-8.0-ALL File 419 B 0644
config-Redhat-Enterprise-Linux-7.0-ALL File 419 B 0644
config-Rocky-Linux-7.0-ALL File 419 B 0644
config-Scientific-Linux-7.0-ALL File 419 B 0644
config-aix File 300 B 0644
config-cobalt-linux File 311 B 0644
config-coherent-linux File 387 B 0644
config-corel-linux File 412 B 0644
config-debian-linux File 412 B 0644
config-debian-linux-10.0-ALL File 552 B 0644
config-debian-linux-3.1-6.9 File 607 B 0644
config-debian-linux-7.0-9.0 File 637 B 0644
config-freebsd File 457 B 0644
config-freebsd-8.0-ALL File 465 B 0644
config-generic-linux File 321 B 0644
config-gentoo-linux File 447 B 0644
config-hpux File 321 B 0644
config-irix File 321 B 0644
config-irix-6.5 File 359 B 0644
config-lfs-linux File 503 B 0644
config-macos File 533 B 0644
config-macos-1.3-8.1 File 382 B 0644
config-macos-9.2-ALL File 347 B 0644
config-mandrake-linux File 401 B 0644
config-msc-linux File 301 B 0644
config-netbsd File 421 B 0644
config-open-linux-2.3 File 377 B 0644
config-open-linux-2.3e File 363 B 0644
config-open-linux-2.4 File 363 B 0644
config-open-linux-2.5 File 460 B 0644
config-open-linux-3.1e File 471 B 0644
config-openSUSE-Linux-15.0-ALL File 539 B 0644
config-openbsd File 383 B 0644
config-openmamba-linux File 417 B 0644
config-openserver File 461 B 0644
config-osf1 File 321 B 0644
config-pardus-linux File 397 B 0644
config-redhat-linux File 311 B 0644
config-redhat-linux-12.1-12.9 File 388 B 0644
config-redhat-linux-13.0-23.0 File 373 B 0644
config-redhat-linux-24.0-ALL File 419 B 0644
config-redhat-linux-7.0-7.4 File 431 B 0644
config-redhat-linux-8.0 File 387 B 0644
config-redhat-linux-8.1 File 473 B 0644
config-redhat-linux-9.0-12.0 File 387 B 0644
config-slackware-linux File 212 B 0644
config-slackware-linux-12.0-ALL File 422 B 0644
config-slackware-linux-7.0-7.1 File 349 B 0644
config-slackware-linux-8.0-ALL File 388 B 0644
config-sol-linux File 333 B 0644
config-solaris File 321 B 0644
config-solaris-10 File 325 B 0644
config-solaris-11-ALL File 475 B 0644
config-solaris-9 File 325 B 0644
config-suse-linux File 414 B 0644
config-suse-linux-7.1-8.0 File 412 B 0644
config-suse-linux-8.2 File 439 B 0644
config-suse-linux-9.0 File 471 B 0644
config-suse-linux-9.1-ALL File 547 B 0644
config-syno-linux File 321 B 0644
config-trustix-linux File 372 B 0644
config-turbo-linux File 311 B 0644
config-united-linux File 403 B 0644
config-unixware File 461 B 0644
config-windows File 449 B 0644
config.info File 2.03 KB 0644
config.info.bg File 3.31 KB 0644
config.info.ca File 2.22 KB 0644
config.info.cs File 2.03 KB 0644
config.info.da File 479 B 0644
config.info.de File 2.24 KB 0644
config.info.es File 1.76 KB 0644
config.info.fa File 2.36 KB 0644
config.info.fr File 2.46 KB 0644
config.info.hr File 0 B 0644
config.info.hu File 775 B 0644
config.info.ja File 2.16 KB 0644
config.info.ms File 2.15 KB 0644
config.info.nl File 1.98 KB 0644
config.info.no File 2.05 KB 0644
config.info.pl File 2.12 KB 0644
config.info.pt_BR File 2.15 KB 0644
config.info.ru File 1.56 KB 0644
config.info.ru.UTF-8 File 1.56 KB 0644
config.info.sv File 650 B 0644
config.info.tr File 1.81 KB 0644
config.info.uk File 1.58 KB 0644
config.info.zh File 568 B 0644
config.info.zh_TW File 1.23 KB 0644
config_solaris.txt.1.25 File 81 B 0644
core.pl File 40.41 KB 0755
create_dir.cgi File 1.24 KB 0755
create_files.cgi File 1014 B 0755
create_htaccess.cgi File 1.49 KB 0755
create_virt.cgi File 7.4 KB 0755
defaultacl File 119 B 0644
delete_htaccess.cgi File 552 B 0755
delete_vservs.cgi File 832 B 0755
dir_index.cgi File 1.94 KB 0755
edit_authgroup.cgi File 1.52 KB 0755
edit_authuser.cgi File 1.75 KB 0755
edit_defines.cgi File 799 B 0755
edit_dir.cgi File 1.03 KB 0755
edit_files.cgi File 1.06 KB 0755
edit_global.cgi File 1.62 KB 0755
edit_gmime_type.cgi File 1.01 KB 0755
edit_htaccess.cgi File 999 B 0755
edit_mods.cgi File 1.04 KB 0755
edit_virt.cgi File 1.46 KB 0755
feedback_files.pl File 125 B 0755
files_index.cgi File 1.68 KB 0755
find_htaccess.cgi File 1.78 KB 0755
htaccess.cgi File 1.28 KB 0755
htaccess_index.cgi File 2.38 KB 0755
index.cgi File 15.34 KB 0755
install_check.pl File 450 B 0755
list_authgroups.cgi File 1.42 KB 0755
list_authusers.cgi File 1.88 KB 0755
log_parser.pl File 3.7 KB 0755
manual_form.cgi File 3.2 KB 0755
manual_save.cgi File 2.24 KB 0755
mod_access.pl File 3.18 KB 0755
mod_actions.pl File 2.57 KB 0755
mod_alias.pl File 5.7 KB 0755
mod_apachessl.pl File 13.47 KB 0755
mod_asis.pl File 125 B 0755
mod_auth.pl File 1.88 KB 0755
mod_auth_basic.pl File 983 B 0755
mod_auth_dbm.pl File 1.79 KB 0755
mod_auth_digest.pl File 1.56 KB 0755
mod_authn_dbm.pl File 1.02 KB 0755
mod_authn_file.pl File 838 B 0755
mod_authz_dbm.pl File 1.38 KB 0755
mod_authz_groupfile.pl File 863 B 0755
mod_authz_host.pl File 314 B 0755
mod_authz_owner.pl File 139 B 0755
mod_autoindex.pl File 2.15 KB 0755
mod_bandwidth.pl File 3.86 KB 0755
mod_browser.pl File 274 B 0755
mod_cache.pl File 2.73 KB 0755
mod_cern_meta.pl File 1.13 KB 0755
mod_cgi.pl File 1.26 KB 0755
mod_cgid.pl File 1.26 KB 0755
mod_dav.pl File 1.1 KB 0755
mod_dir.pl File 1.06 KB 0755
mod_disk_cache.pl File 1.03 KB 0755
mod_env.pl File 2.03 KB 0755
mod_expires.pl.broken File 3.22 KB 0644
mod_ext_filter.pl File 2.63 KB 0755
mod_fastcgi.pl File 181 B 0755
mod_fcgid.pl File 169 B 0755
mod_http2.pl File 107 B 0755
mod_imap.pl File 2.35 KB 0755
mod_include.pl File 601 B 0755
mod_info.pl File 145 B 0755
mod_log_agent.pl File 1.08 KB 0755
mod_log_common.pl File 1.14 KB 0755
mod_log_config.pl File 4.49 KB 0755
mod_log_referer.pl File 1.59 KB 0755
mod_mem_cache.pl File 1.1 KB 0755
mod_mime.pl File 6.16 KB 0755
mod_mime_magic.pl File 521 B 0755
mod_mpm_prefork.pl File 820 B 0755
mod_negotiation.pl File 1.25 KB 0755
mod_perl.pl File 147 B 0755
mod_php.pl File 93 B 0755
mod_php3.pl File 147 B 0755
mod_php4.pl File 2.89 KB 0755
mod_php5.pl File 2.82 KB 0755
mod_php7.pl File 2.82 KB 0755
mod_proxy.pl File 8.42 KB 0755
mod_proxy_balancer.pl File 173 B 0755
mod_rewrite.pl File 121 B 0755
mod_ruby.pl File 155 B 0755
mod_setenvif.pl File 3.04 KB 0755
mod_speling.pl File 565 B 0755
mod_ssl.pl File 6.22 KB 0755
mod_status.pl File 542 B 0755
mod_suexec.pl File 1.24 KB 0755
mod_userdir.pl File 2.58 KB 0755
mod_vhost_alias.pl File 2.33 KB 0755
module.info File 265 B 0644
module.info.af File 0 B 0644
module.info.af.auto File 104 B 0644
module.info.ar File 0 B 0644
module.info.ar.auto File 156 B 0644
module.info.be File 0 B 0644
module.info.be.auto File 154 B 0644
module.info.bg File 35 B 0644
module.info.bg.auto File 130 B 0644
module.info.ca File 109 B 0644
module.info.ca.auto File 15 B 0644
module.info.cs File 26 B 0644
module.info.cs.auto File 87 B 0644
module.info.da File 25 B 0644
module.info.da.auto File 85 B 0644
module.info.de File 92 B 0644
module.info.de.auto File 15 B 0644
module.info.el File 0 B 0644
module.info.el.auto File 170 B 0644
module.info.es File 28 B 0644
module.info.es.auto File 93 B 0644
module.info.eu File 0 B 0644
module.info.eu.auto File 106 B 0644
module.info.fa File 0 B 0644
module.info.fa.auto File 171 B 0644
module.info.fi File 0 B 0644
module.info.fi.auto File 119 B 0644
module.info.fr File 27 B 0644
module.info.fr.auto File 96 B 0644
module.info.he File 0 B 0644
module.info.he.auto File 162 B 0644
module.info.hr File 0 B 0644
module.info.hr.auto File 110 B 0644
module.info.hu File 95 B 0644
module.info.hu.auto File 15 B 0644
module.info.it File 0 B 0644
module.info.it.auto File 118 B 0644
module.info.ja File 28 B 0644
module.info.ja.auto File 115 B 0644
module.info.ko File 26 B 0644
module.info.ko.auto File 95 B 0644
module.info.lt File 0 B 0644
module.info.lt.auto File 137 B 0644
module.info.lv File 0 B 0644
module.info.lv.auto File 124 B 0644
module.info.ms File 108 B 0644
module.info.ms.auto File 15 B 0644
module.info.mt File 0 B 0644
module.info.mt.auto File 118 B 0644
module.info.nl File 25 B 0644
module.info.nl.auto File 83 B 0644
module.info.no File 25 B 0644
module.info.no.auto File 83 B 0644
module.info.pl File 96 B 0644
module.info.pl.auto File 14 B 0644
module.info.pt File 28 B 0644
module.info.pt.auto File 84 B 0644
module.info.pt_BR File 31 B 0644
module.info.pt_BR.auto File 90 B 0644
module.info.ro File 0 B 0644
module.info.ro.auto File 114 B 0644
module.info.ru File 35 B 0644
module.info.ru.auto File 111 B 0644
module.info.sk File 0 B 0644
module.info.sk.auto File 116 B 0644
module.info.sl File 0 B 0644
module.info.sl.auto File 115 B 0644
module.info.sv File 25 B 0644
module.info.sv.auto File 84 B 0644
module.info.th File 0 B 0644
module.info.th.auto File 235 B 0644
module.info.tr File 28 B 0644
module.info.tr.auto File 99 B 0644
module.info.uk File 0 B 0644
module.info.uk.auto File 150 B 0644
module.info.ur File 0 B 0644
module.info.ur.auto File 160 B 0644
module.info.vi File 0 B 0644
module.info.vi.auto File 138 B 0644
module.info.zh File 25 B 0644
module.info.zh.auto File 76 B 0644
module.info.zh_TW File 34 B 0644
module.info.zh_TW.auto File 82 B 0644
mpm_netware.pl File 1.26 KB 0755
mpm_winnt.pl File 801 B 0755
notes File 1.12 KB 0644
perchild.pl File 4.05 KB 0755
postinstall.pl File 92 B 0755
prefork.pl File 796 B 0755
prefs.info File 52 B 0644
reconfig.cgi File 543 B 0755
reconfig_form.cgi File 1.55 KB 0755
remove_vserv.pl File 814 B 0755
restart.cgi File 1019 B 0755
save_authgroup.cgi File 1.09 KB 0755
save_authuser.cgi File 1.17 KB 0755
save_defines.cgi File 462 B 0755
save_dir.cgi File 640 B 0755
save_files.cgi File 745 B 0755
save_global.cgi File 483 B 0755
save_gmime_type.cgi File 745 B 0755
save_htaccess.cgi File 671 B 0755
save_mods.cgi File 883 B 0755
save_sync.cgi File 488 B 0755
save_virt.cgi File 1.05 KB 0755
save_vserv.cgi File 3.73 KB 0755
search_virt.cgi File 4.12 KB 0755
show.cgi File 3.64 KB 0755
show_dir.cgi File 1.99 KB 0755
show_files.cgi File 1.99 KB 0755
show_htaccess.cgi File 2.02 KB 0755
show_virt.cgi File 2.12 KB 0755
start.cgi File 309 B 0755
stop.cgi File 290 B 0755
syslog_logs.pl File 457 B 0755
useradmin_update.pl File 957 B 0755
virt_index.cgi File 4.92 KB 0755
worker.pl File 1.57 KB 0755