AWS Lambda Enumeration
Commands:
1) Listing all lambda functions
aws lambda list-functions This command enables us to download the source code of the lambda function:
2) Listing information about a specific lambda function
aws lambda get-function --function-name FUNCTION_NAME We can get information like who can execute this function, ID and other information with this command:
3) Listing policy information about the function
aws lambda get-policy --function-name FUNCTION_NAME 4) Listing the event source mapping information about a lambda function
aws lambda list-event-source-mappings --function-name FUNCTION_NAME 5) Listing Lambda Layers (Dependencies)
aws lambda list-layers 6)
7) Listing Rest APIs
8) Listing information about endpoints
9) Listing information about a specific endpoint
10) Listing method information for the endpoint (Test various methods to see if the API supports it)
11) Listing all versions of a rest API
12) Getting information about a specific version
13) Listing API keys
14) Getting information about a specific API Key
Last updated