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 : NoticiaGaleria.php
<?

class NoticiaGaleria extends AppModel {

    public $useTable = 'noticias_galerias';
    public $belongsTo = array('Noticia');
    public $virtualFields = array('entidad_id' => 'noticia_id');
    public $imagen = false;
    public $validate = array(
        'entidad_id' => array(
            'required' => array(
                'rule' => 'notEmptyGaleria',
                'message' => 'Imagen o vídeo requerido'
            ),
        ),
        'imagen' => array(
            'ext' => array(
                'allowEmpty' => true,
                'rule' => array('checkExtension', array('jpg', 'jpeg', 'gif', 'png')),
                'message' => 'La imagen introducida no es correcta (jpg, jpeg, gif, png)',
            ),
        ),
        'video_source' => array(
            'required' => array(
                'allowEmpty' => true,
                'rule' => 'checkExistGaleria',
                'message' => 'Debes seleccionar una fuente de vídeo existente'
            )
        ),
    );

}
© 2026 GrazzMean