Skip to content

Commit 0b1b123

Browse files
committed
update deps
1 parent e54b862 commit 0b1b123

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ Whether you're a seasoned professional or just getting started, Kitsec provides
3232

3333
### 📦 Installation
3434

35+
36+
37+
<details>
38+
<summary>Install Docker</summary>
39+
3540
Install docker-compose and docker on your system:
3641

3742
````
@@ -44,6 +49,12 @@ or
4449
$ brew install docker-compose docker
4550
````
4651

52+
</details>
53+
54+
<details>
55+
<summary>Run using Docker </summary>
56+
57+
4758
To build the docker image run:
4859

4960
````
@@ -56,7 +67,35 @@ To run kitsec within the docker container:
5667
docker run -it kitsec python src/kitsec.py <command> <options>
5768
````
5869

70+
</details>
71+
72+
<details>
73+
<summary>Run using Python </summary>
74+
75+
Install dependencies:
76+
77+
````
78+
pip install -r requirements.txt
79+
````
80+
81+
82+
Install go dependencies:
83+
84+
````
85+
python kitsec.py deps
86+
````
87+
88+
Run kitsec:
89+
90+
````
91+
python kitsec.py <command> <options>
92+
````
93+
94+
95+
</details>
96+
5997
<details>
98+
6099
<summary>tips</summary>
61100

62101
``````

src/dependencies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ def install_dependencies():
88
subprocess.run(['go', 'install', '-v', 'github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest'])
99

1010
# Install assetfinder
11-
subprocess.run(['go', 'install', 'github.com/tomnomnom/assetfinder@latest'])
11+
# subprocess.run(['go', 'install', 'github.com/tomnomnom/assetfinder@latest'])
1212

1313
# Install waybackurls
14-
subprocess.run(['go', 'install', 'github.com/tomnomnom/waybackurls@latest'])
14+
# subprocess.run(['go', 'install', 'github.com/tomnomnom/waybackurls@latest'])
1515

1616
# Install Amass
1717
subprocess.run(['go', 'install', '-v', 'github.com/OWASP/Amass/v3/...@master'])

0 commit comments

Comments
 (0)