nuclei-templates/exposures/apis/wadl-api.yaml

51 lines
1.3 KiB
YAML
Raw Normal View History

2021-01-09 13:02:04 +00:00
id: wadl-api
2020-04-06 12:27:09 +00:00
info:
name: WADL API - Detect
2021-06-09 12:20:56 +00:00
author: 0xrudra,manuelbua
2020-08-03 21:52:00 +00:00
severity: info
2023-02-06 20:43:22 +00:00
description: WADL API was detected.
reference:
- https://github.com/dwisiswant0/wadl-dumper
- https://www.nopsec.com/leveraging-exposed-wadl-xml-in-burp-suite/
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N
cvss-score: 0.0
cwe-id: CWE-200
tags: exposure,api
2020-08-29 12:15:51 +00:00
2020-04-06 12:27:09 +00:00
requests:
- method: GET
2020-05-25 08:02:27 +00:00
path:
2020-04-06 12:27:09 +00:00
- "{{BaseURL}}/application.wadl"
- "{{BaseURL}}/application.wadl?detail=true"
- "{{BaseURL}}/api/application.wadl"
- "{{BaseURL}}/api/v1/application.wadl"
- "{{BaseURL}}/api/v2/application.wadl"
2021-09-02 17:27:55 +00:00
stop-at-first-match: true
2020-04-06 12:27:09 +00:00
matchers:
- name: http-get
type: word
words:
- "This is simplified WADL with user and core resources only"
2021-09-02 17:27:55 +00:00
- "http://jersey.java.net"
- "http://wadl.dev.java.net/2009/02"
2021-09-02 17:27:55 +00:00
- method: OPTIONS
path:
2021-01-13 07:31:46 +00:00
- "{{BaseURL}}"
- "{{BaseURL}}/api/v1"
- "{{BaseURL}}/api/v2"
stop-at-first-match: true
matchers:
- name: http-options
type: word
2020-05-25 08:02:27 +00:00
words:
2020-04-06 12:27:09 +00:00
- "This is simplified WADL with user and core resources only"
2021-09-02 17:27:55 +00:00
- "http://jersey.java.net"
2020-04-06 12:27:09 +00:00
- "http://wadl.dev.java.net/2009/02"
# Enhanced by mp on 2023/02/05