# Files and Shares

## Find Shares on Hosts in Current Domain

```powershell
Invoke-ShareFinder -Verbose
```

## Find Shares from other Domain

```powershell
Invoke-ShareFinder -Domain lab.local
```

## Exclude Default Shares

```powershell
Invoke-ShareFinder -ExcludeStandard
```

## Show only Shares the Current User Has Access to

```powershell
Invoke-ShareFinder -CheckShareAccess
```

## Find Sensitive Files on Computers

```powershell
Invoke-FileFinder -Verbose
```

## Get All Fileservers

```powershell
Get-NetFileServer
```

## Use Alternate Credentials when Searching for Files

```powershell
# Find-InterestingDomainShareFile == old Invoke-FileFinder
$Password = "PASSWORD" | ConvertTo-SecureString -AsPlainText -Force
$Credential = New-Object System.Management.Automation.PSCredential("DOMAIN\user",$Password)
Find-InterestingDomainShareFile -Domain Domain -Credential $Credential
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wiki.bufu-sec.com/active-directory/enumeration/files_and_shares.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
