Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix installation issues #3

Merged
merged 3 commits into from
Apr 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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