You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
format(dotnet) does not match at function/bb scope but matches at global scope. Additionally, capa metadata lists .NET file format as pe instead of dotnet.
Should we extract both pe and dotnet formats for .NET files? Otherwise, when analyzing .NET files we miss out on native capabilities bound by format(pe).
The text was updated successfully, but these errors were encountered:
While looking at #1258 I noticed that we may want to improve capa.features.extractors.common.extract_format() or at least discuss and document our decision.
I think extract_format() would ideally also detect dotnet and we could simplify the code a bit (including parts of #1256).
Right now the dotnet detection depends on capa.features.extractors.dnfile_.DnfileFeatureExtractor.is_dotnet_file() and then some manual format setting subsequently.
format(dotnet)
does not match at function/bb scope but matches at global scope. Additionally, capa metadata lists .NET file format aspe
instead ofdotnet
.Should we extract both
pe
anddotnet
formats for .NET files? Otherwise, when analyzing .NET files we miss out on native capabilities bound byformat(pe)
.The text was updated successfully, but these errors were encountered: