Search for Data Refs of GetProcAddresss

Issue #4 resolved
Alexander Hanel repo owner created an issue

If IDA does not recognize that the binary as an executable it will not reference the xrefs as code. It will need to have an xref address by calling for DataRefs.

    def getDataRefs(self):
        for addr in DataRefsTo(LocByName("GetProcAddress")):
            self.getProcAddressRefs.append(addr)

Logic for verifying the address of GetProcAddress is a call and not a data reference will need to be added.

Comments (1)

  1. Log in to comment