KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
zap-lambda
★ 11
Open GitHub ↗
ZAP running in a lambda?!
Download README (.md)
Explore Similar Repositories
Workshop18
:
HPCSYSPROS18 Workshop Proceedings
BDIPs
:
The Bitcoin Dapps Improvement Proposal repository
Autopsy-MSOT
:
Autopsy plug-in to parse MS Office telemetry files
uClouds_SE
:
8HP Eurorack module | Granular audio processor
ecs-task-balancer
:
Task Balancer for ECS tasks across container instances
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
zap-lambda
?
Download (.md)
# zap-lambda What if you could run ZAP in a lambda? That would be cool? This PoC spiders a site and spits out the URLs and alerts. The original PoC is in `v1` if you wanna take a look. It will be killed in the near future. ## Now Now that AWS Lambda supports custom images, there is no need to have a hacky build script. There is now a custom Dockerfile found here `terraform/modules/zap_image/code/Dockerfile` that you can deploy using terraform. ## Requirements These requirements are to run use terraform to deploy an image to AWS. - docker - terraform - AWS - `aws` cli ### Terraform Deploying the ZAP lambda base image to ECR, simply define a module with the source of this repo following the example below. For a fully fleshed out example checkout `terraform/envs/test` ``` module "zap_image" { source = "git::https://github.com/rezen/zap-lambda.git//terraform/modules/zap_image" image_name = "zap-lambda" } ``` ### Lambda This is a sample of the event data you can invoke the lambda with. **event** ```json { "target": "https://ahermosilla.com", "timeout": 1, "ignore_alert_ids": [ 50003, 60000, 60001 ] } ```