!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_tdfonline/proyectos/tdfonline/www/docs/openssl/util/   drwxr-xr-x
Free 14.53 GB of 61.93 GB (23.47%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     c-compress-test.pl (1.02 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#! /usr/bin/env perl
#
# TEST c-compress-pl with a number of examples and what should happen to them

use strict;
use warnings;

use File::Basename;

my @pairs =
    (
     [ <<'_____'
/* A hell of a program */
#def\
ine foo/* bar */ 3
#define bar /* haha "A /* comment */ that should    /* remain" */
#define  haha /* hoho */ "A /* comment */ that should /* remain" */

int main() {
    int x;
    /* one lonely comment */
}
_____
       , <<'_____'
#define foo 3
#define bar that should
#define haha "A /* comment */ that should /* remain" */
int main() {
int x;
}
_____
     ]
    );

my $here = dirname $0;
my $c_compress = "$here/lang-compress.pl";

use FileHandle;
use IPC::Open2;
use Text::Diff;
foreach (@pairs) {
    my $source = $_->[0];
    my $expected = $_->[1];
    my $pid = open2(\*Reader, \*Writer, "perl $c_compress 'C'");
    print Writer $source;
    close Writer;

    local $/ = undef;             # slurp
    my $got = <Reader>;

    if ($got ne $expected) {
        print "MISMATCH:\n", diff \$expected, \$got;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.8201 ]--