File tree Expand file tree Collapse file tree 3 files changed +22
-4
lines changed Expand file tree Collapse file tree 3 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,13 @@ docker build -t kitsec .
65
65
To run kitsec within the docker container:
66
66
67
67
````
68
- docker run -it kitsec python core/kitsec/cli/main.py <command> <options>
68
+ docker run -it kitsec kitsec <command> <options>
69
+ ````
70
+
71
+ For example:
72
+
73
+ ````
74
+ docker run -it kitsec kitsec cve python -l 2
69
75
````
70
76
71
77
</details >
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ $ brew install docker-compose docker
56
56
<summary >Run using Docker </summary >
57
57
58
58
59
- To build the docker image run:
59
+ o build the docker image run:
60
60
61
61
````
62
62
docker build -t kitsec .
@@ -65,7 +65,13 @@ docker build -t kitsec .
65
65
To run kitsec within the docker container:
66
66
67
67
````
68
- docker run -it kitsec python core/kitsec/cli/main.py <command> <options>
68
+ docker run -it kitsec kitsec <command> <options>
69
+ ````
70
+
71
+ For example:
72
+
73
+ ````
74
+ docker run -it kitsec kitsec cve python -l 2
69
75
````
70
76
71
77
</details >
Original file line number Diff line number Diff line change @@ -26,7 +26,13 @@ WORKDIR /app
26
26
27
27
# Upgrade pip and install the kitsec package from TestPyPI
28
28
RUN pip install --upgrade pip
29
- RUN pip install kitsec==0.1.6rc3
29
+ RUN pip install kitsec
30
+
31
+ # Install subfinder
32
+ RUN go install github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest
33
+
34
+ # Install amass
35
+ RUN go install -v github.com/OWASP/Amass/v3/...@master
30
36
31
37
# Set the working directory to the parent directory of core
32
38
WORKDIR /app
You can’t perform that action at this time.
0 commit comments