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

name : browseentry.pl
# BrowseEntry, entry with listbox to select list values.

use Tk::BrowseEntry;

my $month = "January";

outer:
{
    my $top = MainWindow->new;
    my $f = $top->Frame;
    my $c = $f->BrowseEntry(-label => "Month:", -variable => \$month);
    $c->pack;
    $c->insert("end", "January");
    $c->insert("end", "February");
    $c->insert("end", "March");
    $c->insert("end", "April");
    $c->insert("end", "May");
    $c->insert("end", "June");
    $c->insert("end", "July");
    $c->insert("end", "August");
    $c->insert("end", "September");
    $c->insert("end", "October");
    $c->insert("end", "November");
    $c->insert("end", "December");
    my $bf = $f->Frame;
    $bf->Button(-text => "Print value",
		-command => sub {
		    print "The month is $month\n";
		}, -relief => "raised")->pack;

    $bf->pack;
    $f->pack;
    MainLoop;
}
© 2025 GrazzMean