AWS attack automation utility
Project description
AWS Attack Automation
Timberlake is an AWS attack automation utility that can execute one or more test cases. You can read the release blog here: link
Test cases are individual YAML documents that define the setup, execution, and cleanup steps for an attack procedure. These documents contain both metadata about the attack (e.g. MITRE mappings, permissions) as well as Python code for executing the attack.
Timberlake is designed with modularity in mind. Test cases are defined and managed outside the tool and can be swapped around as needed for different execution scenarios.
Notable features of Timberlake:
- Support for multiple credential profiles
- Premade operations avaiable to all test cases (e.g. compound API actions, canned policies, etc)
- API-level logging, including parameters
- VECTR integration for tracking attack details
Example use can be found in examples
Note: Test cases should ideally be run in a non-production account
Install
pip install dist/*.whl
Usage
usage: timberlake [-h] -c CONFIG [-p PHASES] [-a ARGS]
optional arguments:
-h, --help show this help message and exit
-c CONFIG, --config CONFIG
config file path
-p {execution,setup,cleanup} [{execution,setup,cleanup} ...], --phases {execution,setup,cleanup} [{execution,setup,cleanup} ...]
list of phases to execute; default = all
-a ARGS, --args ARGS args file path
- Config : path to config file; must exist
- Phases : one or more phase names to execute; order doesn't matter
- Args : YAML document of key-value pairs to override test case args
Details
Annotated schemas
Refer to test-case-schema.yml for test case schema details
Refer to config.yml for config file schema details
Attack sequencing
Basic execution
Basic execution mode refers to execution without using the VECTR integrations. The execution sequence is as follows:
- Collect test cases
- Run pre-execution hooks (e.g logging)
- Run test case blocks by phase (setup -> execution -> cleanup)
- Run post-execution hooks
- Exit
Execution details are logged to the TIMBERLAKE_LOGFILE location.
VECTR execution
VECTR execution mode refers to execution with added VECTR integration (via GraphQL). The excution sequence is as follows:
- Collect test cases
- Create assessment groups and campaigns in VECTR
- Run pre-execution hooks (e.g logging)
- Run test case blocks by phase (setup -> execution -> cleanup)
- Create test case in VECTR
- all test cases are tagged with "timberlake"
- test cases with errors are tagged with "error"
- Run post-execution hooks
- Write ATTiRe log to location specified in config. Details captured in ATTiRe log:
- Cloud control plane API call details
- Exit
Note: Only code blocks in the execution phase create a test case and ATTiRe log
See also
- https://github.com/FSecureLABS/leonidas : is a very similar concept, but test cases are performed as Lambda functions; test case schema is conceptually similar to what this tool wants to do and was a source of design inspiration
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for timberlake-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a08612ebd5f85886ffec0c9a67ec1dca7c0d0e9dc9edd80f2cdffde105084934 |
|
MD5 | 9f3d3eff233c7c792521c602f1d05df3 |
|
BLAKE2b-256 | 05e929f7bb1a27f050d118d341360e3e7a60e08e2f66454c870f8ce1bb927373 |