From 2b419c9484d28b3b50f93e82b17feef85970108f Mon Sep 17 00:00:00 2001 From: g0tmi1k Date: Fri, 21 Jun 2019 19:20:36 +0100 Subject: [PATCH] Add seclists --- debian/postinst | 1 + debian/prerm | 1 + 2 files changed, 2 insertions(+) diff --git a/debian/postinst b/debian/postinst index d225559..8246375 100755 --- a/debian/postinst +++ b/debian/postinst @@ -10,6 +10,7 @@ if [ -d /usr/share/metasploit-framework/data/wordlists ]; then ln -sf /usr/share if [ -d /opt/metasploit/apps/pro/data/wordlists ]; then ln -sf /opt/metasploit/apps/pro/data/wordlists /usr/share/wordlists/metasploit-pro; fi if [ -d /usr/share/webslayer/wordlist ]; then ln -sf /usr/share/webslayer/wordlist /usr/share/wordlists/webslayer; fi if [ -d /usr/share/wfuzz/wordlist ]; then ln -sf /usr/share/wfuzz/wordlist /usr/share/wordlists/wfuzz; fi +if [ -d /usr/share/seclists ]; then ln -sf /usr/share/seclists /usr/share/wordlists/seclists; fi # Make symbolic links to individual files diff --git a/debian/prerm b/debian/prerm index a154e20..d473351 100755 --- a/debian/prerm +++ b/debian/prerm @@ -10,6 +10,7 @@ if [ -e /usr/share/wordlists/metasploit ]; then rm -rf /usr/share/wordlists/meta if [ -e /usr/share/wordlists/metasploit-pro ]; then rm -rf /usr/share/wordlists/metasploit-pro; fi if [ -e /usr/share/wordlists/webslayer ]; then rm -rf /usr/share/wordlists/webslayer; fi if [ -e /usr/share/wordlists/wfuzz ]; then rm -rf /usr/share/wordlists/wfuzz; fi +if [ -e /usr/share/wordlists/seclists ]; then rm -rf /usr/share/wordlists/seclists; fi # Remove the file symlinks made by postinst -- GitLab