diff --git a/searchsploit b/searchsploit index 166ae4764..13e07a9a1 100755 --- a/searchsploit +++ b/searchsploit @@ -9,9 +9,15 @@ TAGS= SCASE='-i' VERBOSE=0 -# if files.csv is in the searchsploit path, use that -if [ -f "$( dirname $0 )/files.csv" ]; then - csvpath="$( dirname $0 )/files.csv" +# if files.csv is in the searchsploit source path, use that +scriptsrc=$0 +while [ -h $scriptsrc ]; do + scriptsrc=$(readlink $scriptsrc) + [[ $scriptsrc != /* ]] && scriptsrc="$( cd -P $( dirname $scriptsrc ) && pwd )/$scriptsrc" +done +progdir="$( cd -P "$( dirname "$scriptsrc" )" && pwd )" +if [ -f "$progdir/files.csv" ]; then + csvpath="$progdir/files.csv" fi # usage info