This commit is contained in:
JaimePolop
2025-10-22 23:26:58 +02:00
parent 08c2e42b76
commit e4e6a409ce
10 changed files with 321 additions and 0 deletions

View File

@@ -16,6 +16,14 @@ Lambda uses environment variables to inject credentials at runtime. If you can g
By default, these will have access to write to a cloudwatch log group (the name of which is stored in `AWS_LAMBDA_LOG_GROUP_NAME`), as well as to create arbitrary log groups, however lambda functions frequently have more permissions assigned based on their intended use.
### `lambda:Delete*`
An attacker granted lambda:Delete* can delete Lambda functions, versions/aliases, layers, event source mappings and other associated configurations.
```bash
aws lambda delete-function \
--function-name <LAMBDA_NAME>
```
### Steal Others Lambda URL Requests
If an attacker somehow manage to get RCE inside a Lambda he will be able to steal other users HTTP requests to the lambda. If the requests contain sensitive information (cookies, credentials...) he will be able to steal them.