_____ _ ____ __ __ _____ | || | / || |__| |/ ___/ | __|| | | o || | | ( \_ | |_ | |___ | || | | |\__ | | _] | || _ || ` ' |/ \ | | | | || | | \ / \ | |__| |_____||__|__| \_/\_/ \___|
aws --profile level6 iam get-userNow that you know your username is Level6 you can find out what policies are attached to it:
aws --profile level6 iam list-attached-user-policies --user-name Level6Now you know that you have two policies attached:
aws --profile level6 iam get-policy --policy-arn arn:aws:iam::975426262029:policy/list_apigatewaysNow that you have the ARN and the version id, you can see what the actual policy is:
aws --profile level6 iam get-policy-version --policy-arn arn:aws:iam::975426262029:policy/list_apigateways --version-id v4This tells us using this policy we can call "apigateway:GET" on "arn:aws:apigateway:us-west-2::/restapis/*"
Using this, it should lead you in the direction of where the hidden resource is.
Need another hint? Go to Hint 2