!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/usr/share/webmin/sshd/   drwxr-xr-x
Free 25.49 GB of 117.98 GB (21.61%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     save_misc.cgi (2.53 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# save_misc.cgi
# save miscellaneous options

require './sshd-lib.pl';
&ReadParse();
&error_setup($text{'misc_err'});
&lock_file($config{'sshd_config'});
$conf = &get_sshd_config();

&save_directive("X11Forwarding", $conf, $in{'x11'} ? 'yes' : 'no');

if ($version{'type'} ne 'ssh' || $version{'number'} < 2) {
    if ($in{'xoff_def'}) {
        &save_directive("X11DisplayOffset", $conf);
        }
    else {
        $in{'xoff'} =~ /^\d+$/ || &error($text{'misc_exoff'});
        &save_directive("X11DisplayOffset", $conf, $in{'xoff'});
        }

    if ($version{'type'} eq 'ssh' || $version{'number'} >= 2) {
        if ($in{'xauth_def'}) {
            &save_directive("XAuthLocation", $conf);
            }
        else {
            -x $in{'xauth'} || &error($text{'misc_exauth'});
            &save_directive("XAuthLocation", $conf, $in{'xauth'});
            }
        }
    }

if ($version{'type'} eq 'ssh' && $version{'number'} < 2) {
    if ($in{'umask_def'}) {
        &save_directive("Umask", $conf);
        }
    else {
        $in{'umask'} =~ /^0[0-7][0-7][0-7]$/ ||
            &error($text{'misc_eumask'});
        &save_directive("Umask", $conf, $in{'umask'});
        }
    }

&save_directive("SyslogFacility", $conf,
        $in{'syslog_def'} ? undef : uc($in{'syslog'}));

if ($version{'type'} eq 'openssh') {
    &save_directive("LogLevel", $conf,
            $in{'loglevel_def'} ? undef : $in{'loglevel'});
    }

if ($version{'type'} ne 'ssh' || $version{'number'} < 2) {
    if ($in{'bits_def'}) {
        &save_directive("ServerKeyBits", $conf);
        }
    else {
        $in{'bits'} =~ /^\d+$/ || &error($text{'misc_ebits'});
        &save_directive("ServerKeyBits", $conf, $in{'bits'});
        }
    }

if ($version{'type'} eq 'ssh') {
    &save_directive("QuietMode", $conf, $in{'quite'} ? 'yes' : 'no');
    }

if ($version{'type'} ne 'ssh' || $version{'number'} < 2) {
    if ($in{'regen_def'}) {
        &save_directive("KeyRegenerationInterval", $conf);
        }
    else {
        $in{'regen'} =~ /^\d+$/ || &error($text{'misc_eregen'});
        &save_directive("KeyRegenerationInterval", $conf, $in{'regen'});
        }
    }

if ($version{'type'} eq 'ssh' && $version{'number'} < 2) {
    &save_directive("FascistLogging", $conf, $in{'fascist'} ? 'yes' : 'no');
    }

if ($version{'type'} eq 'openssh' && $version{'number'} >= 2) {
    if ($in{'pid_def'}) {
        &save_directive("PidFile", $conf);
        }
    else {
        $in{'pid'} =~ /^\S+$/ || &error($text{'misc_epid'});
        &save_directive("PidFile", $conf, $in{'pid'});
        }
    }

if ($version{'type'} eq 'openssh' &&
    $version{'number'} >= 3.2 && $version{'number'} < 7.5) {
    &save_directive("UsePrivilegeSeparation", $conf,
            $in{'separ'} ? 'yes' : 'no');
    }

&flush_file_lines();
&unlock_file($config{'sshd_config'});
&webmin_log("misc");
&redirect("");


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0036 ]--