shell bypass 403
GrazzMean Shell
: /homepages/2/d455661007/htdocs/_ProviderRestore/altamira21_WEB_VIEJA/requires/comunes/ [ drwx---r-x ]
<?
require_once $_SERVER['DOCUMENT_ROOT']."/requires/sources/clases/inmuebles.class.php";
if(!isset($buscador)){
$buscador = new Inmuebles();
}
$buscador->elementosPorPagina = 10;
$destacadas = $buscador->buscar(array()," ORDER BY i.destacado DESC, i.fecha_captacion DESC");
if($destacadas){
?>
<div class="wrapper" id="carousel-wrapper">
<div id="carousel" class="layout-960">
<ul>
<?
foreach($destacadas as $destacada){
$imagen = '<img src="/no-image/306/209/rtc/comunes/no-image.jpg" alt="'.$alt.'" />';
if($destacada['imagen']){
if(preg_match('/http/',$destacada['imagen'])){
$imagen = '<img src="'.$destacada['imagen'].'" alt="'.strip_tags($destacada['alt']).'" />';
$class = "";
}
else{
$imagen = '<img src="/image/306/209/rtc/inmuebles/'.$destacada['imagen'].'" alt="'.strip_tags($destacada['alt']).'" />';
}
}
// $alt = "{$destacada['tipologia']} en {$destacada['localidad']} y {$destacada['habitaciones']} por ".format_number($destacada['precio'],$idioma)." euros".($destacada['gestion'] == 'Alquiler' ? "/$tmiqMes":'');
echo "<li>
<a href=\"{$destacada['url']}\" title=\"".strip_tags($destacada['alt'])."\" />
$imagen
<span class=\"tipologia\">{$destacada['tipologiaFicha']}</span>
<span class=\"precio\"><span class=\"float\">{$destacada['habitaciones']} Habs - ".format_number($destacada['superficie'])."m<sup>2</sup></span><span class=\"float-right oswald\">".($destacada['precio'] > 0 ? format_number($destacada['precio'],$idioma)." €".($destacada['estado'] == 'alquiler' ? "/$tmiqMes":'') : "$tmiqConsultar $tmiqPrecio")."</span></span>
<span class=\"zoom\"></span>
</a>
</li>";
}
?>
</ul>
<a href="#" rel="nofollow" class="prev buttons"></a>
<a href="#" rel="nofollow" class="next buttons"></a>
</div>
</div>
<?}?>