Skip to content

Commit

Permalink
Fixed typos in time taken output.
Browse files Browse the repository at this point in the history
  • Loading branch information
bellma101 committed Mar 7, 2019
1 parent 564fd06 commit 8e8f890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chomp-scan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ function run_inception() {
"$INCEPTION" -d "$3" -v | tee "$WORKING_DIR"/inception/inception-output.txt;
END=$(date +%s);
DIFF=$(( END - START ));
echo -e "$GREEN""[i]$BLUE Snallygaster took $DIFF seconds to run.""$NC";
echo -e "$GREEN""[i]$BLUE Inception took $DIFF seconds to run.""$NC";
fi
}

Expand Down Expand Up @@ -1549,7 +1549,7 @@ function run_wafw00f() {
done < "$2"
END=$(date +%s);
DIFF=$(( END - START ));
echo -e "$GREEN""[i]$BLUE whatweb took $DIFF seconds to run.""$NC";
echo -e "$GREEN""[i]$BLUE wafw00f took $DIFF seconds to run.""$NC";
else
echo -e "$GREEN""[i]$BLUE Running wafw00f against all $(wc -l "$2" | cut -d ' ' -f 1) discovered interesting domains.""$NC";
echo -e "$GREEN""[i]$BLUE Command: wafw00f $HTTP://$1 -a | tee $WORKING_DIR/wafw00f.""$NC";
Expand Down

0 comments on commit 8e8f890

Please sign in to comment.