2020-04-29 20:41:51 -04:00
|
|
|
---
|
|
|
|
id: 5ea9997bbec2e9bc47e94db1
|
|
|
|
title: Developing an Nmap Scanner part 1
|
|
|
|
challengeType: 11
|
|
|
|
videoId: jYk9XaGoAnk
|
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
|
|
|
<section id='description'>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
question:
|
2020-05-28 22:40:36 +09:00
|
|
|
text: |
|
|
|
|
What is the correct command to install the Python 3 version of the `python-nmap` library?
|
|
|
|
|
2020-04-29 20:41:51 -04:00
|
|
|
answers:
|
2020-05-28 22:40:36 +09:00
|
|
|
- |
|
|
|
|
`sudo apt install python-nmap`
|
|
|
|
- |
|
|
|
|
`pip install python-nmap`
|
|
|
|
- |
|
|
|
|
`pip3 install python-nmap`
|
2020-04-29 20:41:51 -04:00
|
|
|
solution: 3
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|