{"id":13510089,"url":"https://github.com/google/tsunami-security-scanner","last_synced_at":"2025-05-07T11:53:11.142Z","repository":{"id":38398634,"uuid":"269137265","full_name":"google/tsunami-security-scanner","owner":"google","description":"Tsunami is a general purpose network security scanner with an extensible plugin system for detecting high severity vulnerabilities with high confidence.","archived":false,"fork":false,"pushed_at":"2025-03-24T19:47:42.000Z","size":906,"stargazers_count":8386,"open_issues_count":21,"forks_count":904,"subscribers_count":311,"default_branch":"master","last_synced_at":"2025-04-22T20:07:07.308Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/google.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-03T16:20:00.000Z","updated_at":"2025-04-22T10:25:06.000Z","dependencies_parsed_at":"2023-02-09T17:16:26.674Z","dependency_job_id":"1ba89ee3-276d-4511-bc98-fa290894c211","html_url":"https://github.com/google/tsunami-security-scanner","commit_stats":{"total_commits":203,"total_committers":25,"mean_commits":8.12,"dds":0.8029556650246306,"last_synced_commit":"db286cd62c23f3730c735021754613f5d12b4062"},"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Ftsunami-security-scanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Ftsunami-security-scanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Ftsunami-security-scanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google%2Ftsunami-security-scanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/google","download_url":"https://codeload.github.com/google/tsunami-security-scanner/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252873973,"owners_count":21817710,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T02:01:23.693Z","updated_at":"2025-05-07T11:53:11.104Z","avatar_url":"https://github.com/google.png","language":"Java","funding_links":[],"categories":["Java","Java (78)","Java (504)","HarmonyOS","others","Security","Network Tools","Other","Network","Pentesting","Security monitoring"],"sub_categories":["Windows Manager","Web","Intentionally Vulnerable Systems as Docker Containers","Forensics","Vulnerability","Network Security Monitoring (NSM)"],"readme":"# Tsunami\n\n![build](https://github.com/google/tsunami-security-scanner/workflows/build/badge.svg)\n\nTsunami is a general purpose network security scanner with an extensible plugin\nsystem for detecting high severity vulnerabilities with high confidence.\n\nTo learn more about Tsunami, visit our\n[documentation](https://google.github.io/tsunami-security-scanner/).\n\nTsunami relies heavily on its plugin system to provide basic scanning\ncapabilities. All publicly available Tsunami plugins are hosted in a separate\n[google/tsunami-security-scanner-plugins](https://github.com/google/tsunami-security-scanner-plugins)\nrepository.\n\n## Current Status\n\n*   Currently Tsunami is in 'pre-alpha' release for developer preview.\n*   Tsunami project is currently under active development. Do expect major API\n    changes in the future.\n\n## Quick Start\n\nTo quickly get started with Tsunami scans,\n\n### Traditional install\n 1.  install the following required dependencies:\n\n     ```\n     nmap \u003e= 7.80\n     ncrack \u003e= 0.7\n     ```\n\n 1.  start a vulnerable application that can be identified by Tsunami, e.g. an\n      unauthenticated Jupyter Notebook server. The easiest way is to use a docker\n      image:\n     ```shell\n     docker run --name unauthenticated-jupyter-notebook -p 8888:8888 -d jupyter/base-notebook start-notebook.sh --NotebookApp.token=''\n     ```\n\n 1.  execute the following command:\n\n     ```\n     bash -c \"$(curl -sfL https://raw.githubusercontent.com/google/tsunami-security-scanner/master/quick_start.sh)\"\n     ```\n\n The `quick_start.sh` script performs the following tasks:\n\n 1.  Clone the\n     [google/tsunami-security-scanner](https://github.com/google/tsunami-security-scanner)\n     and\n     [google/tsunami-security-scanner-plugins](https://github.com/google/tsunami-security-scanner-plugins)\n     repos into `$HOME/tsunami/repos` directory.\n 1.  Compile all\n     [Google Tsunami plugins](https://github.com/google/tsunami-security-scanner-plugins/tree/master/google)\n     and move all plugin `jar` files into `$HOME/tsunami/plugins` directory.\n 1.  Compile the Tsunami scanner Fat Jar file and move it into `$HOME/tsunami`\n     directory.\n 1.  Move the `tsunami.yaml` example config into `$HOME/tsunami` directory.\n 1.  Print example Tsunami command for scanning `127.0.0.1` using the previously\n     generated artifacts.\n\n#### Advanced Configuration with Callback Server and Python Language Server\n\n 1.  execute the following command:\n\n     ```\n     bash -c \"$(curl -sfL https://raw.githubusercontent.com/google/tsunami-security-scanner/master/quick_start_advanced.sh)\"\n     ```\n\n### Docker install\n\n1.  start a vulnerable application that can be identified by Tsunami, e.g. an\n    unauthenticated Jupyter Notebook server. The easiest way is to use a docker\n    image:\n\n    ```shell\n    docker run --name unauthenticated-jupyter-notebook -p 8888:8888 -d jupyter/base-notebook start-notebook.sh --NotebookApp.token=''\n    ```\n\n1.  build the docker image for Tsunami:\n\n    ```shell\n    docker build -t tsunami .\n    ```\n\n1.  run the Tsunami image. The logs can be saved to the host machine by mounting\n    a volume:\n\n    ```shell\n    docker run --network=\"host\" -v \"$(pwd)/logs\":/usr/tsunami/logs tsunami\n    ```\n\n1.  debugging issues with Tsunami container. The tsunami container is based on\n    Debian. To run debug tools simply exec into the container and install them:\n\n    ```shell\n    docker exec -it tsunami bash\n    ```\n\n## Contributing\n\nRead how to [contribute to Tsunami](docs/contribute/contributing.md).\n\n## License\n\nTsunami is released under the [Apache 2.0 license](LICENSE).\n\n```\nCopyright 2019 Google Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n\n## Disclaimers\n\nTsunami is not an official Google product.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoogle%2Ftsunami-security-scanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgoogle%2Ftsunami-security-scanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoogle%2Ftsunami-security-scanner/lists"}