Skip to content

Commit

Permalink
Added explicit reference to provider.json for inception, and fixed co…
Browse files Browse the repository at this point in the history
…mment typo.
  • Loading branch information
bellma101 committed Mar 29, 2019
1 parent ee668b1 commit a762c6b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions chomp-scan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ function run_sublist3r() {
}

function run_amass() {
# Call with domain as $1 anbd wordlist as $2
# Call with domain as $1 and wordlist as $2

echo -e "$GREEN""[i]$BLUE Scanning $1 with amass.""$NC";
echo -e "$GREEN""[i]$ORANGE Command: amass -d $1 -w $2 -ip -rf resolvers.txt -active -o $WORKING_DIR/amass-output.txt -min-for-recursive 3 -bl $BLACKLIST""$NC";
Expand Down Expand Up @@ -1496,7 +1496,7 @@ function run_inception() {
# Run inception
mkdir "$WORKING_DIR"/inception;
START=$(date +%s);
"$INCEPTION" -d "$3" -v | tee "$WORKING_DIR"/inception/inception-output.txt;
"$INCEPTION" -d "$3" -v -provider wordlists/provider.json | tee "$WORKING_DIR"/inception/inception-output.txt;
END=$(date +%s);
DIFF=$(( END - START ));
echo -e "$GREEN""[i]$BLUE Inception took $DIFF seconds to run.""$NC";
Expand All @@ -1506,7 +1506,8 @@ function run_inception() {
# Run inception
mkdir "$WORKING_DIR"/inception;
START=$(date +%s);
"$INCEPTION" -d "$3" -v | tee "$WORKING_DIR"/inception/inception-output.txt;
"$INCEPTION" -d "$3" -v -provider wordlists/provider.json | tee "$WORKING_DIR"/inception/inception-output.txt;

END=$(date +%s);
DIFF=$(( END - START ));
echo -e "$GREEN""[i]$BLUE Inception took $DIFF seconds to run.""$NC";
Expand Down

0 comments on commit a762c6b

Please sign in to comment.