Metadata-Version: 2.1
Name: ostorlab
Version: 0.1.5
Summary: Ostorlab Agent and Extensibility CLI and SDK
Home-page: https://github.com/Ostorlab/ostorlab
Author: ostorlab team
Author-email: legends@ostorlab.dev
License: MIT
Project-URL: Documentation, https://docs.ostorlab.co/
Project-URL: Source, https://github.com/Ostorlab/ostorlab
Project-URL: Changelog, https://docs.ostorlab.co/changelog/
Project-URL: Tracker, https://github.com/Ostorlab/ostorlab/issues
Project-URL: Twitter, https://twitter.com/OstorlabSec
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
Provides-Extra: testing
License-File: LICENSE

[![PyPI version](https://badge.fury.io/py/ostorlab.svg)](https://badge.fury.io/py/ostorlab)
[![Downloads](https://pepy.tech/badge/ostorlab/month)](https://pepy.tech/project/ostorlab)
[![Ostorlab blog](https://img.shields.io/badge/blog-ostorlab%20news-red)](https://blog.ostorlab.co/)
[![Twitter Follow](https://img.shields.io/twitter/follow/ostorlabsec.svg?style=social)](https://twitter.com/ostorlabsec)

![Logo](https://github.com/Ostorlab/ostorlab/raw/main/images/Ostorlab.png)

Ostorlab is security scanning platform that enables running complex security scanning tasks involving multiple tools
in an easy, scalable and distributed way.

Ostorlab provides:

* CLI to run scans locally and on Ostorlab's Cloud and access results
* SDK to build scanner components called Agents
* Store to publish Agents and share them with the community
* Automated Agent builder that takes care of automatically building and releasing Agents directly from the source code repo

# Requirements

For some task, like running scans locally, Docker is required. To install docker, please see the following
[instructions](https://docs.docker.com/get-docker/).

# Installing

Ostorlab is shipped as a Python package on Pypi. To install, simply run the following command if you have `pip` alraedy
installed.

```shell
pip install -U ostorlab
```

# Getting Started

To perform your first scan, simply run the following command:

```shell
ostorlab scan run --install --agents agent/ostorlab/nmap,agent/ostorlab/tsunami,agent/ostorlab/openvas,agent/ostorlab/nuclei ip 8.8.8.8
```

This command will download and install the following scanning agents:

* `agent/ostorlab/nmap`
* `agent/ostorlab/tsunami`
* `agent/ostorlab/openvas`
* `agent/ostorlab/nuclei`

And will scan the target IP address `8.8.8.8`

To check the scan status:

```shell
ostrlab scan list
```

Once the scan has completed, to access the scan results:

```shell
ostorlab vulnz list --scan-id <scan-id>
ostorlab vulnz describe --vuln-id <vuln-id>
```

# Publish your first Agent

Coming soon.





