List of questions
Related questions
Question 76 - PT0-003 discussion
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'.
Your answer:
0 comments
Sorted by
Leave a comment first