Skip to content

Commit

Permalink
Merge pull request #865 from AnonymousWP/fix-installation-issues
Browse files Browse the repository at this point in the history
Fix installation issues when using Docker Compose
  • Loading branch information
yogeshojha committed Apr 5, 2023
2 parents f597d21 + 1cdb039 commit badde2e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 3 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ services:
- celery
- celery-beat
networks:
- rengine_network
rengine_network:
aliases:
- rengine

tor:
image: peterdavehello/tor-socks-proxy
Expand Down
2 changes: 1 addition & 1 deletion web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ RUN GO111MODULE=on go install -v -v github.com/bp0lr/gauplus@latest

RUN GO111MODULE=on go install -v github.com/jaeles-project/gospider@latest

RUN go install -v github.com/OWASP/Amass/v3/...@latest
RUN go install -v github.com/owasp-amass/amass/v3/...@latest

RUN go install -v github.com/ffuf/ffuf@latest

Expand Down
10 changes: 5 additions & 5 deletions web/fixtures/external_tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,16 @@
- model: scanEngine.installedexternaltool
pk: 6
fields:
logo_url: https://raw.githubusercontent.com/OWASP/Amass/master/images/amass_logo.png
logo_url: https://raw.githubusercontent.com/owasp-amass/amass/master/images/amass_logo.png
name: amass
description: The OWASP Amass Project performs network mapping of attack surfaces
and external asset discovery using open source information gathering and active
reconnaissance techniques.
github_url: https://github.com/OWASP/Amass
license_url: https://github.com/OWASP/Amass/blob/master/LICENSE
github_url: https://github.com/owasp-amass/amass
license_url: https://github.com/owasp-amass/amass/blob/master/LICENSE
version_lookup_command: amass -version
update_command: go install -v github.com/OWASP/Amass/v3/...@latest
install_command: go install -v github.com/OWASP/Amass/v3/...@latest
update_command: go install -v github.com/owasp-amass/amass/v3/...@latest
install_command: go install -v github.com/owasp-amass/amass/v3/...@latest
version_match_regex: v(\d+\.)?(\d+\.)?(\*|\d+)
is_default: true
is_subdomain_gathering: true
Expand Down
2 changes: 1 addition & 1 deletion web/scanEngine/templates/scanEngine/settings/tool.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h4 class="header-title">Current Subfinder Configuration</h4>
<div class="card-body">
<h4 class="header-title">Amass</h4>
<p>
This section lets you modify <a href="https://github.com/OWASP/Amass/" class="text-primary" target="_blank">Amass</a> config file. You can find more information about the <a href="https://github.com/OWASP/Amass/blob/master/examples/config.ini" class="text-primary" target="_blank">Amass config here.</a><br>
This section lets you modify <a href="https://github.com/owasp-amass/amass/" class="text-primary" target="_blank">Amass</a> config file. You can find more information about the <a href="https://github.com/owasp-amass/amass/blob/master/examples/config.ini" class="text-primary" target="_blank">Amass config here.</a><br>
<span class="text-danger">Please note that only YAML config is supported.</span>
</p>
<form method="post" enctype="multipart/form-data" id="amass-config-form">
Expand Down

0 comments on commit badde2e

Please sign in to comment.