shell bypass 403

UnknownSec Shell

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: 104.21.5.151
Your Ip: 216.73.217.141
User: espa7358 (1004) | Group: espa7358 (1003)
Safe Mode: OFF
Disable Function:
NONE

name : test_warning_contents.t
use strict;
use warnings;

# this test demonstrates that warnings can be captured and tested, and other
# expected warnings can be whitelisted, to allow the had-no-warnings test not
# to fail

use Test::More tests => 2;
use Test::Warnings ':all';
use Test::Deep;

my @lines;
my @warnings = warnings {
    warn 'testing 1 2 3';   push @lines, __LINE__;
    warn 'another warning'; push @lines, __LINE__;
};

my $file = __FILE__;
cmp_deeply(
    \@warnings,
    [
        "testing 1 2 3 at $file line $lines[0].\n",
        "another warning at $file line $lines[1].\n",
    ],
    'successfully captured all warnings',
);

# make these warnings visible
allow_warnings;
warn $_ foreach @warnings;
allow_warnings(0);
© 2026 UnknownSec