!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/webmin/   drwxr-xr-x
Free 3.79 GB of 27.03 GB (14.01%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     postinstall.pl (1.83 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

require 'webmin-lib.pl';

sub module_install
{
# Update cache of which module's underlying servers are installed
&build_installed_modules();

# Pick a random update time
if (!defined($config{'uphour'}) ||
    $config{'uphour'} == 3 && $config{'upmins'} == 0 && !$config{'update'}) {
    &seed_random();
    $config{'uphour'} = int(rand()*24);
    $config{'upmins'} = int(rand()*60);
    &save_module_config();
    }

# Figure out the preferred cipher mode
&lock_file("$config_directory/miniserv.conf");
my %miniserv;
&get_miniserv_config(\%miniserv);
if (!defined($miniserv{'cipher_list_def'})) {
    # No mode set, so guess based on ciphers
    my $clist = $miniserv{'ssl_cipher_list'};
    my $cmode = !$clist ? 1 :
            $clist eq $strong_ssl_ciphers ? 2 :
            $clist eq $pfs_ssl_ciphers ? 3 :
            0;
    $miniserv{'cipher_list_def'} = $cmode;
    }
elsif ($miniserv{'cipher_list_def'} == 2 || $miniserv{'cipher_list_def'} == 3) {
    # Sync ciphers with Webmin's preferred list
    $miniserv{'ssl_cipher_list'} = $miniserv{'cipher_list_def'} == 2 ?
        $strong_ssl_ciphers : $pfs_ssl_ciphers;
    }

# If this is the first install, enable recording of logins by default
if (!-r $first_install_file || $miniserv{'login_script'} eq $record_login_cmd) {
    &foreign_require("cron");
    &cron::create_wrapper($record_login_cmd, "", "record-login.pl");
    &cron::create_wrapper($record_logout_cmd, "", "record-logout.pl");
    &cron::create_wrapper($record_failed_cmd, "", "record-failed.pl");
    $miniserv{'login_script'} = $record_login_cmd;
    $miniserv{'logout_script'} = $record_logout_cmd;
    $miniserv{'failed_script'} = $record_failed_cmd;
    }

&put_miniserv_config(\%miniserv);
&unlock_file("$config_directory/miniserv.conf");

# Record the version of Webmin at first install
if (!-r $first_install_file) {
    my %first;
    $first{'version'} = &get_webmin_version();
    &write_file($first_install_file, \%first);
    }
}


:: 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.003 ]--