Developer knowledge network · moderated exchange

UnreliableCode 커뮤니티

개발자 연구, 리버스 엔지니어링 및 코딩 커뮤니티

Knowledge index살다
4Categories
919Threads
2.8K게시물
Tutorial

Finding AES / ChaCha20 encryption keys in memory via Shannon Entropy analysis

ghidra_pcode_pro
RE Specialist
MEMBER
대표: 63
가입 날짜: Nov 2021
게시물: 11
감사해요: 57
1개월 전 · Jul 14, 2026 11:06 PM
#1

When a game encrypts its network packets or asset files, the encryption keys in RAM have near-maximum Shannon entropy (Entropy > 7.95 out of 8.0):

PYTHON
import math
def shannon_entropy(data):
    if not data: return 0
    entropy = 0
    for x in range(256):
        p_x = float(data.count(bytes([x]))) / len(data)
        if p_x > 0:
            entropy += - p_x * math.log(p_x, 2)
    return entropy

Scanning memory pages with a 32-byte sliding window highlights 256-bit AES keys instantly!

kernel_komrade
Driver Dev
MEMBER
대표: 145
가입 날짜: Feb 2019
게시물: 26
감사해요: 45
1개월 전 · Jul 15, 2026 1:55 AM
#2

Shannon entropy scanning is how anti-malware tools detect packed sections and crypto keys. Super elegant technique.

null_deref
Reverse Engineer
MEMBER
대표: 79
가입 날짜: Jan 2019
게시물: 42
감사해요: 46
1개월 전 · Jul 15, 2026 4:14 PM
#3

Found the 32-byte packet decryption key in 2 minutes using this script.