While IDA is not a dynamic unpacker (use x64dbg or WinDbg), IDA Pro 7.5's debugger can attach to unpacked processes and dump memory. Use the → Take memory snapshot feature. Then analyze the dumped segment.
When you install IDA Pro 7.5, you are not just getting a disassembler. You are getting a complete reverse engineering framework. ida pro 7.5
def entropy(data): if not data: return 0 entropy = 0 for x in range(256): p_x = float(data.count(chr(x)))/len(data) if p_x > 0: entropy += - p_x * math.log(p_x, 2) return entropy While IDA is not a dynamic unpacker (use