CompTIA PenTest+ Exam PT0-003 Question # 22 Topic 3 Discussion

CompTIA PenTest+ Exam PT0-003 Question # 22 Topic 3 Discussion

PT0-003 Exam Topic 3 Question 22 Discussion:
Question #: 22
Topic #: 3

A penetration tester writes the following script to enumerate a 1724 network:

1 #!/bin/bash

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

3 ping -c1 192.168.1.$i

4 done

The tester executes the script, but it fails with the following error:

-bash: syntax error near unexpected token `ping'

Which of the following should the tester do to fix the error?


A.

Add do after line 2.


B.

Replace {1..254} with $(seq 1 254).


C.

Replace bash with tsh.


D.

Replace $i with ${i}.


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.