Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.38 KB

File metadata and controls

32 lines (23 loc) · 1.38 KB

StringFunctions

This is a string with the functions where the string is used. A function string is a string literal referenced within a function. When analyzing stripped or obfuscated binaries, function strings can help identify the function’s purpose.

Properties

Name Type Description Notes
value str The value of the string literal
functions List[AppApiRestV2FunctionsResponsesFunction] The function ids the string literal was found within
source StringSource The source of the string [optional]

Example

from revengai.models.string_functions import StringFunctions

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

# convert the object into a dict
string_functions_dict = string_functions_instance.to_dict()
# create an instance of StringFunctions from a dict
string_functions_from_dict = StringFunctions.from_dict(string_functions_dict)

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