Cybersecurity - Digital Forensics
Given the following Python snippet analyzing a disk image file:
What will be the output?
with open('disk.img', 'rb') as f:
data = f.read(512)
print(len(data))What will be the output?
