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

Name Type Description Notes
analysis_scope str PUBLIC, PRIVATE, or TEAM
base_address int Base address of the binary, null when unknown
binary_id int Binary ID
binary_name str Binary filename
binary_size int Binary size in bytes
binary_uuid str UUID of the binary, omitted when not set
creation datetime When the binary was uploaded
debug bool True when the binary was analysed with debug symbols
detected_architecture str Detected instruction-set architecture; empty when unavailable
detected_binary_format str Detected binary container format; empty when unavailable
detected_binary_type str Detected operating-system platform; empty when unavailable
function_count int Number of functions in the binary
is_advanced bool True when the analysis was run in advanced mode
is_owner bool True when the caller is the analysis owner
is_system bool True when the analysis is owned by a system user
model_id int Model ID
model_name str Model used for analysis
owner_username str Username of the analysis owner
sequencer_version str Sequencer version, omitted when not set [optional]
sha_256_hash str SHA-256 hash of the binary
supplied_architecture str User-supplied instruction-set architecture; "AUTO" when not overridden
supplied_binary_format str User-supplied binary container format; "AUTO" when not overridden
supplied_binary_type str User-supplied operating-system platform; "AUTO" when not overridden
team_id int Team ID of the analysis

Example

from revengai.models.analysis_basic_info_output_body import AnalysisBasicInfoOutputBody

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

# convert the object into a dict
analysis_basic_info_output_body_dict = analysis_basic_info_output_body_instance.to_dict()
# create an instance of AnalysisBasicInfoOutputBody from a dict
analysis_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]