/usr/share/flatnuke/themes/flatcry/structure.php is in flatnuke 2.7.2-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82  | <?
// security options
if (eregi("structure.php",$_SERVER['PHP_SELF'])) {
  die();
}
$req = $_SERVER["REQUEST_URI"];
if(strstr($req,"myforum="))
  die(_NONPUOI);
// starting web page
echo "<body>";
// check if you're in the forum sections
$mod = getparam("mod", PAR_GET, SAN_FLAT);
if(eregi("_Forum", $mod)) {
	$into_forum = TRUE;
} else {
	$into_forum = FALSE;
}
?>
<!-- THEME STRUCTURE START -->
<div id="tema" >
	<!-- TOP -->
	<div id="topmenu">
		<div id="topleft"><img alt="flat nuke" src="<?="themes/$theme/$logo"?>" border="0">
			<!-- MENU -->
			<div class="menu">
			<? create_menu_horiz(); ?>
			</div>
		</div>
		<div id="topright"></div>
	</div>
	<div id="bann"></div>
	<!-- BODY OF THE PAGE -->
	<div id="outer">
		<div id="inner">
		<!-- LEFT -->
		<div id="leftbody" >
			<?
			create_block_menu();
			create_blocks("sx");
			if($into_forum) {
				create_blocks("dx");
			}
			?>
		</div>
		<!-- CENTER --><?
			if($into_forum) {
				echo "<div id='centerbody_forum'>";
			} else {
				echo "<div id='centerbody'>";
			}
			getflopt();
        ?>
		</div>
		<!-- RIGHT --><?
		if(!$into_forum) {
			?><div id="rightbody"><?
			create_blocks("dx");
			?></div><?
			}
			?>
	<!-- CLEAR -->
	<div class="clr"></div>
	<div id="bann2">
	Freely inspired to <a href="http://www.mollio.org" title="Mollio" target="_blank">Mollio</a> template
	</div>
	<!-- FOOTER -->
	<div id="footer">
		<?
		CreateFooterSite();
		?>
	</div>
<!-- THEME STRUCTURE END -->
</div>
</div>
</div>
</body>
</html>
 |