Pre-Summer Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: force70

CompTIA PenTest+ Exam PT0-003 Question # 69 Topic 7 Discussion

CompTIA PenTest+ Exam PT0-003 Question # 69 Topic 7 Discussion

PT0-003 Exam Topic 7 Question 69 Discussion:
Question #: 69
Topic #: 7

A penetration tester creates a list of target domains that require further enumeration. The tester writes the following script to perform vulnerability scanning across the domains:

line 1: #!/usr/bin/bash

line 2: DOMAINS_LIST = " /path/to/list.txt "

line 3: while read -r i; do

line 4: nikto -h $i -o scan-$i.txt &

line 5: done

The script does not work as intended. Which of the following should the tester do to fix the script?


A.

Change line 2 to { " domain1 " , " domain2 " , " domain3 " , }.


B.

Change line 3 to while true; read -r i; do.


C.

Change line 4 to nikto $i | tee scan-$i.txt.


D.

Change line 5 to done < " $DOMAINS_LIST " .


Get Premium PT0-003 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.