Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

DieMatch

Properties

Name Type Description Notes
name str Canonical name of the matched signature/technology (e.g., 'UPX', 'GCC', 'MSVC').
type str Category assigned by DIE for the match (e.g., 'compiler', 'packer', 'file').
display str Human-readable description from DIE's 'string' field; suitable for UI/logs, not for parsing.
version str Extracted version string when available; may be empty/None if unknown.

Example

from revengai.models.die_match import DieMatch

# TODO update the JSON string below
json = "{}"
# create an instance of DieMatch from a JSON string
die_match_instance = DieMatch.from_json(json)
# print the JSON string representation of the object
print(DieMatch.to_json())

# convert the object into a dict
die_match_dict = die_match_instance.to_dict()
# create an instance of DieMatch from a dict
die_match_from_dict = DieMatch.from_dict(die_match_dict)

[Back to Model list] [Back to API list] [Back to README]