OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
3-31-025chanakya
/
Xpress
/
assets
/
php
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/26/2025 04:20:38 AM
rwxr-xr-x
📄
12-03-25social_navbar.php
24.95 KB
03/26/2025 04:20:38 AM
rw-r--r--
📁
PHPMailer
-
03/26/2025 04:21:23 AM
rwxr-xr-x
📄
backup-navbar.php
27.21 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
backupnavbar.php
21.14 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
blockAccount.php
2.23 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
bnavbar.php
35.74 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
bottom_navbar.php
6.18 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
common.js
46.89 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
config.php
9.43 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
db_config.php
3.42 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
db_connect.php
305 bytes
03/26/2025 05:01:45 AM
rw-r--r--
📄
delete_account.php
3.5 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
edit_post.php
2.23 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
footer.php
1.28 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
function.php
19.88 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
go_backbar.php
4.01 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
handler.php
3.46 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
indexFooter.php
597 bytes
03/26/2025 04:20:38 AM
rw-r--r--
📄
mail.php
2.67 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
navbar.php
24.01 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
process_data.php
3.87 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
readert_validate.logged.php
481 bytes
03/26/2025 04:20:38 AM
rw-r--r--
📄
report_account.php
1.42 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
report_stream.php
2.08 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
savePost.php
2.38 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
sidebar.php
18.88 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
siginupProcess.php
5.24 KB
03/26/2025 04:20:38 AM
rw-r--r--
📁
simplepie
-
03/26/2025 04:22:22 AM
rwxr-xr-x
📄
social_navbar.php
24.83 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
stream_post_handler.php
3.68 KB
03/26/2025 04:20:38 AM
rw-r--r--
📄
validate.logged.php
1.01 KB
03/26/2025 04:20:38 AM
rw-r--r--
Editing: report_stream.php
Close
<? include 'validate.logged.php'; include 'db_config.php'; include 'mail.php'; header('Content-Type: application/json'); function report_account_mail($toName, $toEmail, $reason, $postId) { $reportPostLink = "https://knoblycream.com/post-details.php?id=" . $postId; $emailSubject = "Content Abuse Report"; $emailBody = " Dear $toName ,<br><br> You reported a post with following reason:$reason. <br><a href='" . $reportPostLink . "'>Reported post</a> <br> We will examine this and take necessary action.<br><br> Thank You<br> Knobly Cream "; sendEmail($toName, $toEmail, '', $emailSubject, $emailBody); } function report_stream($userId, $streamId, $reason) { global $readerdb; try { mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT); $stmt = $readerdb->prepare("INSERT INTO report_stream (userId, streamId, reason) VALUES (?, ?, ?)"); $stmt->bind_param("iis", $userId, $streamId, $reason); if ($stmt->execute()) { echo json_encode(['status' => 'success', 'message' => 'You Have Reported the Content..']); } else { throw new mysqli_sql_exception("Unknown :("); } } catch (mysqli_sql_exception $e) { echo json_encode(['status' => 'error', 'message' => 'Could not report the Content. Reason: ' . $e->getMessage()]); } finally { if ($stmt) { $stmt->close(); } } } if ($_SERVER['REQUEST_METHOD'] == 'POST') { // echo $_POST['streamId']."<br>".$_POST['reason']."<br>"; if (!isset($_POST['streamId']) || !isset($_POST['reason'])) { echo json_encode(['status' => 'error', 'message' => "Missing required inputs"]); exit; } else { report_account_mail($gUserName, $gUserEmail, $_POST['reason'], $_POST['streamId']); report_stream($gUserId, $_POST['streamId'], $_POST['reason']); } exit; } else { echo json_encode(['status' => 'error', 'message' => "Unknown Request"]); exit; }