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
Add a method that determines the executable format of a given file. It should do this by opening the file, reading a few bytes, and determining the file format based on the magic bytes (ex: every ELF file starts with 7f 45 4c 46 or \x7fELF). This method will then be used to determine which file format parsing library to use in order to extract the .text section.
The text was updated successfully, but these errors were encountered:
Add a method that determines the executable format of a given file. It should do this by opening the file, reading a few bytes, and determining the file format based on the magic bytes (ex: every ELF file starts with
7f 45 4c 46
or\x7fELF
). This method will then be used to determine which file format parsing library to use in order to extract the.text
section.The text was updated successfully, but these errors were encountered: