From 556912984f0c2d2d940bd85374957bb912c8042b Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Wed, 18 Mar 2026 15:08:22 +0100 Subject: updated entries in readme, nvchecker and setup script. --- setup.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'setup.sh') diff --git a/setup.sh b/setup.sh index c68429c..cff87f3 100644 --- a/setup.sh +++ b/setup.sh @@ -6,9 +6,7 @@ if [[ $EUID -ne 0 ]]; then fi # make sure we have a wordlists directory -if [[ ! -d /usr/share/wordlists ]]; then - mkdir -p /usr/share/wordlists -fi +[[ ! -d /usr/share/wordlists ]] && mkdir -p /usr/share/wordlists || true # add a link to the metasploit wordlists ln -s /opt/metasploit-framework/embedded/framework/data/wordlists /usr/share/wordlists/metasploit @@ -16,4 +14,5 @@ ln -s /opt/metasploit-framework/embedded/framework/data/wordlists /usr/share/wor # add a link to the seclists ln -s /usr/share/seclists /usr/share/wordlists/seclists - +# add seclists webshells to generic webshells +[[ -d /usr/share/webshells && -d /usr/share/seclists/Web-Shells ]] && ln -s /usr/share/seclists/Web-Shells /usr/share/webshells/seclists || true -- cgit v1.2.3