shell bypass 403
<section class="new-item">
<div class="container">
<div class="row" style="margin-top: 60px;">
<div class="col-md-9">
<article class="noticia-detalle">
<h2><?php echo $noticia['Noticia']['nombre']; ?></h2>
<p class="date"><?php echo $this->Time->format($noticia['Noticia']['fecha'], '%e de %B de %Y') ?></p>
<?php
if (!empty($noticia['NoticiaGaleria'])) {
echo $this->Html->image($this->App->getImagen($noticia['NoticiaGaleria'][0]['imagen'], 1903, 250), array('width' => 1903, 'height' => 250, 'alt' => $noticia['Noticia']['nombre'], 'class' => 'img-fluid', 'title' => $noticia['Noticia']['nombre']));
}
?>
<div class="migas-new">Inicio | Noticias | <?php echo substr($noticia['Noticia']['nombre'], 0, 28); ?> ...</div>
<div class="tags">
<ul>
<?php
foreach ($noticia['Etiqueta'] as $tag) {
?>
<li><?php echo $tag['nombre']; ?></li>
<?php
}
?>
<br clear="all" style="height: 0px;">
</ul>
</div>
<?php if (!empty($noticia['Noticia']['texto'])) { ?>
<div class="text-new"><?php echo $noticia['Noticia']['texto'] ?></div>
<?php } ?>
</article>
</div>
<div class="col-md-3 hidden-xs hidden-sm">
<?php echo $this->element('Frontend/Noticias/filtro') ?>
<div class="content-last-post">
<h2>Ăšltimos post publicados</h2>
<?php
foreach ($listado as $l) {
if($l['Noticia']['seo'] != $noticia['Noticia']['seo']) {
?>
<article>
<a href="<?php echo $l['Noticia']['seo']; ?>">
<div class="row">
<div class="col-lg-4">
<?php
if(!empty($l['NoticiaGaleria'][0]['imagen'])) {
echo $this->Html->image($this->App->getImagen($l['NoticiaGaleria'][0]['imagen'], 1903, 250), array('width' => 1903, 'height' => 250, 'alt' => $l['Noticia']['nombre'], 'class' => 'img-fluid', 'title' => $l['Noticia']['nombre']));
}else {
echo $this->Html->image($this->App->getImagen('/img/frontend/vacio.jpg', 1903, 250), array('width' => 1903, 'height' => 250, 'alt' => $l['Noticia']['nombre'], 'class' => 'img-fluid', 'title' => $l['Noticia']['nombre']));
}
?>
</div>
<div class="col-lg-8">
<div class="text"><?php echo substr($l['Noticia']['nombre'], 0, 50); ?>
</div>
</div>
</div>
</a>
</article>
<?php
}
}
?>
</div>
</div>
</div>
</div>
</section>