Tsunami is a general purpose network security scanner with an extensible plugin system for detecting high severity vulnerabilities with high confidence.
To learn more about Tsunami, visit our documentation.
Tsunami relies heavily on its plugin system to provide basic scanning capabilities. All publicly available Tsunami plugins are hosted in a separate google/tsunami-security-scanner-plugins repository.
Please see the documentation on how to build and run Tsunami
Deploy the Tsunami Security Scanner with the "Stitch" Web UI to Google Cloud Platform using Terraform and Cloud Run.
- Google Cloud Project: You need a project ID (e.g.,
my-security-project). - Tools Installed:
terraform,gcloud, anddocker. - Authentication: Run
gcloud auth loginandgcloud auth application-default login.
We provide a setup script to configure your environment, including the Google Threat Intelligence (GTI) integration.
Prerequisite: Obtain a GTI (VirusTotal) API request key from VirusTotal API Settings.
# Run the interactive setup script
./setup.shThis script will prompt for your Project ID, Region, and GTI API Key, then deploy the necessary infrastructure via Terraform.
Alternatively, if you prefer manual Terraform execution:
cd terraform
terraform init
terraform apply -var="project_id=YOUR_ID" -var="vt_api_key=YOUR_KEY"Replace YOUR_PROJECT_ID with your actual project ID.
1. Tsunami Scanner Engine
# Return to root directory
cd ..
docker build -t us-central1-docker.pkg.dev/YOUR_PROJECT_ID/tsunami-repo/tsunami-scanner:latest -f cloud.Dockerfile .
docker push us-central1-docker.pkg.dev/YOUR_PROJECT_ID/tsunami-repo/tsunami-scanner:latest2. Web UI
cd web_ui
docker build -t us-central1-docker.pkg.dev/YOUR_PROJECT_ID/tsunami-repo/tsunami-web-ui:latest .
docker push us-central1-docker.pkg.dev/YOUR_PROJECT_ID/tsunami-repo/tsunami-web-ui:latest- Go to the Google Cloud Console - Cloud Run.
- Find the
tsunami-web-uiservice. - Click the URL to open the dashboard.
- Enter a target (e.g.,
scanme.nmap.org) to start a scan.
Read how to contribute to Tsunami.
Tsunami is released under the Apache 2.0 license.
Copyright 2025 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Tsunami is not an official Google product.