NAME

SSVC::CoordinatorPublication - SSVC Coordinator Publication decision

SYNOPSIS

use SSVC::CoordinatorPublication;

$ssvc = SSVC::CoordinatorPublication->new(
  supplier_involvement => 'fix_ready',
  exploitation         => 'active',
  public_value_added   => 'ampliative',
);

# Get the decision
say $ssvc->publish; # publish

# Convert SSVC in JSON in according of SSVC JSON Schema
$json = encode_json($ssvc);

DESCRIPTION

The Coordinator Publication decision helps a coordinator decide whether to publish information about a vulnerability.

https://certcc.github.io/SSVC/

Coordinator Publication

OBJECT-ORIENTED INTERFACE

$ssvc = SSVC::CoordinatorPublication->new(%params)

Creates a new SSVC::CoordinatorPublication instance using the provided decision points.

Parameters / Decision Points:

  • supplier_involvement (required)

  • exploitation (required)

  • public_value_added (required)

$ssvc->publish

The coordinator publication decision: publish or dont_publish.

$ssvc->TO_JSON

Helper method for JSON modules (JSON, JSON::PP, JSON::XS, Mojo::JSON, etc).

DECISION POINTS

$ssvc->supplier_involvement

What is the state of the supplier's work on addressing the vulnerability?

$ssvc->exploitation

The present state of exploitation of the vulnerability.

$ssvc->public_value_added

How much value would a publication from the coordinator benefit the broader community?

SEE ALSO

SSVC, SSVC::Base

[Carnegie Mellon University] SSVC: Stakeholder-Specific Vulnerability Categorization (https://certcc.github.io/SSVC/)

SUPPORT

Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker at https://github.com/giterlizzi/perl-SSVC/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-SSVC

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

AUTHOR

  • Giuseppe Di Terlizzi <gdt@cpan.org>

LICENSE AND COPYRIGHT

This software is copyright (c) 2025-2026 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.