mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-25 14:35:26 +00:00
21 lines
316 B
YAML
21 lines
316 B
YAML
|
|
id: rsync-test
|
||
|
|
|
||
|
|
info:
|
||
|
|
name: Rsync Test
|
||
|
|
author: pdteam
|
||
|
|
severity: info
|
||
|
|
|
||
|
|
javascript:
|
||
|
|
- code: |
|
||
|
|
const rsync = require('nuclei/rsync');
|
||
|
|
rsync.IsRsync(Host, Port);
|
||
|
|
|
||
|
|
args:
|
||
|
|
Host: "{{Host}}"
|
||
|
|
Port: "873"
|
||
|
|
|
||
|
|
matchers:
|
||
|
|
- type: dsl
|
||
|
|
dsl:
|
||
|
|
- "success == true"
|
||
|
|
|