(reader, module)
| 4144 | |
| 4145 | |
| 4146 | def PrintModuleDetails(reader, module): |
| 4147 | print("%s" % GetModuleName(reader, module)) |
| 4148 | file_version = GetVersionString(module.version_info.dwFileVersionMS, |
| 4149 | module.version_info.dwFileVersionLS); |
| 4150 | product_version = GetVersionString(module.version_info.dwProductVersionMS, |
| 4151 | module.version_info.dwProductVersionLS) |
| 4152 | print(" base: %s" % reader.FormatIntPtr(module.base_of_image)) |
| 4153 | print(" end: %s" % reader.FormatIntPtr(module.base_of_image + |
| 4154 | module.size_of_image)) |
| 4155 | print(" file version: %s" % file_version) |
| 4156 | print(" product version: %s" % product_version) |
| 4157 | time_date_stamp = datetime.datetime.fromtimestamp(module.time_date_stamp) |
| 4158 | print(" timestamp: %s" % time_date_stamp) |
| 4159 | |
| 4160 | |
| 4161 | def AnalyzeMinidump(options, minidump_name): |
no test coverage detected