diff --git a/debian/postinst b/debian/postinst index d2255593c1367de5c8bd3b027aaab6d7e5f6cbd7..82463757c4130872126929297b7579565f1debcf 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 a154e209881bba285d6b21bed47fe27f56714e9f..d4733512b4fdecd895478d571c5947c3eafd66fa 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