One Hat Cyber Team
Your IP :
216.73.216.240
Server IP :
162.240.106.28
Server :
Linux server.ganesand.com 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64
Server Software :
Apache
PHP Version :
7.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
thoa
/
public_html
/
admin
/
support
/
includes
/
View File Name :
user_info.php
<?php include "base.php"; if($_GET['info'] != "open") { $query = mysql_query("SELECT * FROM sessions where convoID = '".$_GET['info']."' "); $result = mysql_fetch_array($query); $ts = $result['initiated']; $ts = strftime("%X %P",$ts); ?> <style> table { font-family: arial, sans-serif; border-collapse: collapse; width: 100%; } tr, th { border: 1px solid #dddddd; text-align: left; padding: 8px; } </style> <table> <tr> <th><h4><img src="images/user.png" alt="Name" title="Name"/> Name </h4></th> <th><h4><img src="images/furthercontact.png" alt="Wants to be contacted?" title="Wants to be contacted?" /> Wants to be contacted?</h4></th> <th><h4><img src="images/emailaddress.png" alt="Email address" title="Email address" /> Email address</h4></th> <th><h4><img src="images/icons/crossb.png" width="18" alt="Terminate Conversation" title="Terminate Conversation" /> Terminate</h4></th> </tr><tr> <td> <?php echo $result['name'];?></td> <td> <?php echo $result['contact'];?></td> <td> <?php echo $result['email'];?></td> <td> <a href="includes/delConvo.php?id=<?php echo $result['convoID'];?>" class="delete_convo">Click to end</a></td> </tr> </table> <?php } else { echo '<h3>No conversation selected</h3>'; } ?>