NAME
STIX::Observable::Extension::WindowsService - STIX Cyber-observable Object (SCO) - Windows Service Extension
SYNOPSIS
use STIX::Observable::Extension::WindowsService;
my $windows_service_ext = STIX::Observable::Extension::WindowsService->new();
DESCRIPTION
The Windows Service extension specifies a default extension for capturing properties specific to Windows services.
METHODS
STIX::Observable::Extension::WindowsService inherits all methods from STIX::Object and implements the following new ones.
- STIX::Observable::Extension::WindowsService->new(%properties)
-
Create a new instance of STIX::Observable::Extension::WindowsService.
- $windows_service_ext->service_name
-
Specifies the name of the service.
- $windows_service_ext->descriptions
-
Specifies the descriptions defined for the service.
- $windows_service_ext->display_name
-
Specifies the displayed name of the service in Windows GUI controls.
- $windows_service_ext->group_name
-
Specifies the name of the load ordering group of which the service is a member.
- $windows_service_ext->start_type
-
Specifies the start options defined for the service (see
WINDOWS_SERVICE_START_TYPE
in STIX::Common::Enum). - $windows_service_ext->service_dll_refs
-
Specifies the DLLs loaded by the service, as a reference to one or more STIX::Observable::File Objects.
- $windows_service_ext->service_type
-
Specifies the type of the service (see
WINDOWS_SERVICE_TYPE
in STIX::Common::Enum). - $windows_service_ext->service_status
-
Specifies the current status of the service (see
WINDOWS_SERVICE_STATUS
in STIX::Common::Enum).
HELPERS
- $windows_service_ext->TO_JSON
-
Helper for JSON encoders.
- $windows_service_ext->to_hash
-
Return the object HASH.
- $windows_service_ext->to_string
-
Encode the object in JSON.
- $windows_service_ext->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.