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.
| 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] |
fromrevengai.models.string_functionsimportStringFunctions# TODO update the JSON string belowjson="{}"# create an instance of StringFunctions from a JSON stringstring_functions_instance=StringFunctions.from_json(json)
# print the JSON string representation of the objectprint(StringFunctions.to_json())
# convert the object into a dictstring_functions_dict=string_functions_instance.to_dict()
# create an instance of StringFunctions from a dictstring_functions_from_dict=StringFunctions.from_dict(string_functions_dict)