shell bypass 403

GrazzMean Shell

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

name : photo1.pl
# photo1.pl

use vars qw/$TOP/;

sub photo1 {

    my($demo) = @_;

    $TOP = $MW->WidgetDemo(
        -name             => $demo,
        -text             => 'This demonstration displays, for two seconds, a picture of a teapot over a green background, then proceeeds to render transparent a 50 x 50 pixel area of the teapot so that the green background shows through.',
        -title            => 'Transparent Pixels',
        -iconname         => 'photo1',
    );

    my $l = $TOP->Label( qw/ -background green -width 300 -height 300 / )->pack;

    my $f1 = $TOP->Photo( -file => Tk->findINC( 'demos/images/teapot.ppm' ) );
    $l->configure( -image => $f1 );
    $TOP->idletasks;
    $TOP->after(2000);

    foreach my $x ( 50 .. 100 ) {
	foreach my $y ( 50 .. 100 ) {
	    $f1->transparencySet( $x, $y, 1 );
	    $f1->update;
	}
    }

} # end photo1
© 2025 GrazzMean