shell bypass 403

GrazzMean Shell

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

name : Attribute.pm
package Class::DBI::Attribute;

=head1 NAME

Class::DBI::Attribute - A value in a column.

=head1 SYNOPSIS

	my $column = Class::DBI::Attribute->new($column => $value);

=head1 DESCRIPTION

This stores the row-value of a certain column in an object.
You probably shouldn't be dealing with this directly, and its interface
is liable to change without notice.

=head1 METHODS

=cut

use strict;
use base 'Class::Accessor::Fast';

__PACKAGE__->mk_accessors(qw/column current_value known/);

use overload
	'""' => sub { shift->current_value },
	fallback => 1;

sub new {
	my ($class, $col, $val) = @_;
	$class->SUPER::new({ 
		column => $col, current_value => $val, known => 1,
	});
}

1;
© 2025 GrazzMean