Create rdp-detect.yaml

This commit is contained in:
pussycat0x
2025-03-29 02:14:35 +05:30
committed by GitHub
parent 67fb072f54
commit 153375e87c

View File

@@ -0,0 +1,29 @@
id: rdp-detect
info:
name: RDP - Detection
author: pussycat0x
severity: info
description: Detects if a target host is running Remote Desktop Protocol (RDP) service on port 3389. This template helps identify Windows systems that have RDP enabled, which is commonly used for remote administration but can also be a security risk if not properly secured.
metadata:
verified: true
max-request: 1
shodan-query: port:"3389"
tags: js,network,rdp,info,enum
javascript:
- code: |
let m = require('nuclei/rdp');
let response = m.IsRDP(Host,Port);
Export(response);
args:
Host: "{{Host}}"
Port: "3389"
matchers:
- type: dsl
dsl:
- 'success == true'
- 'contains(response, "\"IsRDP\": true")'
condition: and