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 /
views /
admin /
common /
[ HOME SHELL ]
Name
Size
Permission
Action
common-list.php
1.44
KB
-rwxr-x--x
forget-password.php
6.07
KB
-rwxr-x--x
login.php
6.19
KB
-rwxr-x--x
page-header.php
524
B
-rwxr-x--x
profile-content.php
18.09
KB
-rwxr-x--x
profile.php
6.21
KB
-rwxr-x--x
sidebar-left.php
3.83
KB
-rwxr-x--x
sidebar-right.php
546
B
-rwxr-x--x
topbar.php
1.85
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : login.php
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> <!doctype html> <html class="fixed"> <head> <!-- Basic --> <meta charset="UTF-8"> <meta name="keywords" content="<?=$this->lang->line('SITE_KEYWORDS');?>" /> <meta name="description" content="<?=$this->lang->line('SITE_DESC');?>"> <meta name="author" content="<?=$this->lang->line('TECH_PARTNER');?>"> <title><?=$this->lang->line('SITE_TITLE');?></title> <!-- Mobile Metas --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <!-- Web Fonts --> <link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css"> <!-- Vendor CSS --> <link rel="stylesheet" href="<?=$this->config->item('vendor_url');?>bootstrap/css/bootstrap.css" /> <link rel="stylesheet" href="<?=$this->config->item('vendor_url');?>font-awesome/css/font-awesome.css" /> <!-- Theme CSS --> <link rel="stylesheet" href="<?=$this->config->item('css_url');?>theme.css" /> <!-- Skin CSS --> <link rel="stylesheet" href="<?=$this->config->item('css_url');?>skins/default.css" /> <!-- Theme Custom CSS --> <link rel="stylesheet" href="<?=$this->config->item('css_url');?>theme-custom.css"> </head> <body style=" background-color:#00132C;background-repeat: no-repeat;background-position: center; background-size:cover;"> <!-- start: page --> <section class="body-sign"> <div class="center-sign"> <a href="<?=base_url();?>" class="logo pull-left" style="margin-top:-60px !important;"> <img src="<?=$this->config->item('img_url');?>logo-dark.jpg" height="54" alt="Porto Admin" /> </a> <?php if($PRSNT_BLK ==BLK_LIST){ ?> <div class="panel panel-sign "> <div class="panel-body"> <h5 class="headRed"><?=validation_errors(); ?></h5> <?php if($this->session->flashdata(STATUS_MSG) != '') { echo '<h5 class="headRed">'.$this->session->flashdata(STATUS_MSG).'</h5>'; } ?> <form id="signupForm" class="form-horizontal" action="<?php echo site_url($PAGE_CL.'/'.MTH_CHECK); ?>" method="post"> <div class="form-group mb-lg"> <label><?=$this->lang->line('GL_U_NAME');?></label> <div class="input-group input-group-icon"> <input type="text" class="form-control input-lg" name="Uname" id="Uname" placeholder="<?=$this->lang->line('GL_U_NAME_MSG');?>" required/> <span class="input-group-addon"> <span class="icon icon-lg"> <i class="fa fa-user"></i> </span> </span> </div> </div> <div class="form-group mb-lg"> <div class="clearfix"> <label class="pull-left"><?=$this->lang->line('GL_PWD');?></label> </div> <div class="input-group input-group-icon"> <input type="password" class="form-control input-lg" maxlength="<?=PWD_MAX_LNGTH;?>" name="Pwd" id="Pwd" required/> <span class="input-group-addon"> <span class="icon icon-lg"> <i class="fa fa-lock"></i> </span> </span> </div> </div> <div class="row"> <div class="col-sm-8"> <div class="checkbox-custom checkbox-default"> <input id="remember_me" name="remember_me" value="Yes" type="checkbox"/> <label for="RememberMe"><?=$this->lang->line('GL_REMEM');?></label> </div> </div> <div class="col-sm-4 text-right"> <button type="submit" class="btn btn-primary hidden-xs"><?=$this->lang->line('BTN_SIGN_IN');?></button> <button type="submit" class="btn btn-primary btn-block btn-lg visible-xs mt-lg"><?=$this->lang->line('BTN_SIGN_IN');?></button> </div> </div> </form> </div> <?php /*?><ul class="nav nav-tabs nav-justified"> <li><a href="<?=site_url(SA_PWD_CHNG);?>" class="text-center"><i class="fa fa-eye-slash"> </i><?=$this->lang->line('GL_FRG_PWD');?></a></li> <li class="active"><a data-toggle="tab" class="text-center"><i class="fa fa-sign-in"> </i><?=$this->lang->line('GL_LOG_IN');?></a></li> </ul><?php */?> </div> <?php } ?> <p class="text-center text-muted mt-md mb-md"> <?=$this->lang->line('FOOTER_TAG_LINE');?><br><?=$this->lang->line('FOOTER_TECH_PARTNER');?> <a href="<?=$this->lang->line('TECH_PARTNER_URL');?>" target="_blank"><?=$this->lang->line('TECH_PARTNER');?></a> </p> </div> </section> <!-- end: page --> <!-- Vendor --> <script src="<?=$this->config->item('vendor_url');?>jquery/jquery.js"></script> <script src="<?=$this->config->item('vendor_url');?>jquery-browser-mobile/jquery.browser.mobile.js"></script> <script src="<?=$this->config->item('vendor_url');?>bootstrap/js/bootstrap.js"></script> <script src="<?=$this->config->item('vendor_url');?>jquery-validation/jquery.validate.js"></script> <script> $().ready(function() { // validate signup form on keyup and submit $("#signupForm").validate({ rules: { Uname: { required: true, minlength: <?=NAME_MIN_LNGTH;?> }, Pwd: { required: true, minlength: <?=PWD_MIN_LNGTH;?>, maxlength: <?=PWD_MAX_LNGTH;?> } }, messages: { Uname: { required: "<?=$this->lang->line('GL_U_NAME_MSG');?>", minlength: "<?=$this->lang->line('GL_U_NAME_MIN_MSG');?>" }, Pwd: { required: "<?=$this->lang->line('GL_PWD_MSG');?>", minlength: "<?=$this->lang->line('GL_PWD_MIN_MSG');?>", maxlength: "<?=$this->lang->line('GL_PWD_MAX_MSG');?>" } } }); }); </script> </body> </html>
Close