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

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

use strict;
use warnings;
use Test::Builder::Tester tests => 3;
use Test::More;

diag "\$Test::More::VERSION = $Test::More::VERSION";

BEGIN { use_ok( 'Test::Exception' ) };

sub works {return shift};
sub dies { die 'oops' };
my $die_line = __LINE__ - 1;

my $filename = sub { return (caller)[1] }->();

lives_and {is works(42), 42} 'lives_and, no_exception & success';

test_out('not ok 1 - lives_and, no_exception & failure');
test_fail(+3);
test_err("#          got: '42'");
test_err("#     expected: '24'");
lives_and {is works(42), 24}	'lives_and, no_exception & failure';
	 
test_out('not ok 2 - lives_and, exception');
test_fail(+2);
test_err("# died: oops at $filename line $die_line.");
lives_and {is dies(42), 42}		'lives_and, exception';

test_out('ok 3 - the test passed' );
lives_and { ok(1, 'the test passed') };

test_test('lives_and works');
© 2026 UnknownSec