CTF-Writeups/Active Directory/Enumeration/2- File servers , shares.md

22 lines
322 B
Markdown
Raw Normal View History

2021-12-07 12:41:40 +00:00
# Domain Enumeration finding file servers and shares on hosts
## PowerView commands
### Find shares on hosts in current domain
```
Invoke-ShareFinder -verbose
```
### Find sensitive files on computers in the domain
```
Invoke-FileFinder -Verbose
```
### Get all fileservers of the domain
```
Get-NetFileServer
```