项目作者: Automatron-Plugins

项目描述 :
nmap based autodiscovery plugin for Automatron
高级语言: Python
项目地址: git://github.com/Automatron-Plugins/nmap-autodiscovery.git
创建时间: 2017-04-18T21:11:52Z
项目社区:https://github.com/Automatron-Plugins/nmap-autodiscovery

开源协议:Apache License 2.0

下载


nmap Autodiscovery for Automatron

This is a simple nmap based Autodiscovery plugin for Automatron

Install instructions

Place nmap directory to the Automatron plugins/discovery/ directory.

  1. $ cp -R nmap /path/to/plugins/discovery/

Install Python dependencies with pip.

  1. $ pip install -r requirements.txt

Add configuration to Automatron config/config.yml file.

  1. discovery:
  2. plugins:
  3. nmap:
  4. target: 10.0.0.1/8
  5. flags: -sP
  6. interval: 40

The above configuration has three main elements.

  • target - This is the target to pass on to nmap.

The value of 10.0.0.1/8 will scan the entire 10.0.0.0 class A network.

  • flags - These are flags you would pass to nmap when run from command line.

The value of -sP will perform a Ping based scan.

  • interval - The specified “interval” (in seconds) to wait before performing another scan.