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 /
mangaberri /
public_html /
search /
[ HOME SHELL ]
Name
Size
Permission
Action
.search.php
3.61
KB
-rw-r--r--
index.php
2.01
KB
-rwxrwxrwx
md.php
3.89
KB
-rwxrwxrwx
md_chapter.php
5.21
KB
-rwxrwxrwx
md_chapter_images.php
1.43
KB
-rwxrwxrwx
pwnkit
0
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : md.php
<?php function searchAllManga($title) { $allManga = []; $offset = 0; $limit = 100; // Max limit per request $baseUrl = "https://api.mangadex.org/manga"; do { // Construct API URL with pagination $url = $baseUrl . "?title=" . urlencode($title) . "&limit=$limit&offset=$offset"; // Initialize cURL $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'GET', CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => false, CURLOPT_HTTPHEADER => array( "Content-Type: application/json", "User-Agent: MyMangaApp/1.0 (contact@email.com)" // Replace with real info ), )); // Execute request $response = curl_exec($curl); curl_close($curl); // Decode JSON response $data = json_decode($response, true); // Append results to the main array if (!empty($data['data'])) { $allManga = array_merge($allManga, $data['data']); $offset += $limit; // Move to next batch } else { break; // No more results } } while (!empty($data['data'])); // Continue if results exist return $allManga; } function getMangaCover($mangaId) { $coverUrl = "https://api.mangadex.org/cover?manga[]=$mangaId"; $ch = curl_init($coverUrl); curl_setopt_array($ch, array( CURLOPT_URL => $coverUrl, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'GET', CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST => false, CURLOPT_HTTPHEADER => array( "Content-Type: application/json", "User-Agent: MyMangaApp/1.0 (contact@email.com)" // Replace with real info ), )); $response = curl_exec($ch); curl_close($ch); $coverData = json_decode($response, true); if (empty($coverData['data'])) { return "No cover found."; } // Get Cover Filename $coverFileName = $coverData['data'][0]['attributes']['fileName']; // Step 3: Construct the Cover Image URL $coverImageUrl = "https://uploads.mangadex.org/covers/$mangaId/$coverFileName"; return $coverImageUrl; } $mangaList = searchAllManga($_GET['title']); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Search</title> </head> <body> <h2>SEARCH : <?= $_GET['title'] ?></h2> <?php if (!empty($mangaList)) { foreach ($mangaList as $manga) { $mangaId = $manga['id']; $title = $manga['attributes']['title']['en'] ?? "Unknown Title"; //$coverUrl = getMangaCover($mangaId); //echo "<div><img src='$coverUrl'></div>"; //echo "<a href='$coverUrl'>$coverUrl</a>"; //echo "<div><img src='". $coverUrl . "' alt='Gallery Image'><strong>$title</strong> (ID: <a href=\"md_chapter.php?manga_id=$mangaId\"> $mangaId </a>)</div>"; echo "<li><strong>$title</strong> (ID: <a href=\"md_chapter.php?manga_id=$mangaId\"> $mangaId </a>)</li>"; } echo "</ul>"; } else { echo "No manga found!"; } ?> </body> </html>
Close