shell bypass 403

UnknownSec Shell

: /home/.cpan/build/Test-Deep-1.205-0/t/ [ drwxr-xr-x ]
Uname: Linux dedi-15171674.espacofacial.com.br 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64
Software: Apache
PHP version: 8.2.33 [ PHP INFO ] PHP os: Linux
Server Ip: 172.67.154.186
Your Ip: 216.73.216.229
User: espa7358 (1004) | Group: espa7358 (1003)
Safe Mode: OFF
Disable Function:
NONE

name : hashkeys.t
use strict;
use warnings;
use lib 't/lib';

use Std;

{
  check_tests(
    sub {
      cmp_deeply({}, hashkeys(), "0");
      cmp_deeply({1 => 2, 3 => 4, 5 => 6}, hashkeys(1, 3, 5), "3");
    },
    [
      {
        name => "0",
        actual_ok => 1,
        diag => "",
      },
      {
        name => "3",
        actual_ok => 1,
        diag => "",
      }
    ],
    "keys ok"
  );
  check_tests(
    sub {
      cmp_deeply({a => 2, b => 4}, hashkeys("a", "c"));
    },
    [
      {
        actual_ok => 0,
        diag => <<EOM,
Comparing hash keys of \$data
Missing: 'c'
Extra: 'b'
EOM
      },
    ],
    "bad length"
  );
  check_tests(
    sub {
      cmp_deeply("a", hashkeys(1), "string");
      cmp_deeply([], hashkeys(1), "array");
    },
    [
      {
        name => "string",
        actual_ok => 0,
        diag => <<EOM,
Compared reftype(\$data)
   got : undef
expect : 'HASH'
EOM
      },
      {
        name => "array",
        actual_ok => 0,
        diag => <<EOM,
Compared reftype(\$data)
   got : 'ARRAY'
expect : 'HASH'
EOM
      },
    ],
    "not array"
  );
}
© 2026 UnknownSec