> For the complete documentation index, see [llms.txt](https://hackerlab.gitbook.io/wiki.hackerlab.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hackerlab.gitbook.io/wiki.hackerlab.cz/infra-pentesting/nfs-enumeration.md).

# NFS Enumeration

## Identification

Nmap finds NFS service on TCP port 2049

```
2049/tcp  open  mountd        1-3 (RPC #100005)
```

## Tools

You can install NSF tools on Kali by

```
apt install libnfs-utils
```

```
showmount -e <IP>
showmount --exports <IP>
```

```
mkdir ./backups
mount -t nfs 10.129.229.68:/site_backups ./backups 
```

## Projects

{% embed url="<https://hacktricks.boitatech.com.br/pentesting/nfs-service-pentesting>" %}

{% embed url="<https://book.hacktricks.xyz/network-services-pentesting/nfs-service-pentesting>" %}

{% embed url="<https://vk9-sec.com/2049-tcp-nfs-enumeration/>" %}
