NAME

STIX::Observable::WindowsRegistryKey - STIX Cyber-observable Object (SCO) - Windows Registry Key

SYNOPSIS

use STIX::Observable::WindowsRegistryKey;

my $windows_registry_key = STIX::Observable::WindowsRegistryKey->new();

DESCRIPTION

The Registry Key Object represents the properties of a Windows registry key.

METHODS

STIX::Observable::WindowsRegistryKey inherits all methods from STIX::Observable and implements the following new ones.

STIX::Observable::WindowsRegistryKey->new(%properties)

Create a new instance of STIX::Observable::WindowsRegistryKey.

$windows_registry_key->creator_user_ref

Specifies a reference to a user account, represented as a User Account Object, that created the registry key.

$windows_registry_key->id
$windows_registry_key->key

Specifies the full registry key including the hive.

$windows_registry_key->modified_time

Specifies the last date/time that the registry key was modified.

$windows_registry_key->number_of_subkeys

Specifies the number of subkeys contained under the registry key.

$windows_registry_key->type

The value of this property MUST be windows-registry-key.

$windows_registry_key->values

Specifies the values found under the registry key.

HELPERS

$windows_registry_key->TO_JSON

Encode the object in JSON.

$windows_registry_key->to_hash

Return the object HASH.

$windows_registry_key->to_string

Encode the object in JSON.

$windows_registry_key->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.