Skip to content
Xavier Garceau-Aranda edited this page Apr 3, 2020 · 18 revisions

sc_2019-05-19_20h48m14s

What is Scout Suite?

Scout Suite is an open source multi-cloud security-auditing tool, which enables security posture assessment of cloud environments. Using the APIs exposed by cloud providers, Scout Suite gathers configuration data for manual inspection and highlights risk areas. Rather than going through dozens of pages on the web consoles, Scout Suite presents a clear view of the attack surface automatically.

Scout Suite was designed by security consultants/auditors. It is meant to provide a point-in-time security-oriented view of the cloud account it was run in. Once the data has been gathered, all usage may be performed offline.

Usage

The following command will provide the list of available command line options:

$ python scout.py --help

You can also use this to get help on a specific provider:

$ python scout.py PROVIDER --help

For further details, checkout our Wiki pages at https://github.com/nccgroup/ScoutSuite/wiki.

After performing a number of API calls, Scout will create a local HTML report and open it in the default browser.

Also note that the command line will try to infer the argument name if possible when receiving partial switch. For example, this will work and use the selected profile:

$ python scout.py aws --profile PROFILE

Credentials

Assuming you already have your provider's CLI up and running you should have your credentials already set up and be able to run Scout Suite by using one of the following commands. If that is not the case, please consult the wiki page for the provider desired.

$ python scout.py aws
$ python scout.py azure --cli
$ python scout.py gcp --user-account

Additional information can be found in the wiki.

Clone this wiki locally