shell bypass 403

GrazzMean Shell

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

name : fav.pl
#!/usr/bin/env perl

use strict;
use warnings;
use Data::Printer;

use MetaCPAN::Client;

# TOP 20 FAVORITE DISTRIBUTIONS

my $mcpan = MetaCPAN::Client->new();
my $favs  = $mcpan->all(
    'favorites',
    {
        facets => {
            distribution => {
                terms => {
                    field => "distribution",
                    size  => 20,
                    order => "count",
                }
            },
        }
    }
);

print "TOP 20 FAVORITE DISTRIBUTIONS:\n";

my $count = 1;
use DDP;
p $favs;
exit;
for my $fav ( $favs->[0]->next ) {
    p $fav;
}

for ( @{ $favs->facets->{distribution}{terms} } ) {
    printf "%3d) %5d  %-20s\n", $count++, @{$_}{qw/count term/};
}
© 2025 GrazzMean