Cybersecurity - Advanced Threat Protection
Consider this code snippet used in dynamic malware analysis:
What will be the output?
log = []
for action in ['open_file', 'modify_registry', 'send_data']:
log.append(f"Action: {action}")
print(log)What will be the output?
