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 | : 3.145.32.50
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 /
userrole /
[ HOME SHELL ]
Name
Size
Permission
Action
role_user.php
3.46
KB
-rw-r--r--
userrole.php
2.63
KB
-rw-r--r--
userrole_editor.php
1.62
KB
-rw-r--r--
userrole_list.php
4.79
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : userrole_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_userrole" > <input type="submit" class="btn btn-primary" value="Search"> </form> </div> </div> <div class="row"> <div class="col-md-8 col-md-offset-2"> <a style="text-decoration: none" href="userrole.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 align="center">ক্রম</th> <th>রোল</th> <th style="text-align: center">সংশোধন</th> </thead> <tbody> <?php if($_SESSION["search"]=="yes") { $val= $_SESSION["field_value"]; $whrstr = "%$val%"; } else { $whrstr = "%%"; } $rowsPerPage = 20; $pageNum = 1; if(isset($_REQUEST["page"])) { $pageNum = $_REQUEST["page"]; } $offset = ($pageNum - 1) * $rowsPerPage; // prepare and bind $stmt = $conn->prepare("SELECT u.id,u.rolename FROM userrole u WHERE rolename LIKE ? ORDER BY id ASC LIMIT ?, ?"); $stmt->bind_param("sii",$whrstr,$offset,$rowsPerPage); $stmt->execute(); //Result $result = $stmt->get_result(); $numrows=$result->num_rows; if($numrows==0) exit('No rows'); $slno=0; while($row = $result->fetch_assoc()) { $slno = $slno+1; $id = $row["id"]; $rolename = $row["rolename"]; ?> <tr> <td class="banglanumber" align="center"><?=$id ?></td> <td> <a href="role_user.php?id=<?=$id?>" target="_blank" > <?=$rolename ?></span></a> </td> <td align="center"> <a href="userrole.php?cmd=edit&id=<?=$id?>"> <span class="glyphicon glyphicon-pencil"></span></a> </td> </tr> <?php } ?> </tbody> <thead> <th> </th> <th> </th> <th> </th> </thead> </table> <div align="center"> <?php // prepare and bind $stmt = $conn->prepare("SELECT * FROM userrole WHERE rolename 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'); $slno=0; $maxPage = ceil($numrows/$rowsPerPage); $self = "userrole.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 .= " $page "; } else { $nav .= " <a href=\"$self&&page=$page\" class=\"nav\">$page</a> "; } } if ($pageNum > 1) { $page = $pageNum - 1; $prev = " <a href=\"$self&&page=$page\" class=\"nav\">[Prev]</a> "; $first = " <a href=\"$self&&page=1\" class=\"nav\">[First Page]</a> "; } else { $prev = " "; $first = " "; } if ($pageNum < $maxPage) { $page = $pageNum + 1; $next = " <a href=\"$self&&page=$page\" class=\"nav\">[Next]</a> "; $last = " <a href=\"$self&&page=$maxPage\" class=\"nav\">[Last Page]</a> "; } else { $next = " "; $last = " "; } if($numrows>1) { echo $first . $prev . $nav . $next . $last; } ?> </div> </div> </div> </div> <?php include("../homepage/footer.php"); ?>
Close