> For the complete documentation index, see [llms.txt](https://kaelenvs-cybersecurity-notes.gitbook.io/kaelens-tryhackme-experience/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kaelenvs-cybersecurity-notes.gitbook.io/kaelens-tryhackme-experience/learning-paths/comptia-pentest+/penetration-testing-tools/nmap/practical.md).

# Practical

The first thing I did was "ping 10.10.199.213" which sent several ICMP packets to the target, 10.10.199.213. The target did not reply to the ping requests.&#x20;

To perform an Xmas scan (-sX), I used the command "nmap -sX -pN 10.10.199.213" to show the number of ports that were open or filtered, which in this case was 999.&#x20;

Next, I used the command shown below.&#x20;

<figure><img src="/files/4rcCoNtx7RFsc7ZdfdNg" alt=""><figcaption><p>sudo nmap -sX -vv -Pn 10.10.199.213</p></figcaption></figure>

This command provided more specifics as to why the Xmas scan showed 999 ports that were either open or filtered, that being that there was no response.&#x20;

Next, I performed a TCP SYN scan (-sS) specifiying the range 0-5000 so that I could scan the first 5000 ports to see which ones were open. There were 5 ports open.&#x20;


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kaelenvs-cybersecurity-notes.gitbook.io/kaelens-tryhackme-experience/learning-paths/comptia-pentest+/penetration-testing-tools/nmap/practical.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
