2020-05-28 22:40:36 +09:00
|
|
|
---
|
|
|
|
id: 5ea9997bbec2e9bc47e94db2
|
|
|
|
title: Developing an Nmap Scanner part 2
|
|
|
|
challengeType: 11
|
|
|
|
videoId: a98PscnUsTg
|
2021-10-01 12:24:12 +08:00
|
|
|
bilibiliIds:
|
|
|
|
aid: 505526943
|
|
|
|
bvid: BV1Hg411c7oE
|
|
|
|
cid: 409034761
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: developing-an-nmap-scanner-part-2
|
2020-05-28 22:40:36 +09:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
|
|
|
Which of the following allows you to scan for UDP ports between 21 to 443?
|
|
|
|
|
|
|
|
## --answers--
|
|
|
|
|
|
|
|
`.scan(ip_addr, '21-443', '-v -sU')`
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
`.scan(ip_addr, '1-1024', '-v -sS')`
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
`.scan(ip_addr, '21-443', '-v -sS')`
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
1
|
2020-05-28 22:40:36 +09:00
|
|
|
|