Skip to content

Instantly share code, notes, and snippets.

@idawnlight
Created July 25, 2020 06:03
Show Gist options
  • Select an option

  • Save idawnlight/9a20a28101fc64130c7898e809e4fd83 to your computer and use it in GitHub Desktop.

Select an option

Save idawnlight/9a20a28101fc64130c7898e809e4fd83 to your computer and use it in GitHub Desktop.
decrypt 163key
<?php
function decrypt($ciphertext) {
$cipher = "AES-128-ECB";
$key = "#14ljk_!\]&0U<'(";
$c = base64_decode($ciphertext);
$ivlen = openssl_cipher_iv_length($cipher);
$iv = substr($c, 0, $ivlen);
$ciphertext_raw = substr($c, $ivlen);
return openssl_decrypt($ciphertext_raw, $cipher, $key, OPENSSL_RAW_DATA, $iv);
}
var_dump(decrypt("L64FU3W4YxX3ZFTmbZ+8/aGhXcaa+ADdRZ8aLYLqcJ8X3nFerjLZ29+ygThEbpG/F4GHqAsQHEGHljC2/efxVWo0zNAEz/PMWVbtwETsuqXbg41XG8sF07AOn0ugNi9VtJLJVtAKt3oW2aQ+o669ZZvMkTOFol0DC3ueA8AlJONl/IbM4d7dS0TWNN+a7ryvl4nCQn+Bb/T58+oZySOHFttnUgAC2hqX42/Ysip9H1/j4dZAUSBrFtl7JiWFjY1NM7rWr66WhSgUMpWLJ6O5nLpLodts53V/VQNN79fk4z4iuzkNAggR7dZYTsSed1qDvrRfI1fWu4+9uwuHNl2uuDbvxXZGeItKLe3+h6qOjIKiu8MqFpIMhu0ibvLZO9oZrNO4ha3wsMpJJaM1s1DhOns42AHMinYUsmtxrWphq8yOvetIBmtC83Vpf1ITbxMjkq7M49vsVRbQJkAbLe2Za972XP3fK2ZnpudRfD9EvAwlMJsNhOjvEEdxfv02YIOu"));
// 163 key(Don't modify):L64FU3W4YxX3ZFTmbZ+8/aGhXcaa+ADdRZ8aLYLqcJ8X3nFerjLZ29+ygThEbpG/F4GHqAsQHEGHljC2/efxVWo0zNAEz/PMWVbtwETsuqXbg41XG8sF07AOn0ugNi9VtJLJVtAKt3oW2aQ+o669ZZvMkTOFol0DC3ueA8AlJONl/IbM4d7dS0TWNN+a7ryvl4nCQn+Bb/T58+oZySOHFttnUgAC2hqX42/Ysip9H1/j4dZAUSBrFtl7JiWFjY1NM7rWr66WhSgUMpWLJ6O5nLpLodts53V/VQNN79fk4z4iuzkNAggR7dZYTsSed1qDvrRfI1fWu4+9uwuHNl2uuDbvxXZGeItKLe3+h6qOjIKiu8MqFpIMhu0ibvLZO9oZrNO4ha3wsMpJJaM1s1DhOns42AHMinYUsmtxrWphq8yOvetIBmtC83Vpf1ITbxMjkq7M49vsVRbQJkAbLe2Za972XP3fK2ZnpudRfD9EvAwlMJsNhOjvEEdxfv02YIOu
// music:{"musicId":429460241,"musicName":"世末歌者(inst.)","artist":[["COP",12002071]],"albumId":34871118,"album":"世末歌者-COSMOSⅡ","albumPicDocId":"17790098137764958","albumPic":"http://p4.music.126.net/sZGaAxUHHhuhQ1Zxa2jw4g==/17790098137764958.jpg","bitrate":320000,"mp3DocId":"4c9d683b310b831fc6a34182d04b1e74","duration":321802,"mvId":0,"alias":[],"transNames":[]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment