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
32 lines
685 B
YAML
32 lines
685 B
YAML
id: api-blockchain
|
|
|
|
info:
|
|
name: Blockchain API Test
|
|
author: daffainfo
|
|
severity: info
|
|
reference:
|
|
- https://api.blockchain.com/v3/#/
|
|
- https://github.com/daffainfo/all-about-apikey/blob/main/Cryptocurrency/Blockchain.md
|
|
classification:
|
|
cwe-id: CWE-200
|
|
tags: token-spray,blockchain
|
|
|
|
self-contained: true
|
|
requests:
|
|
- raw:
|
|
- |
|
|
GET https://api.blockchain.com/v3/exchange/accounts HTTP/1.1
|
|
Host: api.blockchain.com
|
|
X-API-Token: {{token}}
|
|
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- '"currency"'
|
|
- '"balance"'
|
|
- '"available"'
|
|
condition: and
|
|
|
|
# Enhanced by cs on 2022/02/28
|