mirror of
https://github.com/carlospolop/hacktricks
synced 2024-12-21 02:23:30 +00:00
80 lines
4 KiB
Markdown
80 lines
4 KiB
Markdown
<details>
|
|
|
|
<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>
|
|
|
|
- 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)!
|
|
|
|
- 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)
|
|
|
|
- Adquira o [**swag oficial do PEASS & HackTricks**](https://peass.creator-spring.com)
|
|
|
|
- **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)**.**
|
|
|
|
- **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)**.
|
|
|
|
</details>
|
|
|
|
|
|
# **Informações do Protocolo**
|
|
|
|
**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).
|
|
|
|
**Porta padrão:** 10000
|
|
```text
|
|
PORT STATE SERVICE REASON VERSION
|
|
10000/tcp open ndmp syn-ack Symantec/Veritas Backup Exec ndmp
|
|
```
|
|
# Enumeração
|
|
|
|
## **NDMP Enumeration**
|
|
|
|
## **Enumeração NDMP**
|
|
|
|
### **Port Scanning**
|
|
|
|
### **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
|
|
nmap -p 10000 <target_ip>
|
|
```
|
|
|
|
### **Banner Grabbing**
|
|
|
|
### **Banner Grabbing**
|
|
|
|
Once we have identified the port 10000 open, we can use banner grabbing to identify the NDMP service running on the target host.
|
|
|
|
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.
|
|
|
|
```bash
|
|
nc -nv <target_ip> 10000
|
|
```
|
|
|
|
### **NDMP Enumeration using ndmp-tool**
|
|
|
|
### **Enumeração NDMP usando ndmp-tool**
|
|
|
|
We can use the ndmp-tool to enumerate the NDMP service running on the target host.
|
|
|
|
Podemos usar o ndmp-tool para enumerar o serviço NDMP em execução no host alvo.
|
|
|
|
```bash
|
|
ndmp-tool <target_ip> -p 10000 -e
|
|
```
|
|
|
|
The above command will enumerate the NDMP service and list all the supported vendors and their respective versions.
|
|
|
|
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
|
|
|
|
`ndmp`
|
|
|
|
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.
|