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

NameTypeDescriptionNotes
valuestrThe value of the string literal
functionsList[AppApiRestV2FunctionsResponsesFunction]The function ids the string literal was found within
sourceStringSourceThe source of the string[optional]

Example

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)

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