Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
## Unreleased
* Docker

## 0.2.3 (Unreleased)
* UI
* Credentials Exposure as a new finding (`#99`)
* Service Wildcard as a new finding (`#82`)
* Inline Explanation of findings (`#115`)
* Better formatting for Privilege Escalation findings (`#114`)
* Exclusions config is in its own tab in the UI (`#107`)
* Backend
* Vue components are cleaned up - less HTML, more config and JS
* Unit tests are down from 3.25 minutes to 60 seconds (Fixes #117)

## 0.2.2 (2020-10-01)
* Excluded actions no longer show up in results (Fixes #106)
* Fixed issue where `*:*` policy would break results due to how the Service Wildcard finding was implemented (Fixes #109)
Expand Down
12 changes: 11 additions & 1 deletion cloudsplaining/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
# pylint: disable=missing-module-docstring
import logging

# import sys
# Set default logging handler to avoid "No handler found" warnings.
from logging import NullHandler

logging.getLogger(__name__).addHandler(NullHandler())
# Uncomment to get the full debug logs.
# 2020-10-06 10:04:17,200 - root - DEBUG - Leveraging the bundled IAM Definition.
# Need to figure out how to get click_log to do this for me.
# root = logging.getLogger()
# root.setLevel(logging.DEBUG)
# handler = logging.StreamHandler(sys.stdout)
# formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
# handler.setFormatter(formatter)
# root.addHandler(handler)

name = "cloudsplaining" # pylint: disable=invalid-name
Loading