Perl interface to Tenable.sc (SecurityCenter) REST API
View the Project on GitHub giterlizzi/perl-Net-SecurityCenter
App::TenableSC - Base class for Tenable.sc (SecurityCenter) applications
use App::TenableSC;
# Add additional command line options
@App::TenableSC::command_options = ( 'opt1=s', 'opt2=s', 'flag' );
App::TenableSC->run;
This module provides Perl scripts easy way to write Tenable.sc (SecurityCenter) application using Net::SecurityCenter.
Run the application.
use App::TenableSC::MyApp;
# Add additional command line options
@App::TenableSC::command_options = ( 'opt1=s', 'opt2=s', 'flag' );
App::TenableSC::MyApp->run;
Return config object
Connect to Tenable.sc instance with provided credentials and return Net::SecurityCenter object.
Return App::TenableSC::Logger object.
Return command line argument options.
Return Net::SecurityCenter object.
This is your main hook into the application, it will be called at application startup. Meant to be overloaded in a subclass.
sub startup {
my ($self) = @_;
my $sc = $self->connect;
$sc->plugin->download(id => $self->option->{'id'}, file => $self->option->{'file'});
exit 0;
}
hostname
: Tenable.sc host/IP addressusername
: Usernamepassword
: Passwordaccess_key
: Access Keysecret_key
: Secret Keyconfig
: Configuration filehelp
: Brief help messageman
: Full documentationversion
: Command versionverbose
: Full documentationPlease report any bugs or feature requests through the issue tracker at https://github.com/giterlizzi/perl-Net-SecurityCenter/issues. You will be notified automatically of any progress on your issue.
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-Net-SecurityCenter
git clone https://github.com/giterlizzi/perl-Net-SecurityCenter.git
This software is copyright (c) 2018-2021 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.