Changes

Jump to navigation Jump to search

Smart TV emulators

330 bytes added, 02:36, 28 June 2023
Decryption of .cmk files
===Decryption of .cmk files===
For Linux: for file in $(find . -name "*.cmk"); do openssl aes-128-cbc -d -K B1D5F122E75D757C79F48886D42F8E1A -in $file -nosalt -iv BFE932F9273DC2A0DFC93F0B8E7AC7C2 -out ${file%.cmk}; done
For Windows: decrypt_cmk.ps1
 
Get-ChildItem -Recurse -Filter "*.cmk" | ForEach-Object {
$inputFilePath = $_.FullName
$outputFilePath = $inputFilePath -replace '\.cmk$'
 
& openssl aes-128-cbc -d -K B1D5F122E75D757C79F48886D42F8E1A -in $inputFilePath -nosalt -iv BFE932F9273DC2A0DFC93F0B8E7AC7C2 -out $outputFilePath
}
 
Source, how to individually decrypt cmk files on Windows, and how to decrypt smk files can be found: https://forum.samygo.tv/viewtopic.php?t=4994
Anonymous user

Navigation menu