shell bypass 403

GrazzMean Shell

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

name : README.md
WWW-Twilio-API version 0.20
===========================

WWW::Twilio::API is a flexible, extensible API for Twilio written in
Perl. It's primary objective is reliability and robustness for
Twilio's RESTful API. The module should survive any future updates to
the API without any changes whatsoever.

Make any Twilio API call in two lines of code:

    ## make a Twilio object
    my $twilio = new WWW::Twilio::API( AccountSid => '(your sid here)',
                                     AuthToken  => '(your auth token here)' );

    ## retrieve calls I've made
    $response = $twilio->GET('Calls');

    ## place a new call to 801-123-5555 from 403-123-1234
    $response = $twilio->POST('Calls',
                              From => '4031231234',
                              To   => '8011235555',
                              Url  => 'http://perlcode.org/cgi-bin/twilio');

    ## see account information
    $response = $twilio->GET('Accounts');

    ## see details for a specific call
    $response = $twilio->GET('Calls/CA42ed11f93dc08b952027ffbc406d0868');

    ## send an SMS message
    $response = $twilio->POST( 'SMS/Messages',
                               From => $from,
                               To   => $to,
                               Body => $body );

INSTALLATION

To install this module type the following:

    perl Makefile.PL
    make
    make test
    make install

DEPENDENCIES

This module requires these other modules and libraries:

    LWP::UserAgent
    Crypt::SSLeay
    URI::Escape

COPYRIGHT AND LICENCE

Copyright (C) 2009-2016 by Scott Wiersdorf

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.1 or,
at your option, any later version of Perl 5 you may have available.
© 2025 GrazzMean