We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15b0b49 commit 82464c3Copy full SHA for 82464c3
ronin-install.sh
@@ -450,6 +450,14 @@ function auto_install_masscan()
450
{
451
if ! command -v masscan >/dev/null; then
452
log "Installing masscan ..."
453
+ log $os_platform
454
+ log "$(-f /etc/SuSE-release)"
455
+ if [[ "$os_platform" == "Linux" ]] && [[ -f /etc/SuSE-release ]]; then
456
+ log "TEST"
457
+ $sudo zypper addrepo https://download.opensuse.org/repositories/security/openSUSE_Tumbleweed/security.repo || return $?
458
+ $sudo zypper refresh || return $?
459
+ fi
460
+
461
install_packages masscan || \
462
warn "Failed to install masscan. Proceeding anyways ..."
463
fi
0 commit comments