shell bypass 403

GrazzMean Shell

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

name : README
Digest::CRC version 0.22
========================

NAME
    Digest::CRC - Generic CRC functions

DESCRIPTION
    The Digest::CRC module calculates CRC sums of all sorts.  It contains
    wrapper functions with the correct parameters for CRC-CCITT, CRC-16 and
    CRC-32.

SYNOPSIS
    # Functional style

    use Digest::CRC qw(crc32 crc16 crcccitt crc);
    $crc = crc32("123456789");
    $crc = crc16("123456789");
    $crc = crcccitt("123456789");

    $crc = crc($input,$width,$init,$xorout,$poly,$refin,$refout);

    # OO style
    use Digest::CRC;

    $ctx = Digest::CRC->new(type=>"crc16");
    $ctx = Digest::CRC->new(width=>16, init=>0x0000, xorout=>0x0000,
                            poly=>0x8005, refin=>1, refout=>1);
    $ctx->add($data);
    $ctx->addfile(*FILE);

    $digest = $ctx->digest;
    $digest = $ctx->hexdigest;
    $digest = $ctx->b64digest;

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

COPYRIGHT AND LICENCE
   CRC algorithm code taken from "A PAINLESS GUIDE TO CRC ERROR DETECTION
   ALGORITHMS".

   The author of this package disclaims all copyrights and releases it
   into the public domain.
© 2025 GrazzMean