rtcps 1.0.2

Rust TCP Scanner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import subprocess

container_name = "rust_tcp_scanner_ci"

try:
    subprocess.run(["docker", "--version"])
except: 
    print("Docker is not installed")
    exit(1)

subprocess.run(["docker", "build", ".", "-t", container_name])

subprocess.run(["docker", "run", container_name])

exit(0)