runbooks 0.6.1__py3-none-any.whl → 0.7.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- jupyter-agent/.env +2 -0
- jupyter-agent/.gradio/certificate.pem +31 -0
- jupyter-agent/__main__.log +8 -0
- jupyter-agent/tmp/4ojbs8a02ir/jupyter-agent.ipynb +68 -0
- jupyter-agent/tmp/cm5iasgpm3p/jupyter-agent.ipynb +91 -0
- jupyter-agent/tmp/crqbsseag5/jupyter-agent.ipynb +91 -0
- jupyter-agent/tmp/hohanq1u097/jupyter-agent.ipynb +57 -0
- jupyter-agent/tmp/jns1sam29wm/jupyter-agent.ipynb +53 -0
- jupyter-agent/tmp/jupyter-agent.ipynb +27 -0
- runbooks/__init__.py +1 -1
- runbooks/finops/README.md +337 -0
- runbooks/finops/__init__.py +1 -3
- runbooks/inventory/FAILED_SCRIPTS_TROUBLESHOOTING.md +619 -0
- runbooks/inventory/PASSED_SCRIPTS_GUIDE.md +738 -0
- runbooks/inventory/aws_organization.png +0 -0
- runbooks/main.py +230 -11
- runbooks/{security_baseline → security}/README.md +191 -68
- runbooks/security/__init__.py +71 -0
- runbooks/{security_baseline → security}/security_baseline_tester.py +2 -2
- {runbooks-0.6.1.dist-info → runbooks-0.7.0.dist-info}/METADATA +5 -3
- {runbooks-0.6.1.dist-info → runbooks-0.7.0.dist-info}/RECORD +56 -44
- runbooks/security_baseline/__init__.py +0 -0
- runbooks/security_baseline/requirements.txt +0 -7
- /runbooks/{security_baseline → security}/checklist/__init__.py +0 -0
- /runbooks/{security_baseline → security}/checklist/account_level_bucket_public_access.py +0 -0
- /runbooks/{security_baseline → security}/checklist/alternate_contacts.py +0 -0
- /runbooks/{security_baseline → security}/checklist/bucket_public_access.py +0 -0
- /runbooks/{security_baseline → security}/checklist/cloudwatch_alarm_configuration.py +0 -0
- /runbooks/{security_baseline → security}/checklist/direct_attached_policy.py +0 -0
- /runbooks/{security_baseline → security}/checklist/guardduty_enabled.py +0 -0
- /runbooks/{security_baseline → security}/checklist/iam_password_policy.py +0 -0
- /runbooks/{security_baseline → security}/checklist/iam_user_mfa.py +0 -0
- /runbooks/{security_baseline → security}/checklist/multi_region_instance_usage.py +0 -0
- /runbooks/{security_baseline → security}/checklist/multi_region_trail.py +0 -0
- /runbooks/{security_baseline → security}/checklist/root_access_key.py +0 -0
- /runbooks/{security_baseline → security}/checklist/root_mfa.py +0 -0
- /runbooks/{security_baseline → security}/checklist/root_usage.py +0 -0
- /runbooks/{security_baseline → security}/checklist/trail_enabled.py +0 -0
- /runbooks/{security_baseline → security}/checklist/trusted_advisor.py +0 -0
- /runbooks/{security_baseline → security}/config-origin.json +0 -0
- /runbooks/{security_baseline → security}/config.json +0 -0
- /runbooks/{security_baseline → security}/permission.json +0 -0
- /runbooks/{security_baseline → security}/report_generator.py +0 -0
- /runbooks/{security_baseline → security}/report_template_en.html +0 -0
- /runbooks/{security_baseline → security}/report_template_jp.html +0 -0
- /runbooks/{security_baseline → security}/report_template_kr.html +0 -0
- /runbooks/{security_baseline → security}/report_template_vn.html +0 -0
- /runbooks/{security_baseline → security}/run_script.py +0 -0
- /runbooks/{security_baseline → security}/utils/__init__.py +0 -0
- /runbooks/{security_baseline → security}/utils/common.py +0 -0
- /runbooks/{security_baseline → security}/utils/enums.py +0 -0
- /runbooks/{security_baseline → security}/utils/language.py +0 -0
- /runbooks/{security_baseline → security}/utils/level_const.py +0 -0
- /runbooks/{security_baseline → security}/utils/permission_list.py +0 -0
- {runbooks-0.6.1.dist-info → runbooks-0.7.0.dist-info}/WHEEL +0 -0
- {runbooks-0.6.1.dist-info → runbooks-0.7.0.dist-info}/entry_points.txt +0 -0
- {runbooks-0.6.1.dist-info → runbooks-0.7.0.dist-info}/licenses/LICENSE +0 -0
- {runbooks-0.6.1.dist-info → runbooks-0.7.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,71 @@
|
|
1
|
+
"""
|
2
|
+
AWS Security Baseline Testing Module.
|
3
|
+
|
4
|
+
This module provides comprehensive AWS security baseline testing capabilities
|
5
|
+
with multilingual reporting and enterprise-grade assessment features.
|
6
|
+
|
7
|
+
The security module evaluates AWS accounts against security best practices
|
8
|
+
and generates detailed HTML reports with findings and remediation guidance.
|
9
|
+
|
10
|
+
Features:
|
11
|
+
- Comprehensive security checklist validation
|
12
|
+
- Multilingual report generation (EN, JP, KR, VN)
|
13
|
+
- Parallel execution for performance
|
14
|
+
- Enterprise-ready HTML reporting
|
15
|
+
- CLI integration with runbooks
|
16
|
+
- AWS Organizations and multi-account support
|
17
|
+
|
18
|
+
Example:
|
19
|
+
```python
|
20
|
+
from runbooks.security import SecurityBaselineTester
|
21
|
+
|
22
|
+
# Initialize security tester
|
23
|
+
tester = SecurityBaselineTester(
|
24
|
+
profile="prod",
|
25
|
+
lang_code="EN",
|
26
|
+
output_dir="./security-reports"
|
27
|
+
)
|
28
|
+
|
29
|
+
# Run security assessment
|
30
|
+
tester.run()
|
31
|
+
```
|
32
|
+
|
33
|
+
CLI Usage:
|
34
|
+
```bash
|
35
|
+
# Run security assessment
|
36
|
+
runbooks security assess --profile prod --language EN
|
37
|
+
|
38
|
+
# Generate Korean language report
|
39
|
+
runbooks security assess --language KR --output /reports
|
40
|
+
|
41
|
+
# Run specific security checks
|
42
|
+
runbooks security check root-mfa --profile production
|
43
|
+
```
|
44
|
+
|
45
|
+
Author: CloudOps Runbooks Team
|
46
|
+
Version: 1.1.0
|
47
|
+
"""
|
48
|
+
|
49
|
+
from .report_generator import ReportGenerator, generate_html_report
|
50
|
+
from .run_script import main as run_security_script, parse_arguments
|
51
|
+
from .security_baseline_tester import SecurityBaselineTester
|
52
|
+
|
53
|
+
# Version info
|
54
|
+
__version__ = "1.1.0"
|
55
|
+
__author__ = "CloudOps Runbooks Team"
|
56
|
+
|
57
|
+
# Public API
|
58
|
+
__all__ = [
|
59
|
+
# Core functionality
|
60
|
+
"SecurityBaselineTester",
|
61
|
+
"ReportGenerator",
|
62
|
+
"generate_html_report",
|
63
|
+
|
64
|
+
# CLI functions
|
65
|
+
"run_security_script",
|
66
|
+
"parse_arguments",
|
67
|
+
|
68
|
+
# Metadata
|
69
|
+
"__version__",
|
70
|
+
"__author__",
|
71
|
+
]
|
@@ -10,7 +10,7 @@ import boto3
|
|
10
10
|
import botocore
|
11
11
|
|
12
12
|
from . import report_generator
|
13
|
-
from .
|
13
|
+
from . import checklist # noqa: F403
|
14
14
|
from .utils import common, language, level_const
|
15
15
|
|
16
16
|
# from .utils.language import get_translator
|
@@ -108,7 +108,7 @@ class SecurityBaselineTester:
|
|
108
108
|
|
109
109
|
def _run_check(self, check_name, credential_report):
|
110
110
|
# check_module = __import__(f"checklist.{check_name}", fromlist=[check_name])
|
111
|
-
check_module = importlib.import_module(f"runbooks.
|
111
|
+
check_module = importlib.import_module(f"runbooks.security.checklist.{check_name}")
|
112
112
|
check_method = getattr(check_module, self.config["checks"][check_name])
|
113
113
|
translator = language.get_translator(check_name, self.language)
|
114
114
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: runbooks
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.7.0
|
4
4
|
Summary: CloudOps Automation Toolkit with Enhanced Cloud Foundations Assessment for DevOps and SRE teams.
|
5
5
|
Author-email: Maintainers <nnthanh101@gmail.com>
|
6
6
|
License-Expression: Apache-2.0
|
@@ -23,8 +23,8 @@ Classifier: Topic :: Utilities
|
|
23
23
|
Requires-Python: <3.14,>=3.11
|
24
24
|
Description-Content-Type: text/markdown
|
25
25
|
License-File: LICENSE
|
26
|
-
Requires-Dist: boto3>=1.40
|
27
|
-
Requires-Dist: botocore>=1.40
|
26
|
+
Requires-Dist: boto3>=1.35.40
|
27
|
+
Requires-Dist: botocore>=1.35.40
|
28
28
|
Requires-Dist: diagrams>=0.24.4
|
29
29
|
Requires-Dist: click>=8.2.1
|
30
30
|
Requires-Dist: pydantic>=2.10.0
|
@@ -41,6 +41,8 @@ Requires-Dist: reportlab>=3.6.1
|
|
41
41
|
Requires-Dist: requests>=2.32.0
|
42
42
|
Requires-Dist: packaging>=21.0
|
43
43
|
Requires-Dist: pyyaml>=6.0.2
|
44
|
+
Requires-Dist: jmespath>=1.0.1
|
45
|
+
Requires-Dist: urllib3<1.27,>=1.26.18
|
44
46
|
Dynamic: license-file
|
45
47
|
|
46
48
|
# 🚀 CloudOps Runbooks - Enterprise AWS Automation Toolkit
|
@@ -1,7 +1,9 @@
|
|
1
1
|
conftest.py,sha256=HTnQMw9wxefkvX5q4yG8EUH2qVLJBnC9QCt3UCltw7I,586
|
2
|
+
jupyter-agent/.env,sha256=ZyIap7kKkg5_JwRCJqtoDpixqPkHU3Y2cJxYadKlO-c,103
|
2
3
|
jupyter-agent/.env.template,sha256=xU2MQ80zvx2mYr_n3alar7oop9mdhonU6xNVEQGlzwY,71
|
3
4
|
jupyter-agent/.gitattributes,sha256=Ea1--iSXXuSww8OjjtGHN_Blil91oKlnh7V2p4oCM2E,1519
|
4
5
|
jupyter-agent/README.md,sha256=WJ7zUhaFaDl26cH6mcWimqkpN04TJhIH4TKiyd6MDI0,370
|
6
|
+
jupyter-agent/__main__.log,sha256=TDRITkba40x0Lby7EkWncbIs4i8g1sztDD_heSj62aI,710
|
5
7
|
jupyter-agent/app.py,sha256=8UR8AzqrJYHWr2bpj-mOSuPHLYzd8AWVJbxnM43h5Q8,8727
|
6
8
|
jupyter-agent/cloudops-agent.png,sha256=A4e0WfpihWVHFtz0Yj09Y9uci-IWF4gdpnZifACzdT8,408376
|
7
9
|
jupyter-agent/ds-system-prompt.txt,sha256=YZydzHqxaHgXVPORiltlWDg3rK-c-a2Dlx0BAj2dfsg,5034
|
@@ -9,11 +11,18 @@ jupyter-agent/jupyter-agent.png,sha256=KJjLvoWAnuhSaEsWBW8PHwouzk2sVC84PTtSuMDEg
|
|
9
11
|
jupyter-agent/llama3_template.jinja,sha256=gywY7mJ14M-VeCSs0LLFO-Nt3S7XEJaQQ-KuzorzuEs,5198
|
10
12
|
jupyter-agent/requirements.txt,sha256=OrwjCjWcVo8lp82yY6Sor2r46mxhqMfkFiH6PBphtA0,173
|
11
13
|
jupyter-agent/utils.py,sha256=MGsDPI6a2OYc39wwSeg8oAM69U_k8mMSzegwT1cyp_0,13067
|
12
|
-
|
14
|
+
jupyter-agent/.gradio/certificate.pem,sha256=IrVXonBVszYGtlWfN3A5KNPkrXnxELQH0EmG4YQ1Q9E,1939
|
15
|
+
jupyter-agent/tmp/jupyter-agent.ipynb,sha256=jrqDAZIRUDqcCLyrV_Jb435WIipb7OB5FjxULP0mynI,612
|
16
|
+
jupyter-agent/tmp/4ojbs8a02ir/jupyter-agent.ipynb,sha256=hDZB4yLCsQcTMXMNZhNCVAmuXugTXJlXlDu-5BnNZDM,70481
|
17
|
+
jupyter-agent/tmp/cm5iasgpm3p/jupyter-agent.ipynb,sha256=KQ8slJljjsUjsE-COrh-jZFoaEg5jwP6ukk6VX6-C0I,89492
|
18
|
+
jupyter-agent/tmp/crqbsseag5/jupyter-agent.ipynb,sha256=XUM3BR1BJ8qp37rKDft-f9rXCGiG6V7_WOoF6TbBUNw,110860
|
19
|
+
jupyter-agent/tmp/hohanq1u097/jupyter-agent.ipynb,sha256=tPE_Uwx8ZQscqVaM0gfnSgsxNc9RkrcisJKICW1ah38,9686
|
20
|
+
jupyter-agent/tmp/jns1sam29wm/jupyter-agent.ipynb,sha256=7tibJV-03sU3Xn4oRjt6E2QOQIt57E0xxY0hcoNctqg,75815
|
21
|
+
runbooks/__init__.py,sha256=xMbh_48pNLycHeUL4D5iDqjjVEz2Gnwr1j9dcMP7Kjs,2021
|
13
22
|
runbooks/__main__.py,sha256=0hTPUA9KkLm_H_COqaIpNzXvC4Lv5b_XYYBV6fUFDrM,241
|
14
23
|
runbooks/base.py,sha256=SE31vwKB_CW2C0w2Onb7QfjU2xJXcUbiYTSHBDWT7KE,11593
|
15
24
|
runbooks/config.py,sha256=63Bct1jASQG3mjPTNnzfJwTMgXzG8aQqVsaku6ugZR0,7839
|
16
|
-
runbooks/main.py,sha256=
|
25
|
+
runbooks/main.py,sha256=1WTBaNcpLCyA__mE37VmE0CSnH2vDs168HY3cZaihHM,37290
|
17
26
|
runbooks/aws/__init__.py,sha256=iswGPspnFaHLE_Zzw2uRraYI2zvJ1Nma5PbdOiBUdEo,1646
|
18
27
|
runbooks/aws/dynamodb_operations.py,sha256=c91YACBHnOELL8Ufj7tRQws9azGqnB6flQsacTi57xQ,6490
|
19
28
|
runbooks/aws/ec2_copy_image_cross-region.py,sha256=2Afoo2ddzswgtdhdzsDq5aZiqXkQ0_kUyRdHbhkaLAA,6017
|
@@ -93,7 +102,8 @@ runbooks/cfat/tests/test_cli.py,sha256=6FGIKozOuZUroftmbNCVaT2YlSwStwyWu2yEBjcoH
|
|
93
102
|
runbooks/cfat/tests/test_integration.py,sha256=L4kkWW41Jsuzn4Tv-z_a5cY6xOo_aHzCAVjlmuGHuew,12281
|
94
103
|
runbooks/cfat/tests/test_models.py,sha256=16Dcdty82_yotJ2ngBbgydCy9BDamxtMZrs4a1t-mVM,18267
|
95
104
|
runbooks/cfat/tests/test_reporting.py,sha256=ysPZSAFgCQ7oIkOdBxUrlCiyZBhWDpcnp0I2cv3k9_Q,12631
|
96
|
-
runbooks/finops/
|
105
|
+
runbooks/finops/README.md,sha256=Fm9dpPujttPLJ2ES2d_zDUZ-YrVqVkeaAM1gjlcQxCw,12983
|
106
|
+
runbooks/finops/__init__.py,sha256=5E15yPJgtCLquIx3_H20BiR0_5fmC4BOW2Zti_7fRF0,2265
|
97
107
|
runbooks/finops/aws_client.py,sha256=o9ShoAH_V1QKBlq2Li4VTrjnXNj3ezgGvenJAiPUbjY,9379
|
98
108
|
runbooks/finops/cli.py,sha256=HqU0CPhVrqD0WSxckpeHYRnJWZTAIqOygjfnflNZaoE,5227
|
99
109
|
runbooks/finops/cost_processor.py,sha256=BNyG9HpkAI27UFcoRurP3Tz1Q4BV9u_fVk6wVzf0ysU,15042
|
@@ -105,12 +115,15 @@ runbooks/finops/types.py,sha256=Tk7sMVh-9LXxrU6IKDa6RMlxK7H3HkWUKvs1yctD_yQ,1592
|
|
105
115
|
runbooks/finops/visualisations.py,sha256=BI6cBsKSNUcjqnEukMzHxZzqyv12w3TRj2zvN53-Rbk,2737
|
106
116
|
runbooks/inventory/.gitignore,sha256=qqVQodfb6iNuPRM7fsl7lvqxrJaatKNQqQmX7s1_PPg,5563
|
107
117
|
runbooks/inventory/ArgumentsClass.py,sha256=BwquO-iYZNS_fVxgASrksanzoAN_NPCzRpTAyohRLX0,8621
|
118
|
+
runbooks/inventory/FAILED_SCRIPTS_TROUBLESHOOTING.md,sha256=xScVwmUGWDZySl2-5j43Dkga5ofk3UJvVqB9P6RklSw,20715
|
108
119
|
runbooks/inventory/Inventory_Modules.py,sha256=4bBfezmCtsT-r0YU7Rhfv94rxhfPfStrUkPF4q009uI,285209
|
120
|
+
runbooks/inventory/PASSED_SCRIPTS_GUIDE.md,sha256=zKUvINX2Pe_EbtJjNBo6MSMnMdJBEMqhrQR_mCbFxAY,21621
|
109
121
|
runbooks/inventory/README.md,sha256=gCubMJ8mp09hwPccr2GDbUgiFr8CoCsakp1kHHAApTU,43221
|
110
122
|
runbooks/inventory/__init__.py,sha256=J-MoV_B5ScwlqfLEZv7ZRF7iTai5Hsya0c4tiNrrVE4,2039
|
111
123
|
runbooks/inventory/account_class.py,sha256=wvYNeiXHq6tk8Pqa95Aa91zAtuBXcnE51NonzDueuaM,26361
|
112
124
|
runbooks/inventory/all_my_instances_wrapper.py,sha256=B_nHnXOFle6_LU1YnZd38uMZNV6pIONh4EvCyO-lwzw,5723
|
113
125
|
runbooks/inventory/aws_decorators.py,sha256=_3QWqih_J6tgs7_dnJwp7Al7OI0qImZpFMyO4E-bMZE,8605
|
126
|
+
runbooks/inventory/aws_organization.png,sha256=-LUsSMk9L-sPF6K3Z__FOnHIP7u4nQW9Q1rcTw1EzX8,1140649
|
114
127
|
runbooks/inventory/cfn_move_stack_instances.py,sha256=cwyOdgQCcrfQqQjPDlTZStEUUN8jp691Mwggniyx-NM,73797
|
115
128
|
runbooks/inventory/check_cloudtrail_compliance.py,sha256=rQGKuJefqBa1LCfTsVgKJ_GiP3HKqgpYX77iclOV2ko,33652
|
116
129
|
runbooks/inventory/check_controltower_readiness.py,sha256=2elNsYY_PYhcQeyjcnB4NTbZVUrHnXU70OjrzwOpwVI,56076
|
@@ -192,46 +205,45 @@ runbooks/inventory/utils/threading_utils.py,sha256=ckizvb0QSWx1xkDanvaoUOCHaXOm2
|
|
192
205
|
runbooks/inventory/utils/validation.py,sha256=HoQmEr9CSEfS1yF0uyCAW5TKlG-u9-t-YRouThSBxeA,19803
|
193
206
|
runbooks/organizations/__init__.py,sha256=R-33CAEz_sRPNfP_JCWiPbCQn4CSe6UxvpMEnT4H3AI,251
|
194
207
|
runbooks/organizations/manager.py,sha256=p9vUcGc1jGx5ke88EQ08ccexZ-TyppwU7_V5otXBJIg,14383
|
195
|
-
runbooks/
|
196
|
-
runbooks/
|
197
|
-
runbooks/
|
198
|
-
runbooks/
|
199
|
-
runbooks/
|
200
|
-
runbooks/
|
201
|
-
runbooks/
|
202
|
-
runbooks/
|
203
|
-
runbooks/
|
204
|
-
runbooks/
|
205
|
-
runbooks/
|
206
|
-
runbooks/
|
207
|
-
runbooks/
|
208
|
-
runbooks/
|
209
|
-
runbooks/
|
210
|
-
runbooks/
|
211
|
-
runbooks/
|
212
|
-
runbooks/
|
213
|
-
runbooks/
|
214
|
-
runbooks/
|
215
|
-
runbooks/
|
216
|
-
runbooks/
|
217
|
-
runbooks/
|
218
|
-
runbooks/
|
219
|
-
runbooks/
|
220
|
-
runbooks/
|
221
|
-
runbooks/
|
222
|
-
runbooks/
|
223
|
-
runbooks/
|
224
|
-
runbooks/
|
225
|
-
runbooks/
|
226
|
-
runbooks/
|
227
|
-
runbooks/
|
228
|
-
runbooks/
|
229
|
-
runbooks/security_baseline/utils/permission_list.py,sha256=nq06vlILHp9rfnCpJauCmFCOEGdgFMF-XO3uBFrrd-o,767
|
208
|
+
runbooks/security/README.md,sha256=NiOHsV8Kal5LHh3mJtEjw30rCjx-9JjnMzPjXe4_Hzo,17850
|
209
|
+
runbooks/security/__init__.py,sha256=KtHlDbIIkRTtLDrD1v4Daq1VVU8t-FH3JXbpA0GP4-k,1849
|
210
|
+
runbooks/security/config-origin.json,sha256=3mijAIymVtkf1V_BzDJPnQSBSFjrYyL-wrPBH3t8gXQ,1009
|
211
|
+
runbooks/security/config.json,sha256=3mijAIymVtkf1V_BzDJPnQSBSFjrYyL-wrPBH3t8gXQ,1009
|
212
|
+
runbooks/security/permission.json,sha256=3p9xDYEKLfOT171GE8gV2dAjgw2TFNoggGB65w2q-L8,1261
|
213
|
+
runbooks/security/report_generator.py,sha256=KUDGJDGL7XrW1LT_KmPpED5ZgNNx8X2o-Q1ivrEeGsY,6483
|
214
|
+
runbooks/security/report_template_en.html,sha256=UARo0jfvNe41W9m70r_U6kqw8arq8N7Y0G5bqq6Mk5w,7983
|
215
|
+
runbooks/security/report_template_jp.html,sha256=UARo0jfvNe41W9m70r_U6kqw8arq8N7Y0G5bqq6Mk5w,7983
|
216
|
+
runbooks/security/report_template_kr.html,sha256=m3lf59ef12qaLsd_Zs2uZlYHVru0tQwt-e7q9odrvhc,10383
|
217
|
+
runbooks/security/report_template_vn.html,sha256=UARo0jfvNe41W9m70r_U6kqw8arq8N7Y0G5bqq6Mk5w,7983
|
218
|
+
runbooks/security/run_script.py,sha256=TrydLAuZ6_1AOo-CeNRqCYWABXDXAniyQ506KP6IRKI,2322
|
219
|
+
runbooks/security/security_baseline_tester.py,sha256=YVJ1HNtqtpZ6fVZ7QhC5FU1dDM658IVjvk9XxPSkmJQ,7839
|
220
|
+
runbooks/security/checklist/__init__.py,sha256=gXjVSA36zv5jCkaw3XASG8DpLPo6Fu8yxquUdX8YSFY,455
|
221
|
+
runbooks/security/checklist/account_level_bucket_public_access.py,sha256=_sILKNiBg-33wUUxoZhUq2O-x-xC2zZU9cQUehYMxTs,3386
|
222
|
+
runbooks/security/checklist/alternate_contacts.py,sha256=D65xPRbiregtYQ76kkKjy9GxHbbI_HWGEVF7Sbeu_bU,3172
|
223
|
+
runbooks/security/checklist/bucket_public_access.py,sha256=uwMUTtzIFLX_tDpxwo55Tdv_On69vBHpPIEQqigs5SY,3354
|
224
|
+
runbooks/security/checklist/cloudwatch_alarm_configuration.py,sha256=z7jiRJNA-RXUptXE9mLAXDwahHT-LVvuUcePoSg0PFw,2360
|
225
|
+
runbooks/security/checklist/direct_attached_policy.py,sha256=zjM3olLXjlaHQxHEOYyifTiugICuLAAOCMxn9pSLKFw,2568
|
226
|
+
runbooks/security/checklist/guardduty_enabled.py,sha256=IvWjHYjgT6Qv072ZG5okW4zK02azvOw7K1DNM-InlcE,2546
|
227
|
+
runbooks/security/checklist/iam_password_policy.py,sha256=bKIxhWQQ4xuE_uxtWfm0LXCqTFRQ-ygafxMKqeFFGw4,1570
|
228
|
+
runbooks/security/checklist/iam_user_mfa.py,sha256=H3mG_rC01iF-lbKCT7IqOEyShby9QkSADXE9BOt1DyQ,1234
|
229
|
+
runbooks/security/checklist/multi_region_instance_usage.py,sha256=ziDY6lHlpsmk2f_2Z8EaZ7wOUZuaUnZiI-x_R3o50Y0,2007
|
230
|
+
runbooks/security/checklist/multi_region_trail.py,sha256=OCAejEa59rKUWU-vnVQaNxOg1wOAUQZdGzyI7r25vi4,2293
|
231
|
+
runbooks/security/checklist/root_access_key.py,sha256=8jgRebbSmnKAPrTUh5uV_tC6nz7a7-qnME6uDLI99UM,2565
|
232
|
+
runbooks/security/checklist/root_mfa.py,sha256=X8PPzRLgaNhd-MMUjm432OkjQ1RqGis-pEhQUgqwVa8,1293
|
233
|
+
runbooks/security/checklist/root_usage.py,sha256=20XEtXC2seJnUW0clME3YGrosRYP5yRTi7a_Rr5YpdA,4658
|
234
|
+
runbooks/security/checklist/trail_enabled.py,sha256=kcX7sgB7NO2YbN8i3SDkB1m5Bb00Wu6JX9cniGBsSPw,2289
|
235
|
+
runbooks/security/checklist/trusted_advisor.py,sha256=zsLQf-mFeu3aiOhGndrojoa5K4QiI1Buk5rC5Hfg_gA,674
|
236
|
+
runbooks/security/utils/__init__.py,sha256=fEyCpWrJ6S6Z5rdHJGf7WRMnRNoZ6th5HmXbESc6guM,96
|
237
|
+
runbooks/security/utils/common.py,sha256=pOLbkvdkBpLcbf4NSlwghhs7mr7S_MMvW9D7LvJ6hkE,3446
|
238
|
+
runbooks/security/utils/enums.py,sha256=BGr8EgwZrWsU8kvWkwWsPqELUPGBc2tvJ5SzN9XhWQU,1258
|
239
|
+
runbooks/security/utils/language.py,sha256=MrSAojEyjHqRDDALdk002snj4xnFbwGgIjAc2buJ8g0,60448
|
240
|
+
runbooks/security/utils/level_const.py,sha256=l8uYBmgEMjIQTGVVuXPAfDd_Psl6jNfTQw2isI43zO8,88
|
241
|
+
runbooks/security/utils/permission_list.py,sha256=nq06vlILHp9rfnCpJauCmFCOEGdgFMF-XO3uBFrrd-o,767
|
230
242
|
runbooks/utils/__init__.py,sha256=3K-CwUA_NEN9R7RT5PeELs-VLSgVKUfkV-4NJkbCg90,5770
|
231
243
|
runbooks/utils/logger.py,sha256=ifxqLjDlZoDaG8rtAGVKLZ5dAwcMn16rB4YgMfeUC3E,972
|
232
|
-
runbooks-0.
|
233
|
-
runbooks-0.
|
234
|
-
runbooks-0.
|
235
|
-
runbooks-0.
|
236
|
-
runbooks-0.
|
237
|
-
runbooks-0.
|
244
|
+
runbooks-0.7.0.dist-info/licenses/LICENSE,sha256=WAQUYGIkLJh6CPrlZgr0IsbRODa0EZ6fboBXGjfWggs,11375
|
245
|
+
runbooks-0.7.0.dist-info/METADATA,sha256=D0KfhkzoqHPWg-tBiI_oQTPs045waJRJUEj2vugBWnY,14924
|
246
|
+
runbooks-0.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
247
|
+
runbooks-0.7.0.dist-info/entry_points.txt,sha256=Us-ey766qGdkpEFj5q9sB2V-QO0O34O3yS9ezhLPjfg,262
|
248
|
+
runbooks-0.7.0.dist-info/top_level.txt,sha256=dC5G9UiKrI_9_0dBLWwpGi1JFPRp_Qspi23URlD5WyU,32
|
249
|
+
runbooks-0.7.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|