shell bypass 403

GrazzMean Shell

: /usr/share/doc/perl-Moose/t/exceptions/ [ 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.218.67.239
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : class-mop-mixin-hasattributes.t
use strict;
use warnings;

use Test::More;
use Test::Fatal;

use Moose();

{
    my $xyz = bless [], "Bar";
    my $class;
    my $exception = exception {
        $class = Class::MOP::Class->create("Foo", (attributes => [$xyz]));
    };

    like(
        $exception,
        qr/\QYour attribute must be an instance of Class::MOP::Mixin::AttributeCore (or a subclass)/,
        "an Array ref blessed into Bar is given to create");

    isa_ok(
        $exception,
        "Moose::Exception::AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass",
        "an Array ref blessed into Bar is given to create");

    is(
        $exception->attribute,
        $xyz,
        "an Array ref blessed into Bar is given to create");
}

{
    my $class = Class::MOP::Class->create("Foo");
    my $exception = exception {
        $class->has_attribute;
    };

    like(
        $exception,
        qr/You must define an attribute name/,
        "attribute name is not given");

    isa_ok(
        $exception,
        "Moose::Exception::MustDefineAnAttributeName",
        "attribute name is not given");

    is(
        $exception->class_name,
        'Foo',
        "attribute name is not given");
}

{
    my $class = Class::MOP::Class->create("Foo");
    my $exception = exception {
        $class->get_attribute;
    };

    like(
        $exception,
        qr/You must define an attribute name/,
        "attribute name is not given");

    isa_ok(
        $exception,
        "Moose::Exception::MustDefineAnAttributeName",
        "attribute name is not given");

    is(
        $exception->class_name,
        "Foo",
        "attribute name is not given");
}

{
    my $class = Class::MOP::Class->create("Foo");
    my $exception = exception {
        $class->remove_attribute;
    };

    like(
        $exception,
        qr/You must define an attribute name/,
        "attribute name is not given");

    isa_ok(
        $exception,
        "Moose::Exception::MustDefineAnAttributeName",
        "attribute name is not given");

    is(
        $exception->class_name,
        "Foo",
        "attribute name is not given");
}

done_testing;
© 2025 GrazzMean