Skip to content

Latest commit

History

History
52 lines (43 loc) · 2.77 KB

File metadata and controls

52 lines (43 loc) · 2.77 KB

AnalysisBasicInfoOutputBody

Properties

NameTypeDescriptionNotes
analysis_scopestrPUBLIC, PRIVATE, or TEAM
base_addressintBase address of the binary, null when unknown
binary_idintBinary ID
binary_namestrBinary filename
binary_sizeintBinary size in bytes
binary_uuidstrUUID of the binary, omitted when not set
creationdatetimeWhen the binary was uploaded
debugboolTrue when the binary was analysed with debug symbols
detected_architecturestrDetected instruction-set architecture; empty when unavailable
detected_binary_formatstrDetected binary container format; empty when unavailable
detected_binary_typestrDetected operating-system platform; empty when unavailable
function_countintNumber of functions in the binary
is_advancedboolTrue when the analysis was run in advanced mode
is_ownerboolTrue when the caller is the analysis owner
is_systemboolTrue when the analysis is owned by a system user
model_idintModel ID
model_namestrModel used for analysis
owner_usernamestrUsername of the analysis owner
sequencer_versionstrSequencer version, omitted when not set[optional]
sha_256_hashstrSHA-256 hash of the binary
supplied_architecturestrUser-supplied instruction-set architecture; "AUTO" when not overridden
supplied_binary_formatstrUser-supplied binary container format; "AUTO" when not overridden
supplied_binary_typestrUser-supplied operating-system platform; "AUTO" when not overridden
team_idintTeam ID of the analysis

Example

fromrevengai.models.analysis_basic_info_output_bodyimportAnalysisBasicInfoOutputBody# TODO update the JSON string belowjson="{}"# create an instance of AnalysisBasicInfoOutputBody from a JSON stringanalysis_basic_info_output_body_instance=AnalysisBasicInfoOutputBody.from_json(json)
# print the JSON string representation of the objectprint(AnalysisBasicInfoOutputBody.to_json())
# convert the object into a dictanalysis_basic_info_output_body_dict=analysis_basic_info_output_body_instance.to_dict()
# create an instance of AnalysisBasicInfoOutputBody from a dictanalysis_basic_info_output_body_from_dict=AnalysisBasicInfoOutputBody.from_dict(analysis_basic_info_output_body_dict)

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