├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── aws_ir_plugins ├── README.rst ├── __init__.py ├── _version.py ├── disableaccess_key.py ├── examineracl_host.py ├── gather_host.py ├── isolate_host.py ├── revokests_key.py ├── snapshotdisks_host.py ├── stop_host.py ├── tag_host.py └── templates │ └── deny-sts-before-time.json.j2 ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_disableaccess.py ├── test_examineracl.py ├── test_gatherhost.py ├── test_isolatehost.py ├── test_revokests_key.py ├── test_snapshotdisks.py ├── test_stophost.py └── test_taghost.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/README.md -------------------------------------------------------------------------------- /aws_ir_plugins/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/README.rst -------------------------------------------------------------------------------- /aws_ir_plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/__init__.py -------------------------------------------------------------------------------- /aws_ir_plugins/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.0.3' 2 | -------------------------------------------------------------------------------- /aws_ir_plugins/disableaccess_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/disableaccess_key.py -------------------------------------------------------------------------------- /aws_ir_plugins/examineracl_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/examineracl_host.py -------------------------------------------------------------------------------- /aws_ir_plugins/gather_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/gather_host.py -------------------------------------------------------------------------------- /aws_ir_plugins/isolate_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/isolate_host.py -------------------------------------------------------------------------------- /aws_ir_plugins/revokests_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/revokests_key.py -------------------------------------------------------------------------------- /aws_ir_plugins/snapshotdisks_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/snapshotdisks_host.py -------------------------------------------------------------------------------- /aws_ir_plugins/stop_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/stop_host.py -------------------------------------------------------------------------------- /aws_ir_plugins/tag_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/tag_host.py -------------------------------------------------------------------------------- /aws_ir_plugins/templates/deny-sts-before-time.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/aws_ir_plugins/templates/deny-sts-before-time.json.j2 -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | 4 | [flake8] 5 | ignore=E402,H238 6 | max-line-length=99 7 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_disableaccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/tests/test_disableaccess.py -------------------------------------------------------------------------------- /tests/test_examineracl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/tests/test_examineracl.py -------------------------------------------------------------------------------- /tests/test_gatherhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/tests/test_gatherhost.py -------------------------------------------------------------------------------- /tests/test_isolatehost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/tests/test_isolatehost.py -------------------------------------------------------------------------------- /tests/test_revokests_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/tests/test_revokests_key.py -------------------------------------------------------------------------------- /tests/test_snapshotdisks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/tests/test_snapshotdisks.py -------------------------------------------------------------------------------- /tests/test_stophost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/tests/test_stophost.py -------------------------------------------------------------------------------- /tests/test_taghost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThreatResponse/aws_ir_plugins/HEAD/tests/test_taghost.py --------------------------------------------------------------------------------