NAME

STIX::Report - STIX Domain Object (SDO) - Report

SYNOPSIS

use STIX::Report;

my $report = STIX::Report->new();

DESCRIPTION

Reports are collections of threat intelligence focused on one or more topics, such as a description of a threat actor, malware, or attack technique, including context and related details.

METHODS

STIX::Report inherits all methods from STIX::Common::Properties and implements the following new ones.

STIX::Report->new(%properties)

Create a new instance of STIX::Report.

$report->description

A description that provides more details and context about Report.

$report->id
$report->name

The name used to identify the Report.

$report->object_refs

Specifies the STIX Objects that are referred to by this Report.

$report->published

The date that this report object was officially published by the creator of this report.

$report->report_types

This field is a REPORT_TYPE (STIX::Common::OpenVocabulary) that specifies the primary subject of this report. The suggested values for this field are in report-type-ov.

$report->type

The type of this object, which MUST be the literal report.

HELPERS

$report->TO_JSON

Encode the object in JSON.

$report->to_hash

Return the object HASH.

$report->to_string

Encode the object in JSON.

$report->validate

Validate the object using JSON Schema (see STIX::Schema).

SUPPORT

Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker at https://github.com/giterlizzi/perl-STIX/issues. You will be notified automatically of any progress on your issue.

Source Code

This is open source software. The code repository is available for public review and contribution under the terms of the license.

https://github.com/giterlizzi/perl-STIX

git clone https://github.com/giterlizzi/perl-STIX.git

AUTHOR

  • Giuseppe Di Terlizzi <gdt@cpan.org>

LICENSE AND COPYRIGHT

This software is copyright (c) 2024 by Giuseppe Di Terlizzi.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.