Files
nuclei-templates/javascript/enumeration/smb/smb-enum.yaml

86 lines
2.4 KiB
YAML
Raw Normal View History

2023-09-27 12:48:10 +05:30
id: smb-enum
info:
name: SMB - Enumeration
author: pussycat0x
severity: info
description: |
SMS Information Extraction is a sophisticated and efficient system designed to retrieve critical information from a remote computer or device through short text messages. This technology enables users to remotely access essential details about a computer, such as its operating system (OS) version, computer name, and hostname,
all via SMS communication.
reference:
- https://nmap.org/nsedoc/scripts/smb-security-mode.html
metadata:
verified: true
max-request: 1
shodan-query: port:445
2025-05-27 02:29:19 +00:00
product: dionaea
vendor: dionaea
tags: js,network,smb,enum,discovery
2023-09-27 12:48:10 +05:30
javascript:
2024-07-10 17:38:01 +05:30
- pre-condition: |
isPortOpen(Host,Port);
code: |
2023-09-27 12:48:10 +05:30
var m = require("nuclei/smb");
var c = m.SMBClient();
var response = c.ListSMBv2Metadata(Host, Port);
2024-02-29 13:35:22 +05:30
Export(response);
2023-09-27 12:48:10 +05:30
args:
Host: "{{Host}}"
Port: "445"
2023-11-23 22:39:06 +05:30
matchers:
- type: dsl
dsl:
- "len(OSVersion) != 0"
- "len(NetBIOSComputerName) != 0"
- "len(NetBIOSDomainName) != 0"
- "len(DNSComputerName) != 0"
- "len(DNSDomainName) != 0"
- "len(ForestName) != 0"
2023-09-27 12:48:10 +05:30
extractors:
- type: json
2023-11-23 22:39:06 +05:30
internal: true
2023-09-27 12:48:10 +05:30
name: OSVersion
json:
- '.OSVersion'
- type: json
2023-11-23 22:39:06 +05:30
internal: true
2023-09-27 12:48:10 +05:30
name: NetBIOSComputerName
json:
- '.NetBIOSComputerName'
- type: json
2023-11-23 22:39:06 +05:30
internal: true
2023-09-27 12:48:10 +05:30
name: NetBIOSDomainName
json:
- '.NetBIOSDomainName'
- type: json
2023-11-23 22:39:06 +05:30
internal: true
2023-09-27 12:48:10 +05:30
name: DNSComputerName
json:
- '.DNSComputerName'
- type: json
2023-11-23 22:39:06 +05:30
internal: true
2023-09-27 12:48:10 +05:30
name: DNSDomainName
json:
- '.DNSDomainName'
2023-11-23 22:39:06 +05:30
- type: json
internal: true
name: ForestName
json:
- '.ForestName'
- type: json
json:
- '"OSVersion: "+ .OSVersion '
- '"NetBIOSComputerName: "+ .NetBIOSComputerName '
- '"NetBIOSDomainName: "+ .NetBIOSDomainName '
- '"DNSComputerNamen: "+ .DNSComputerName '
- '"DNSComputerName: "+ .DNSComputerName '
- '"ForestName: "+ .ForestName'
2025-10-26 16:17:34 +00:00
# digest: 4b0a00483046022100fa90b5635656ddbf8a2754dd0cb81b6ca7ac483c244e15ce38d86eca61ef7419022100c230e0d7b10750b92a6d352792b7aec01c87844ec4866d64e2f89129dac82ae0:922c64590222798bb761d5b6d8e72950