Network Analysis
Универсальный сетевой сканер безопасности от Google с расширяемой системой плагинов для обнаружения уязвимостей высокой критичности с высокой достоверностью.
Установка
# Docker — pull and run the full scanner image (recommended)
docker pull ghcr.io/google/tsunami-scanner-full
docker run -it --rm ghcr.io/google/tsunami-scanner-full bash
# Inside the container — start Python plugin server (optional)
tsunami-py-server >/tmp/py_server.log 2>&1 &
# Inside the container — start callback server (optional)
tsunami-tcs >/tmp/tcs_server.log 2>&1 &
# Inside the container — run a scan
tsunami --ip-v4-target=127.0.0.1 --python-plugin-server-address=127.0.0.1 --python-plugin-server-port=34567
# Build-from-source dependencies (if compiling locally)
sudo apt install nmap ncrack docker.io openjdk-11-jdk
# Build core engine from source
cd tsunami-security-scanner
docker build -t ghcr.io/google/tsunami-scanner-core:latest -f core.Dockerfile .