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.87
User: espa7358 (1004) | Group: espa7358 (1003)
Safe Mode: OFF
Disable Function:
NONE

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

use Std;

{
  check_test(
    sub {
      cmp_deeply({key1 => "a", key2 => "b"}, {key1 => "a", key2 => "b"},
        "hash eq");
    },
    {
      name => "hash eq",
      actual_ok => 1,
      diag => "",
    }
  );
  check_test(
    sub {
      cmp_deeply({key1 => "a", key2 => "b"}, {key1 => "a", key2 => "c"},
        "hash not eq");
    },
    {
      name => "hash not eq",
      actual_ok => 0,
      diag => <<EOM,
Compared \$data->{"key2"}
   got : 'b'
expect : 'c'
EOM
    }
  );
  check_test(
    sub {
      cmp_deeply({key1 => "a"}, {key1 => "a", key2 => "c"},
        "hash got DNE");
    },
    {
      name => "hash got DNE",
      actual_ok => 0,
      diag => <<EOM,
Comparing hash keys of \$data
Missing: 'key2'
EOM
    }
  );
  check_test(
    sub {
      cmp_deeply({key1 => "a", key2 => "c"}, {key1 => "a"},
        "hash expected DNE");
    },
    {
      name => "hash expected DNE",
      actual_ok => 0,
      diag => <<EOM,
Comparing hash keys of \$data
Extra: 'key2'
EOM
    }
  );

  check_test(
    sub {
      cmp_deeply({key1 => "a", key2 => "c"}, superhashof({key1 => "a"}),
        "superhash ok");
    },
    {
      name => "superhash ok",
      actual_ok => 1,
      diag => "",
    }
  );

  check_test(
    sub {
      cmp_deeply({key1 => "a"}, subhashof({key1 => "a", key2 => "c"}),
        "subhash ok");
    },
    {
      name => "subhash ok",
      actual_ok => 1,
      diag => "",
    }
  );
}
© 2026 UnknownSec