From 68d631cd98f6cf901c16912959f648ae154fbcca Mon Sep 17 00:00:00 2001
From: Abhinav <31707664+0xINT3@users.noreply.github.com>
Date: Sat, 1 Jun 2024 23:46:21 +0530
Subject: [PATCH] Update aws-apigateway-privesc.md

Corrected the syntax on the AWS CLI command by adding the missing <region> tag on line 40
---
 .../aws-privilege-escalation/aws-apigateway-privesc.md          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pentesting-cloud/aws-security/aws-privilege-escalation/aws-apigateway-privesc.md b/pentesting-cloud/aws-security/aws-privilege-escalation/aws-apigateway-privesc.md
index 21b3bfdc13..adf4c12bb4 100644
--- a/pentesting-cloud/aws-security/aws-privilege-escalation/aws-apigateway-privesc.md
+++ b/pentesting-cloud/aws-security/aws-privilege-escalation/aws-apigateway-privesc.md
@@ -37,7 +37,7 @@ aws --region <region> apigateway create-api-key
 With this permission you can get generated API keys of the APIs configured (per region).
 
 ```bash
-aws --region apigateway get-api-keys
+aws --region <region> apigateway get-api-keys
 aws --region <region> apigateway get-api-key --api-key <key> --include-value
 ```