37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
id: smb-shares
|
|
|
|
info:
|
|
name: SMB Shares - Enumeration
|
|
author: pussycat0x
|
|
severity: low
|
|
description: |
|
|
Attempts to list shares using the srvsvc.NetShareEnumAll MSRPC function and retrieve more information about them using srvsvc.NetShareGetInfo. If access to those functions is denied, a list of common share names are checked.
|
|
reference:
|
|
- https://nmap.org/nsedoc/scripts/smb-enum-shares.html
|
|
metadata:
|
|
verified: true
|
|
max-request: 1
|
|
shodan-query: port:445
|
|
product: dionaea
|
|
vendor: dionaea
|
|
tags: js,network,smb,enum
|
|
javascript:
|
|
- pre-condition: |
|
|
isPortOpen(Host,Port);
|
|
code: |
|
|
var m = require("nuclei/smb");
|
|
var c = m.SMBClient();
|
|
var response = c.ListShares(Host, Port, User, Pass);
|
|
Export(response);
|
|
|
|
args:
|
|
Host: "{{Host}}"
|
|
Port: "445"
|
|
User: "test"
|
|
Pass: "test"
|
|
|
|
extractors:
|
|
- type: json
|
|
json:
|
|
- '.[]'
|
|
# digest: 4a0a00473045022100ac8f9fd001b61f68f2bb3b4cf7567ff25af89c95c1a993d2ca4d3af4f2d8bfd20220610e8f2d46ae1d324c92d9396069ba130aa5542d034a46524c904ec1bd426034:922c64590222798bb761d5b6d8e72950 |