shell bypass 403

GrazzMean Shell

Uname: Linux web3.us.cloudlogin.co 5.10.226-xeon-hst #2 SMP Fri Sep 13 12:28:44 UTC 2024 x86_64
Software: Apache
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.210.96.117
Your Ip: 3.22.185.143
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : 021-parameter-trait.t
use strict;
use warnings;
use Test::More 0.88;

do {
    package MyTrait::Labeled;
    use Moose::Role;

    has label => (
        is  => 'ro',
        isa => 'Str',
    );
};

do {
    package P::Role;
    use MooseX::Role::Parameterized;

    parameter favorite => (
        traits => ['MyTrait::Labeled'],
        label  => 'FAVE',
        isa    => 'Str',
    );

    role {
        my $p = shift;

        method faves => sub { $p->meta->get_attribute('favorite')->label . ': ' . $p->favorite };
    }
};

do {
    package Class::P::d;
    use Moose;
    with 'P::Role' => { favorite => 'ether' };
};

do {
    package Other::Class::P::d;
    use Moose;
    with 'P::Role' => { favorite => 'karen' };
};

is(Class::P::d->faves, 'FAVE: ether');
is(Other::Class::P::d->faves, 'FAVE: karen');

done_testing;
© 2025 GrazzMean