nessus_agent
Table of Contents
- Description
- Bolt Quickstart
- Gotchas/Limitations
- Tasks
- Plans
- Contributions - Guide for contributing to the module
Description
The nessus_agent
module allows you to install, link nessus agents as well as perform other nessus agent tasks such as generating bug reports across linux and windows targets.
Bolt Quickstart
If you're a bolt aficionado, you can skip this section.
If you've never used bolt before, the easiest way to get started is with a bolt project. Bolt projects allow you to keep/organise your bolt automation in a single space. I've created a skeleton of a bolt project here: https://github.com/kinners00/bolt_sandbox.
- Download Bolt here and install
- Download/clone repo above
- Populate your own target inventory information in the
inventory.yaml
file (make sure and remove what you don't need and delete #s) - Navigate to the
bolt_sandbox
directory in your shell - Install this module in your project by running
bolt module add kinners00-nessus_agent
- Run
bolt task show
andbolt plan show
to find out what tasks and plans are available within this module - Running
bolt <automation_type> show <myautomationitem>
will give you more detailed info on how to use a given task or plan including required and optional parameters. Try it out by runningbolt task show nessus_agent::link
within thebolt_sandbox
directory/project.
As projects are self contained, this command will only work when your current working directory is the bolt_sandbox
directory (if cloned) or bolt_sandbox-master
(if downloaded).
Cloned:
~/code/bolt_sandbox > bolt task show nessus_agent::link
Downloaded:
~/code/bolt_sandbox-master > bolt task show nessus_agent::link
Ps. There's some learning/sample tasks and a plan included in the bolt_sandbox
that'll help you get started with building your own tasks and plans. You can start by creating tasks and plans in their relevant directories within the bolt_sandbox
!
Gotchas
Bolt tasks are copied and executed under /tmp
If you can't execute scripts under that directory, you can pass --tmpdir
flag on your bolt command followed by your chosen directory for example --tmpdir /var/tmp
Escalating privilege - Linux only
Depending on your targets user level permissions, you may have to pass --run-as=root
and --sudo-password='mysudopassword'
or --sudo-password-prompt
flags on your bolt command. You can also add run-as: root
and sudo-password: 'mysudopassword'
to your config in your inventory.yaml
file to enable you to keep your bolt command shorter/neater.
Example
Bolt Command
bolt task run nessus_agent::install -t rhel installer_path="/tmp/NessusAgent-8.2.2-es7.x86_64.rpm" --user=rheluser --password='myregularpassword' --run-as=root --sudo-password='mysudopassword'
inventory.yaml
groups:
- name: rhel
targets:
- 192.168.1.234
config:
transport: ssh
ssh:
user: rheluser
password: 'myregularpassword'
run-as: root
sudo-password: 'mysudopassword'
Usage
Tasks
Tasks are cross platform so you only need to specify your targets and the task will work out what needs to be done per supported OS across *nix & windows. Whilst they are cross platform tasks, you can only run the nessus_agent::link
, nessus_agent::unlink
& nessus_agent::generatelogs
tasks on a mix of targets comprising of disparate oses at the same time.
install
**Windows**
bolt task run nessus_agent::install -t
**Linux**
RPM & DEB are both supported
bolt task run nessus_agent::install -t
## link
```nessus_agent::link```
If you're using tenable.io then at the very minimum, you'll only need to pass your linking key and your Nessus agents will pair with your tenable instance however they're a bunch of optional parameters you can take advantage of such agent name, groups, offline install and more.
**Pair with Tenable.io**
bolt task run nessus_agent::link -t
**Pair with Nessus Manager**
Due to issues with use of the ```$host``` variable on windows, I've named equivalent bolt parameter ```server```, which directly translates to ```--host``` flag.
bolt task run nessus_agent::link -t
**Groups**
bolt task run nessus_agent::link -t
**Multiple Groups**
bolt task run nessus_agent::link -t
**Name**
bolt task run nessus_agent::link -t
**Offline Install**
bolt task run nessus_agent::link -t
**Proxy host & Port**
There are also additional flags around proxy usage with Tenable such as pass ```proxy_username```, ```proxy_password``` and ```proxy_agent```.
bolt task run nessus_agent::link -t
## unlink
```nessus_agent::unlink```
bolt task run nessus_agent::unlink -t
## generatelogs
```nessus_agent::generatelogs```
bolt task run nessus_agent::generatelogs -t
**Full log report**
bolt task run nessus_agent::generatelogs -t
**Scrub**
The scrub functionality will sanitise the first two octets of IPV4 addresses.
bolt task run nessus_agent::generatelogs -t
## Plans
## install_link
```nessus_agent::install_link```
All of the parameters found in ```nessus_agent::install``` and ```nessus_agent::link``` tasks are supported in this "complete workflow" plan. This plan will allow you to specify a Nessus agent install package locally on your bolt workstation for upload to your remote targets. Once uploaded, it will then install the Nessus agent using the package provided and link the Tenable agent to tenable.io or Nessus Manager, depending on the flags passed.
bolt plan run nessus_agent::install_link -t
**Skipping upload step**
You can set ```upload=false``` to skip the upload step and only **install** and **link** agents if you've already uploaded the Nessus agent installer to the target node(s) via alternate methods.
bolt plan run nessus_agent::install_link -t
## generatelogs(plan)
```nessus_agent::generatelogs```
When a Nessus agent log tarball is generated on linux, it has root ownership as default. This means that bolt can't download logs directly using SCP. To get around this, the ```nessus_agent::generatelogs``` plan changes the ownership of these logs to a user you specify via the ```user``` parameter which enables bolt to download them to your workstation. Once logs are downloaded, they are deleted from the target node.
**Linux**
bolt plan run nessus_agent::generatelogs -t rhel file_destination="tenablelogs" user=myuser level=full scrub=true
**Windows**
bolt plan run nessus_agent::generatelogs -t windows file_destination="tenablelogs" level=full scrub=true
# Contributions
If anyone would like to contribute to the module, that would be awesome and very much welcomed.
Repo: https://github.com/kinners00/nessus_agent
If you're experiencing any bugs, please raise an issue below.
Issues link: https://github.com/kinners00/nessus_agent/issues