shell bypass 403

UnknownSec Shell

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.216.87
User: espa7358 (1004) | Group: espa7358 (1003)
Safe Mode: OFF
Disable Function:
NONE

name : numeric.t

#use diagnostics;
use NetAddr::IP::Lite;

$| = 1;

print "1..6\n";

my $test = 1;
sub ok() {
  print 'ok ',$test++,"\n";
}

my @tval = qw #	IP				bcd				 mask bcd
(	8000:0:0:0:0:0:0:1/112	170141183460469231731687303715884105729	340282366920938463463374607431768145920
		1.2.3.4/24		     16909060				4294967040
);

for (my $i=0;$i < @tval;$i+=3) {
  my $nip = NetAddr::IP::Lite->new($tval[$i]);
## test scalar return
  my $sclr = $nip->numeric;
  print "got: $sclr\nexp: $tval[$i+1]\nnot "
	unless $sclr .'x' eq $tval[$i+1] .'x';
  &ok;

## test array return
  my($addr,$mask) = $nip->numeric;
  print "got: $addr\nexp: $tval[$i+1]\nnot "
	unless $addr .'x' eq $tval[$i+1] .'x';
  &ok;

  print "got: $mask\nexp: $tval[$i+2]\nnot "
	unless $mask .'x' eq $tval[$i+2] .'x';
  &ok;
}
© 2026 UnknownSec