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


Viewing file:     verify.cgi (1.53 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# verify.cgi
# Verify the signature on a file

require './gnupg-lib.pl';
&ReadParseMime();

# Get file data
if ($in{'mode'} == 0) {
    $in{'upload'} || &error($text{'verify_eupload'});
    $data = $in{'upload'};
    }
elsif ($in{'mode'} == 1) {
    $in{'local'} || &error($text{'verify_eupload'});
    -r $in{'local'} || &error($text{'verify_elocal'});
    $data = &read_file_contents($in{'local'});
    }
elsif ($in{'mode'} == 3) {
    $data = $in{'text'};
    $data =~ s/\r//g;
    }

# Get signature data
if ($in{'sigmode'} == 0) {
    $in{'sigupload'} || &error($text{'verify_esigupload'});
    $sigdata = $in{'sigupload'};
    }
elsif ($in{'sigmode'} == 1) {
    $in{'siglocal'} || &error($text{'verify_esigupload'});
    -r $in{'siglocal'} || &error($text{'verify_esiglocal'});
    $sigdata = &read_file_contents($in{'siglocal'});
    }
elsif ($in{'mode'} == 3) {
    $sigdata = $in{'sigtext'};
    $sigdata =~ s/\r//g;
    }
else {
    $sigdata = undef;
    }

($code, $message) = &verify_data($data, $sigdata);

&ui_print_header(undef, $text{'verify_title'}, "");

$red = "<font color=#ff0000>";
$end = "</font>";
if ($code == 0 || $code == 1) {
    print &text('verify_good', &html_escape($message)),"<p>\n";
    if ($code == 1) {
        print "<b>$red$text{'verify_warning'}$end</b><p>\n";
        }
    }
elsif ($code == 2) {
    print "$red",&text('verify_bad', &html_escape($message)),"$end<p>\n";
    }
elsif ($code == 3) {
    print "$red",&text('verify_noid', &html_escape($message)),"$end<p>\n";
    }
else {
    print "$red",&text('verify_failed', "<pre>$message</pre>"),"$end<p>\n";
    }

&ui_print_footer("", $text{'index_return'});


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