2024-03-09 14:23:42 +00:00
|
|
|
id: smb-default-creds
|
|
|
|
|
|
|
|
info:
|
2024-04-01 06:01:06 +00:00
|
|
|
name: SMB Default Credential - Bruteforce
|
2024-03-09 14:23:42 +00:00
|
|
|
author: pussycat0x
|
|
|
|
severity: high
|
|
|
|
description: |
|
|
|
|
Attempts to guess username/password combinations over SMB.
|
|
|
|
reference:
|
|
|
|
- https://nmap.org/nsedoc/scripts/smb-brute.html
|
|
|
|
metadata:
|
|
|
|
verified: true
|
2024-03-23 09:28:19 +00:00
|
|
|
max-request: 9
|
2024-03-09 14:23:42 +00:00
|
|
|
shodan-query: "port:445"
|
2024-06-07 10:04:29 +00:00
|
|
|
product: dionaea
|
|
|
|
vendor: dionaea
|
2024-04-01 06:39:13 +00:00
|
|
|
tags: js,network,smb,enum,default,bruteforce
|
2024-07-10 12:08:01 +00:00
|
|
|
|
2024-03-09 14:23:42 +00:00
|
|
|
javascript:
|
2024-07-10 12:08:01 +00:00
|
|
|
- pre-condition: |
|
|
|
|
isPortOpen(Host,Port);
|
|
|
|
code: |
|
2024-03-09 14:23:42 +00:00
|
|
|
var m = require("nuclei/smb");
|
2024-03-15 06:18:12 +00:00
|
|
|
var c = new m.SMBClient();
|
2024-03-09 14:23:42 +00:00
|
|
|
var response = c.ListShares(Host, Port, User, Pass);
|
|
|
|
response;
|
|
|
|
|
|
|
|
args:
|
|
|
|
Host: "{{Host}}"
|
|
|
|
Port: "445"
|
|
|
|
User: "{{usernames}}"
|
|
|
|
Pass: "{{passwords}}"
|
|
|
|
|
|
|
|
attack: clusterbomb
|
|
|
|
payloads:
|
|
|
|
usernames:
|
|
|
|
- 'admin'
|
|
|
|
- 'administrator'
|
|
|
|
- 'guest'
|
|
|
|
passwords:
|
|
|
|
- 'admin'
|
|
|
|
- 'password'
|
|
|
|
- 'guest'
|
|
|
|
|
|
|
|
stop-at-first-match: true
|
|
|
|
matchers:
|
|
|
|
- type: dsl
|
|
|
|
dsl:
|
|
|
|
- 'response != "[]"'
|
|
|
|
- 'success == true'
|
|
|
|
condition: and
|
2024-07-10 12:45:27 +00:00
|
|
|
# digest: 4a0a0047304502210086cb1464c3d36a47f2e711bf17c506ff32e1c12d20eab783ebac596af3295d2e022016c2ffe75250f83620245fcdcdf1890193fa562e11436fff29e4fddba1f7b6e9:922c64590222798bb761d5b6d8e72950
|