mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-11 21:23:34 +08:00
* info field reorder * reference values refactored to list * added new lines after the id and before the protocols * removed extra new lines * split really long descriptions to multiple lines (part 1) * other minor fixes
28 lines
531 B
YAML
28 lines
531 B
YAML
id: api-postmark
|
|
|
|
info:
|
|
name: PostMark API Test
|
|
author: zzeitlin
|
|
severity: info
|
|
reference:
|
|
- https://postmarkapp.com/developer/api/overview
|
|
tags: token-spray,postmark
|
|
|
|
self-contained: true
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "https://api.postmarkapp.com/server"
|
|
headers:
|
|
Accept: application/json
|
|
X-Postmark-Server-Token: "{{token}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- '"ID":'
|
|
- '"Name":'
|
|
- '"ApiTokens":'
|
|
condition: and
|