This repo contains the simplest possible HawkScan configuration. All you need to provide is a StackHawk Application ID and API key.
This repo contains the following active ingredients:
stackhawk.yml
: A minimal StackHawk HawkScan configuration, including application ID, target host, and environment name.docker-compose.yml
: A Docker Compose file to codify a HawkScan run against http://example.com. It pulls the HawkScan container and runs it with environment variables you supply to pass along your application ID and API key.
- Sign up for a free trial of StackHawk. In the initial setup, record your initial API Key and Application ID.
- Install Docker and Docker Compose
- Clone this repository to your machine
git clone https://github.com/kaakaww/simple-scan.git cd simple-scan
- Export your API Key and Application as environment variables.
export HAWK_API_KEY=<your API key here> export HAWK_APP_ID=<your App ID here>
- Run HawkScan!
docker-compose up