shell bypass 403

UnknownSec Shell

: /home/.cpan/build/TimeDate-2.35-0/t/ [ drwxr-xr-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: 104.21.5.151
Your Ip: 216.73.217.141
User: espa7358 (1004) | Group: espa7358 (1003)
Safe Mode: OFF
Disable Function:
NONE

name : tz-lang.t
use Test::More tests => 10;
use Date::Language;

# Tests for language-specific timezone abbreviation translation (issue #1 / RT#52878)
# When using %Z format with a language object, timezone abbreviations should be
# translated to the language's local equivalents if the language defines a %TZ mapping.

my $german  = Date::Language->new('German');
my $english = Date::Language->new('English');

# Fixed timestamp: 2009-01-01 00:00:00 UTC (standard time, no DST)
my $t = 1230768000;

# English should return standard English abbreviations unchanged
is( $english->time2str('%Z', $t, 'CET'),  'CET',  'English: CET stays CET'  );
is( $english->time2str('%Z', $t, 'CEST'), 'CEST', 'English: CEST stays CEST' );
is( $english->time2str('%Z', $t, 'GMT'),  'GMT',  'English: GMT stays GMT'   );

# German should translate CET → MEZ and CEST → MESZ
is( $german->time2str('%Z', $t, 'CET'),  'MEZ',  'German: CET → MEZ'  );
is( $german->time2str('%Z', $t, 'CEST'), 'MESZ', 'German: CEST → MESZ' );

# German: timezones without a translation should pass through unchanged
is( $german->time2str('%Z', $t, 'GMT'),  'GMT',  'German: GMT passes through (no translation defined)' );
is( $german->time2str('%Z', $t, 'UTC'),  'UTC',  'German: UTC passes through (no translation defined)' );

# German: other European timezone translations
is( $german->time2str('%Z', $t, 'EET'),  'OEZ',  'German: EET → OEZ'  );
is( $german->time2str('%Z', $t, 'EEST'), 'OESZ', 'German: EEST → OESZ' );
is( $german->time2str('%Z', $t, 'WET'),  'WEZ',  'German: WET → WEZ'  );
© 2026 UnknownSec