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

Exam PT0-003 All Questions
Exam PT0-003 All Questions

View all questions & answers for the PT0-003 exam

CompTIA PenTest+ PT0-003 Question # 107 Topic 11 Discussion

PT0-003 Exam Topic 11 Question 107 Discussion:
Question #: 107
Topic #: 11

A penetration tester wants to use the following Bash script to identify active servers on a network:

1 network_addr="192.168.1"

2 for h in {1..254}; do

3 ping -c 1 -W 1 $network_addr.$h > /dev/null

4 if [ $? -eq 0 ]; then

5 echo "Host $h is up"

6 else

7 echo "Host $h is down"

8 fi

9 done

Which of the following should the tester do to modify the script?


A.

Change the condition on line 4.


B.

Add 2>&1 at the end of line 3.


C.

Use seq on the loop on line 2.


D.

Replace $h with ${h} on line 3.


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.