From f97e1b59e9136cdb6a8b12837276f82cfd83ad8b Mon Sep 17 00:00:00 2001 From: Pablo Pagani <79593935+pablopagani@users.noreply.github.com> Date: Sun, 22 Oct 2023 23:00:27 -0300 Subject: [PATCH] Added services Added the following services: Account, Bedrock, DocDB --- enumerate_iam/bruteforce_tests.py | 33 ++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/enumerate_iam/bruteforce_tests.py b/enumerate_iam/bruteforce_tests.py index 2fb8741..a3d8965 100644 --- a/enumerate_iam/bruteforce_tests.py +++ b/enumerate_iam/bruteforce_tests.py @@ -1,4 +1,8 @@ BRUTEFORCE_TESTS = { + "account":[ + "get_alternate_contact", + "get_contact_information" + ], "a4b": [ "get_conference_preference", "get_device", @@ -79,6 +83,17 @@ "describe_job_queues", "list_jobs" ], + "bedrock": [ + "get_custom_model", + "get_foundation_model", + "get_model_customization_job", + "get_model_invocation_logging_configuration", + "get_provisioned_model_throughput", + "list_custom_models", + "list_foundation_models", + "list_model_customization_jobs", + "list_provisioned_model_throughputs" + ], "chime": [ "list_accounts" ], @@ -279,6 +294,22 @@ "describe_replication_task_assessment_results", "describe_replication_tasks" ], + "docdb":[ + "describe_certificates", + "describe_db_cluster_parameter_groups", + "describe_db_cluster_parameters", + "describe_db_cluster_snapshot_attributes", + "describe_db_cluster_snapshots", + "describe_db_clusters", + "describe_db_engine_versions", + "describe_db_instances", + "describe_db_subnet_groups", + "describe_engine_default_cluster_parameters + "describe_event_categories", + "describe_event_subscriptions", + "describe_events", + "describe_global_clusters" + ], "ds": [ "describe_directories", "describe_event_topics", @@ -1145,4 +1176,4 @@ "get_sampling_rules", "get_sampling_statistic_summaries" ] -} \ No newline at end of file +}