shell bypass 403
<style>
#selectorOrder {
background: #F5F5F5;
border-radius: 49px;
font-style: normal;
font-weight: 700;
font-size: 20px;
line-height: 30px;
color: #999999;
padding: 10px 20px;
height: 55px;
border:0px;
margin-right: 20px;
-webkit-appearance: none;
-moz-appearance: none;
background-image: url(/img/frontend/select-arrow-gray.png);
background-repeat: no-repeat;
background-position-x: right;
background-position-y: 22px;
}
</style>
<div class="container" id="pagination-superior-properties">
<h2 class="d-inline-block mt-5 mb-5"><?php echo count($numTotalInmuebles); ?> Inmuebles encontrados</h2>
<div class="pull-right contentSelectOrderList">
<div class="d-inline-block mt-5 text-right">
<select class="d-inline" id="selectorOrder" onchange="$('#InmuebleOrder').val($('#selectorOrder').val()); $('#InmuebleHomeForm').submit();">
<option value="">Ordenar por</option>
<option value="precio ASC" <?php if(!empty($this->params->query['order']) && $this->params->query['order'] == 'precio ASC') { echo 'selected';} ?>>Precio Ascendente</option>
<option value="precio DESC" <?php if(!empty($this->params->query['order']) && $this->params->query['order'] == 'precio DESC') { echo 'selected';} ?>>Precio Descendente</option>
<option value="superficie ASC" <?php if(!empty($this->params->query['order']) && $this->params->query['order'] == 'superficie ASC') { echo 'selected';} ?>>Superficie Ascendente</option>
<option value="superficie DESC" <?php if(!empty($this->params->query['order']) && $this->params->query['order'] == 'superficie DESC') { echo 'selected';} ?>>Superficie Descendente</option>
<option value="habitaciones ASC" <?php if(!empty($this->params->query['order']) && $this->params->query['order'] == 'habitaciones ASC') { echo 'selected';} ?>>Habitaciones Ascendente</option>
<option value="habitaciones DESC" <?php if(!empty($this->params->query['order']) && $this->params->query['order'] == 'habitaciones DESC') { echo 'selected';} ?>>Habitaciones Descendente</option>
</select>
<span onclick="$('#InmuebleVista').val('grid'); $('#InmuebleHomeForm').submit();"><img src="/img/frontend/icons/icon_grid.svg" class="svg <?php if($this->params->parametros == 'vista-grid' || $this->Session->read()['Vista']['vista'] == 'vista-grid') { echo "active"; } ?>" height="40" style="transform: scale(1.5); padding-top: 18px; cursor: pointer;"></span>
<span onclick="$('#InmuebleVista').val('mapa'); $('#InmuebleHomeForm').submit();"><img src="/img/frontend/icons/icon_map.svg" class="svg <?php if($this->params->parametros == 'vista-mapa' || $this->Session->read()['Vista']['vista'] == 'vista-mapa') { echo "active"; } ?>" height="40" style="transform: scale(1.5); padding-top: 18px; cursor: pointer;"></span>
<span onclick="$('#InmuebleVista').val('lista'); $('#InmuebleHomeForm').submit();"><img src="/img/frontend/icons/icon_list.svg" class="svg <?php if($this->params->parametros == 'vista-lista' || $this->Session->read()['Vista']['vista'] == 'vista-lista') { echo "active"; } if(empty($this->Session->read()['Vista']['vista'])) { echo 'active'; } ?>" height="40" style="transform: scale(1.5); padding-top: 18px; cursor: pointer;"></span>
</div>
</div>
</div>