hacktricks/network-services-pentesting/10000-network-data-management-protocol-ndmp.md

81 lines
4 KiB
Markdown
Raw Normal View History

2022-04-28 16:01:33 +00:00
<details>
2023-04-25 18:35:28 +00:00
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
- Você trabalha em uma **empresa de segurança cibernética**? Você quer ver sua **empresa anunciada no HackTricks**? ou você quer ter acesso à **última versão do PEASS ou baixar o HackTricks em PDF**? Confira os [**PLANOS DE ASSINATURA**](https://github.com/sponsors/carlospolop)!
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
- Descubra [**A Família PEASS**](https://opensea.io/collection/the-peass-family), nossa coleção exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
- Adquira o [**swag oficial do PEASS & HackTricks**](https://peass.creator-spring.com)
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
- **Junte-se ao** [**💬**](https://emojipedia.org/speech-balloon/) [**grupo do Discord**](https://discord.gg/hRep4RUj7f) ou ao [**grupo do telegram**](https://t.me/peass) ou **siga-me** no **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
- **Compartilhe suas técnicas de hacking enviando PRs para o [repositório hacktricks](https://github.com/carlospolop/hacktricks) e [hacktricks-cloud repo](https://github.com/carlospolop/hacktricks-cloud)**.
2022-04-28 16:01:33 +00:00
</details>
2023-06-06 18:56:34 +00:00
# **Informações do Protocolo**
2023-06-06 18:56:34 +00:00
**NDMP**, ou **Network Data Management Protocol**, é um protocolo destinado a transportar dados entre dispositivos de armazenamento conectados em rede \([NAS](https://en.wikipedia.org/wiki/Network-attached_storage)\) e dispositivos de [backup](https://en.wikipedia.org/wiki/Backup). Isso elimina a necessidade de transportar os dados através do próprio servidor de backup, aumentando assim a velocidade e removendo a carga do servidor de backup.
De [Wikipedia](https://en.wikipedia.org/wiki/NDMP).
2023-06-06 18:56:34 +00:00
**Porta padrão:** 10000
```text
PORT STATE SERVICE REASON VERSION
10000/tcp open ndmp syn-ack Symantec/Veritas Backup Exec ndmp
```
2023-06-06 18:56:34 +00:00
# Enumeração
## **NDMP Enumeration**
## **Enumeração NDMP**
### **Port Scanning**
2023-06-06 18:56:34 +00:00
### **Varredura de Portas**
We can start by scanning the target host for open ports using tools like Nmap or Masscan.
Podemos começar escaneando o host alvo em busca de portas abertas usando ferramentas como Nmap ou Masscan.
```bash
2023-06-06 18:56:34 +00:00
nmap -p 10000 <target_ip>
```
2023-06-06 18:56:34 +00:00
### **Banner Grabbing**
2023-06-06 18:56:34 +00:00
### **Banner Grabbing**
2023-06-06 18:56:34 +00:00
Once we have identified the port 10000 open, we can use banner grabbing to identify the NDMP service running on the target host.
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
Uma vez que identificamos a porta 10000 aberta, podemos usar o banner grabbing para identificar o serviço NDMP em execução no host alvo.
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
```bash
nc -nv <target_ip> 10000
```
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
### **NDMP Enumeration using ndmp-tool**
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
### **Enumeração NDMP usando ndmp-tool**
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
We can use the ndmp-tool to enumerate the NDMP service running on the target host.
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
Podemos usar o ndmp-tool para enumerar o serviço NDMP em execução no host alvo.
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
```bash
ndmp-tool <target_ip> -p 10000 -e
```
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
The above command will enumerate the NDMP service and list all the supported vendors and their respective versions.
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
O comando acima irá enumerar o serviço NDMP e listar todos os fornecedores suportados e suas respectivas versões.
```bash
nmap -n -sV --script "ndmp-fs-info or ndmp-version" -p 10000 <IP> #Both are default scripts
```
## Shodan
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
`ndmp`
2022-04-28 16:01:33 +00:00
2023-06-06 18:56:34 +00:00
O protocolo NDMP (Network Data Management Protocol) é um protocolo de gerenciamento de dados de rede que permite que um servidor de backup se comunique com dispositivos de armazenamento de backup para realizar backups de dados. O Shodan pode ser usado para encontrar dispositivos que usam o protocolo NDMP e, assim, identificar possíveis alvos para ataques de invasão.