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 : Login.php
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Login extends CI_Controller { public function __construct() { parent::__construct(); $this->data = $this->gblm->Config(); $this->load->model('Login_model','lgm'); $this->load->library('form_validation'); $this->load->helper('cookie'); $this->load->library('user_agent'); } public function Index() { $data = $this->data; $data['PRSNT_BLK'] = BLK_LIST; $this->load->view($this->data['DR_VIEW'],$data); } public function fieldChecking() { $data = $this->data; $this->form_validation->set_rules('Uname',$this->lang->line('GL_U_NAME_MSG'),'required'); $this->form_validation->set_rules('Pwd',$this->lang->line('GL_PWD_MSG'),'required'); if ($this->form_validation->run() == FALSE) { $this->load->view($this->data['DR_VIEW'],$data); } else { $uv_USERNAME = RemoveSpace($this->input->post('Uname')); $uv_USERPASS = RemoveSpace($this->input->post('Pwd')); $dbStatus = $this->lgm->LoginCheck($uv_USERNAME, $uv_USERPASS); if($dbStatus == TRUE) { $remember = $this->input->post('remember_me'); if($remember)$this->session->set_userdata('remember_me', true); $sess_data = array('Uname' =>$uv_USERNAME,'Pwd' =>$uv_USERPASS); $this->session->set_userdata('logged_in', $sess_data); redirect(CL_DASH, $data); } if($dbStatus == FALSE) { $this->session->set_flashdata(STATUS_MSG,$this->lang->line('GL_INVALID_ACES')); redirect('/admin', $data); } } redirect('/admin', $data); } // super admin forget password public function SaForgetPassword() { $data = $this->data; $data['FrmAction'] = SA_PWD_RESET; $this->load->view($this->data['DR_PWD'],$data); } public function field_check($fldName) { if($this->fm->fldChkCon($this->data['LGN'],"EMAIL='".RemoveSpace($fldName)."'") == FALSE) { $this->form_validation->set_message('field_check', '{field} '.'---'.$this->lang->line('GL_INVALID_EMAIL')); return FALSE; } else { return TRUE; } } public function SaResetPassWord() { $data = $this->data; $this->form_validation->set_rules('email',$this->lang->line('GL_EMAIL_VAL_MSG'),'trim|required|valid_email|callback_field_check'); if ($this->form_validation->run() == FALSE) { $data['FrmAction'] = SA_PWD_RESET; $this->session->set_flashdata(STATUS_MSG,$this->lang->line('GL_INVALID_EMAIL')); $this->session->set_flashdata(STATUS_TYPE,'error'); $this->load->view(DR_HTML_SYSADM.'/forget-password',$data); return false; } else { $uv_email = RemoveSpace($this->input->post('email')); $dbStatus = $this->lgm->GenPwdChngCode($uv_email); if($dbStatus == TRUE) { $this->session->set_flashdata(STATUS_MSG,$this->lang->line('GL_PWD_REST_EMAIL')); $this->session->set_flashdata(STATUS_TYPE,'success'); redirect(SA_PWD_CHNG, $data); } if($dbStatus == FALSE) { $this->session->set_flashdata(STATUS_MSG,$this->lang->line('GL_WRONG_MSG')); $this->session->set_flashdata(STATUS_TYPE,'error'); redirect(SA_PWD_CHNG, $data); } } redirect('/', $data); } // login out from site public function Logout() { $data = $this->data; $this->fm->updateCon($this->data['LOG']['LGN'],array('LOGOUT' =>DB_IN_DT),"ID='".$this->session->userdata('dv_LOG_ID')."'"); $user_data = $this->session->all_userdata(); foreach ($user_data as $key => $value) { $this->session->unset_userdata($key); } $this->session->sess_destroy(); $this->session->set_flashdata(STATUS_MSG,$this->lang->line('GL_LOGGED_OUT')); redirect('/admin'); } }
Close