Using the Goblin crate to parse binary files, PE files specifically. I'm trying to find how to access the OrginalFilename field you can see in Windows properties of a binary file. But can't figure out how to access this field.
I don't know much about the PE format, but based on what I found it doesn't look like goblin has any builtin support for this. It goesas far as getting the resource table (DataDirectories in goblin::pe::data_directories - Rust) but doesn't have anything to then parse this resource table to get the VERSIONINFO resource.