AWS Lambda is an event-driven, serverless computing platform provided by Amazon Web Services. It is a computing service that runs code in response to events and automatically manages the computing resources required by that code.
LambdaGuard is an AWS Lambda auditing tool designed to create asset visibility and provide actionable results. It provides a meaningful overview in terms of statistical analysis, AWS service dependencies and configuration checks from the security perspective.
Requirements
Python 3.6+ Java 11 (optional for SonarQube)Install
From PyPI
From Github
cd lambdaguard
sudo make install
AWS Access
You will need a set of AWS access keys and permissions to run LambdaGuard.
Create a profile in ~/.aws/credentials with the newly created keys.
aws_access_key_id = ...
aws_secret_access_key = ...
Alternatively, you can use the keys directly as CLI arguments (not recommended).
Run
lambdaguard --help lambdaguard --function arn:aws:lambda:function lambdaguard --input function-arns.txt lambdaguard --output /tmp/lambdaguard lambdaguard --profile LambdaGuardProfile lambdaguard --keys ACCESS_KEY_ID SECRET_ACCESS_KEY lambdaguard --region eu-west-1 lambdaguard --verboseSonarQube: Static Code Analysis
Download sonar-scanner-cli
https://github.com/SonarSource/sonar-scanner-cliBuild SonarQube
make sonarqubeUse SonarQube
lambdaguard --sonarqube config.jsonConfig should have the following format:
"command": "sonar-scanner -X",
"url": "http://localhost:9000",
"login": "admin",
"password": "admin"
}
Development
make dev
. dev/bin/activate
make install-dev
make test