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


Viewing file:     save_address.cgi (1.01 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# save_address.cgi
# Save, add or delete an address book entry
use strict;
use warnings;
no warnings 'redefine';
no warnings 'uninitialized';
our (%text, %in);

require './mailbox-lib.pl';
&ReadParse();
my @addrs = &list_addresses();

if ($in{'delete'} ne '') {
    my ($del) = grep { $_->[2] eq $in{'delete'} } @addrs;
    &addressbook_remove_whitelist($del->[0]);
    &delete_address($in{'delete'});
    }
else {
    &error_setup($text{'address_err'});
    $in{'addr'} =~ /^\S+\@\S+$/ || &error($text{'address_eaddr'});
    $in{'addr'} =~ /[,<>"\(\)]/ && &error($text{'address_eaddr'});
    if ($in{'from'} == 2) {
        # Turn off default for all others
        foreach my $a (@addrs) {
            if ($a->[3] == 2 && $a->[2] != $in{'edit'}) {
                &modify_address($a->[2], $a->[0],
                        $a->[1], 1);
                }
            }
        }
    if ($in{'add'}) {
        &create_address($in{'addr'}, $in{'name'}, $in{'from'});
        }
    else {
        &modify_address($in{'edit'}, $in{'addr'}, $in{'name'}, $in{'from'});
        }
    &addressbook_to_whitelist();
    }
&redirect("list_addresses.cgi?mode=users");

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