Files
freeCodeCamp/curriculum/challenges/english/09-information-security/python-for-penetration-testing/developing-an-nmap-scanner-part-2.md
Oliver Eyton-Williams 0bd52f8bd1 Feat: add new Markdown parser (#39800)
and change all the challenges to new `md` format.
2020-11-27 10:02:05 -08:00

389 B

id, title, challengeType, videoId
id title challengeType videoId
5ea9997bbec2e9bc47e94db2 Developing an Nmap Scanner part 2 11 a98PscnUsTg

--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