mirror of
https://github.com/AbdullahRizwan101/CTF-Writeups
synced 2024-11-22 12:03:03 +00:00
22 lines
322 B
Markdown
22 lines
322 B
Markdown
|
# 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
|
||
|
```
|
||
|
|