def __init__(self, enabled=True, imports=False, file_info=False):
"""Creates an instace of the image meta registry.
Arguments
---------
enabled: bool
determines if image meta information should be added to the registry
imports: bool
it instructs the PE module to parse the directory entry import structure
file_info: bool
determines if file information meta data should be extracted from the PE
"""
self.image_metas = {}
self.imports = imports
self.file_info = file_info
self.enabled = enabled
self.full_loaded = False
评论列表
文章目录