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

Method get_unresolved_iat

model/injectable.py:73–79  ·  view source on GitHub ↗

Returns a list of IAT entries not available in the PE file

(self)

Source from the content-addressed store, hash-verified

71 return self.iat_requests
72
73 def get_unresolved_iat(self):
74 """Returns a list of IAT entries not available in the PE file"""
75 functions = []
76 for iat in self.iat_requests:
77 if self.superpe.get_vaddr_of_iatentry(iat.name) == None:
78 functions.append(iat.name)
79 return functions
80
81
82 # Data Reuse

Callers 1

start_realFunction · 0.80

Calls 1

get_vaddr_of_iatentryMethod · 0.80

Tested by

no test coverage detected