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: 3.129.71.60
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : universal_methods.t
use strict;
use warnings;

use Test::More;
use Class::MOP;

my $meta_class = Class::MOP::Class->create_anon_class;

my %methods      = map { $_->name => 1 } $meta_class->get_all_methods();
my %method_names = map { $_       => 1 } $meta_class->get_all_method_names();

my @universal_methods = qw/isa can VERSION/;
push @universal_methods, 'DOES' if "$]" >= 5.010;

for my $method (@universal_methods) {
    ok(
        $meta_class->find_method_by_name($method),
        "find_method_by_name finds UNIVERSAL method $method"
    );
    ok(
        $meta_class->find_next_method_by_name($method),
        "find_next_method_by_name finds UNIVERSAL method $method"
    );
    ok(
        scalar $meta_class->find_all_methods_by_name($method),
        "find_all_methods_by_name finds UNIVERSAL method $method"
    );
    ok(
        $methods{$method},
        "get_all_methods includes $method from UNIVERSAL"
    );
    ok(
        $method_names{$method},
        "get_all_method_names includes $method from UNIVERSAL"
    );
}

done_testing;
© 2025 GrazzMean