MCPcopy Create free account
hub / github.com/dobin/SuperMega / IatEntry

Class IatEntry

model/defs.py:54–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52
53
54class IatEntry():
55 def __init__(self, dll_name: str, func_name: str, iat_vaddr: int):
56 self.dll_name: str = dll_name
57 self.func_name: str = func_name
58 self.iat_vaddr: int = iat_vaddr
59
60 def __str__(self):
61 return "IatEntry: dll_name: {} func_name: {} iat_vaddr: 0x{:X}".format(
62 self.dll_name, self.func_name, self.iat_vaddr)

Callers 1

make_iat_entriesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected