mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2026-02-01 00:03:15 +08:00
* adding min auth support * adding unauth list modules + auth list files in module * example * adding rsync test * bump go.mod --------- Co-authored-by: Dwi Siswanto <git@dw1.io>
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"
|
|
|