!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/libexec/webmin/mysql/   drwxr-xr-x
Free 4.71 GB of 27.03 GB (17.41%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     save_cnf.cgi (2.59 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Save mysql server configuration options

require './mysql-lib.pl';
$access{'perms'} == 1 || &error($text{'cnf_ecannot'});
&error_setup($text{'cnf_err'});
&ReadParse();

# Get the mysqld section
foreach my $l (&get_all_mysqld_files()) {
    &lock_file($l);
    }
$conf = &get_mysql_config();
($mysqld) = grep { $_->{'name'} eq 'mysqld' } @$conf;
$mysqld || &error($text{'cnf_emysqld'});

# Parse mysql server inputs
if ($in{'port_def'}) {
    &save_directive($conf, $mysqld, "port", [ ]);
    }
else {
    $in{'port'} =~ /^\d+$/ && $in{'port'} > 0 && $in{'port'} < 65536 ||
        &error($text{'cnf_eport'});
    &save_directive($conf, $mysqld, "port", [ $in{'port'} ]);
    }

if ($in{'bind_def'}) {
    &save_directive($conf, $mysqld, "bind-address", [ ]);
    }
else {
    &check_ipaddress($in{'bind'}) ||
        &error($text{'cnf_ebind'});
    &save_directive($conf, $mysqld, "bind-address", [ $in{'bind'} ]);
    }

if ($in{'socket_def'}) {
    &save_directive($conf, $mysqld, "socket", [ ]);
    }
else {
    $in{'socket'} =~ /^\/\S+$/ ||
        &error($text{'cnf_esocket'});
    &save_directive($conf, $mysqld, "socket", [ $in{'socket'} ]);
    }

if ($in{'datadir_def'}) {
    &save_directive($conf, $mysqld, "datadir", [ ]);
    }
else {
    -d $in{'datadir'} || &error($text{'cnf_edatadir'});
    &save_directive($conf, $mysqld, "datadir", [ $in{'datadir'} ]);
    }

&save_directive($conf, $mysqld, "default-storage-engine",
        $in{'stor'} ? [ $in{'stor'} ] : [ ]);

$fpt = &find_value("innodb_file_per_table", $mems);
if ($fpt || $in{'fpt'}) {
    &save_directive($conf, $mysqld, "innodb_file_per_table",
            [ $in{'fpt'} ]);
    }

&save_directive($conf, $mysqld, "big-tables",
        $in{'big-tables'} ? [ "" ] : [ ]);

# Save set variables
%vars = &parse_set_variables(&find_value("set-variable", $mems));
foreach $w (@mysql_set_variables) {
    if ($in{$w."_def"}) {
        delete($vars{$w});
        }
    else {
        $in{$w} =~ /^\d+$/ || &error($text{"cnf_e".$w});
        $vars{$w} = $in{$w}.$in{$w."_units"};
        }
    }
@sets = ( );
foreach $v (keys %vars) {
    push(@sets, $v."=".$vars{$v});
    }
&save_directive($conf, $mysqld, "set-variable", \@sets);

# Save numeric variables
foreach $w (@mysql_number_variables, @mysql_byte_variables) {
    if ($in{$w."_def"}) {
        delete($vars{$w});
        &save_directive($conf, $mysqld, $w, [ ]);
        }
    else {
        $in{$w} =~ /^\d+[kmgt]?$/i || &error($text{"cnf_e".$w});
        &save_directive($conf, $mysqld, $w,
                [ $in{$w}.$in{$w."_units"} ]);
        }
    }

# Write out file
foreach my $l (&get_all_mysqld_files()) {
    &flush_file_lines($l);
    &unlock_file($l);
    }
if ($in{'restart'} && &is_mysql_running() > 0) {
    &stop_mysql();
    $err = &start_mysql();
    &error($err) if ($err);
    }
&webmin_log("cnf");
&redirect("");


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0091 ]--