Closed xusheng6 closed 1 year ago
In https://github.com/Vector35/view-pe/blob/d2503f60c704b5d20698894d06598c565c912c46/peview.cpp#L2472-L2486, the code parses the dll name and function name of a string like dll.func, but it subsequently discards the DLL name and no longer uses it. We should at least retain the DLL name
dll.func
In other words, the symbol's name now looks like __forwarder_name(GetFileVersionInfoExA), and I think it would be better to be __forwarder_name(vresion.GetFileVersionInfoExA)
__forwarder_name(GetFileVersionInfoExA)
__forwarder_name(vresion.GetFileVersionInfoExA)
Related to https://github.com/mandiant/capa/issues/1646
In https://github.com/Vector35/view-pe/blob/d2503f60c704b5d20698894d06598c565c912c46/peview.cpp#L2472-L2486, the code parses the dll name and function name of a string like
dll.func
, but it subsequently discards the DLL name and no longer uses it. We should at least retain the DLL nameIn other words, the symbol's name now looks like
__forwarder_name(GetFileVersionInfoExA)
, and I think it would be better to be__forwarder_name(vresion.GetFileVersionInfoExA)