Metadata-Version: 2.1
Name: amap-holydragon
Version: 1.0.3
Summary: A CLI tool to scan IP addresses or domain names.
Author-email: Zhang Jian <alexwayne.zj@gmail.com>
Project-URL: Homepage, https://github.com/holydragon57/amap
Project-URL: Bug Tracker, https://github.com/holydragon57/amap/issues
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# AMAP

## Introduction

AMAP is a command line interface tool similar to the famous NMAP. It scans an IP address or a domain name to find active ports and returns related information.

It uses FOFA AMAP API to implement the function.

## Installation

```bash
pip install amap-holydragon
```

## Usage & Options

Usage:

  amap [-h | --help]

  amap <ip_address_or_domain_name> [-n | --nmap] [-x <filename\> | --xml=<filename\>]

Options:

  -h --help  Show help information

  -n --nmap  Use nmap to scan

  -x <filename\> --xml=<filename\>  Output XML file

## Information

* Python version >= 3.7 is required to run `subprocess.run()`
* Package `docopt` is required as a CLI builder
