Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
jjk /
[ HOME SHELL ]
Name
Size
Permission
Action
BingSiteAuth.xml
85
B
-rw-rw-r--
Modulobg.webp
85.94
KB
-rw-rw-r--
ads.txt
58
B
-rw-rw-r--
animemerch8.php
68.74
KB
-rw-rw-r--
datasource.php
3.09
KB
-rwxrwxrwx
dbhelper.php
29.57
KB
-rwxrwxrwx
dl_ads.php
125
B
-rw-rw-r--
favicon.ico
67.58
KB
-rw-rw-r--
footer.php
6.74
KB
-rw-rw-r--
head.php
434
B
-rw-rw-r--
header.php
9.43
KB
-rw-rw-r--
index.php
24.15
KB
-rwxrwxrwx
log.txt
790
B
-rwxrwxrwx
manga_og.jpg
218.56
KB
-rw-rw-r--
ml_rekomen.jpg
172
KB
-rw-rw-r--
moduloheader.jpg
153.82
KB
-rw-rw-r--
privacy-policy.php
16.26
KB
-rw-rw-r--
read-manga.php
44.41
KB
-rw-rw-r--
reading_1.php
22.97
KB
-rwxrwxrwx
robots.txt
71
B
-rw-rw-r--
script.php
1.42
KB
-rw-rw-r--
sitemap.xml
7.73
KB
-rw-rw-r--
style_css.php
97.62
KB
-rw-rw-r--
terms-of-service.php
12.37
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : datasource.php
<?php class DataSource { const SERVERNAME = "localhost"; const USERNAME = "mangauser"; const PASSWORD_BCRYPT = "abc123!Q!!Q!"; const DATABASE = "u317079482_mangaberri_1"; private $conn; function __construct() { $this->conn = $this->getConnection(); } function getConnection() { try { $conn = new PDO("mysql:host=" . self::SERVERNAME . ";port=4406;dbname=" . self::DATABASE, self::USERNAME, self::PASSWORD_BCRYPT); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); return $conn; } catch (PDOException $e) { $this->log($e); header("Location: error.php"); exit(); } } /* function select($query, $params = array()) { if (!empty($params)) { $stmt = $this->conn->prepare($query); $stmt->execute($params); } else { $stmt = $this->conn->query($query); } $result = $stmt->fetchAll(); return $result; } */ function select($query, $params = array()) { $this->conn = $this->getConnection(); try { // Determine if there are parameters to bind; if so, prepare the statement if (!empty($params)) { $stmt = $this->conn->prepare($query); $stmt->execute($params); } else { // Execute the query directly if no parameters are provided $stmt = $this->conn->query($query); } // Fetch all the results from the executed statement $result = $stmt->fetchAll(); // Return the fetched results return $result; } catch (PDOException $e) { // Handle any exceptions that might occur during the query execution; log the error message //echo 'Error: ' . $e->getMessage(); $this->log($e->getMessage()); return false; } finally { // Ensure that the connection is closed after the function completes execution $this->conn = null; } } /* function execute($query, $params = array()) { $stmt = $this->conn->prepare($query); return $stmt->execute($params); } */ function execute($query, $params = array()) { $this->conn = $this->getConnection(); // Prepare the statement $stmt = $this->conn->prepare($query); try { // Execute the statement with the provided parameters $result = $stmt->execute($params); } finally { // Close the statement $stmt->closeCursor(); // Close the connection $this->conn = null; } return $result; } function executeReturnID($query, $params = array()) { $stmt = $this->conn->prepare($query); $stmt->execute($params); $last_id = $this->conn->lastInsertId(); return $last_id; } public function log($message) { $myfile = fopen("./log.txt", "a") or die("Unable to open file!"); $txt = $message . "\n"; fwrite($myfile, $txt); fclose($myfile); } }
Close