shell bypass 403

GrazzMean Shell

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

name : wiki2html.pl
#!/usr/bin/perl

use strict;
use warnings;

sub format_link
{
	my $page = shift;
	my $text = @_ ? shift : $page;

	if ($page =~ m/^User:([A-Z][a-z]*)/) {
		return "<em>$text</em>";
	}

	return qq#<a href="/wiki/index.php/$page">$text</a>#;
}

while (<>)
{
	chomp;
	my $line = $_;

	if ($line =~ m/^\* (.+)/) {
		$line = $1;
	} else {
		next;
	}

	$line =~ s#{{Plugin\|([^}]+)}}#<a href="/wiki/index.php/Plugin:$1">$1 plugin</a>#g;
	$line =~ s@\{\{Issue\|([^}]+)\}\}@<a href="/bugs/$1">#$1</a>@g;
	$line =~ s#\[\[([^|]+)\|([^\]]+)\]\]#format_link($1, $2)#ge;
	$line =~ s#\[\[([^|]+)\]\]#format_link($1)#ge;

	$line =~ s#'''(.*?)'''#<strong>$1</strong>#g;
	$line =~ s#''(.*?)''#<em>$1</em>#g;

	print "$line<br />\n";
}
© 2025 GrazzMean