We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ebbcb8 commit 7044824Copy full SHA for 7044824
1 file changed
tools/tsunami-scanner.md
@@ -0,0 +1,25 @@
1
+`docker pull ghcr.io/google/tsunami-scanner-full`
2
+
3
+# Run the image
4
+`docker run -it --rm ghcr.io/google/tsunami-scanner-full bash`
5
6
+# If you want to use Python plugins
7
+```
8
+tsunami-py-server >/tmp/py_server.log 2>&1 &
9
+or
10
+tsunami-py-server --ip=0.0.0.0 --port=34567 >/tmp/py_server.log 2>&1 &
11
12
+# If you want to use the callback server
13
14
+tsunami-tcs >/tmp/tcs_server.log 2>&1 &`
15
16
+tsunami-tcs --server_address=0.0.0.0 --server_port=61000 >/tmp/tcs_server.log 2>&1 &
17
18
19
+# Run Tsunami
20
+# Note: If you did not start the python server, omit the `--python-` arguments.
21
+` tsunami --ip-v4-target=127.0.0.1 --python-plugin-server-address=127.0.0.1 --python-plugin-server-port=34567`
22
23
24
25
0 commit comments