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