mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-04 09:43:40 +08:00
* Add 27 workflow templates * fixed Artifactory workflow * Fixed Jetty workflow * Fixed Moodle workflow * Fixed Zabbix workflow * Fixed DedeCMS workflow * Fixed OFBiz workflow * Fixed rConfig workflow * Tag update for R-SeeNet workflow * Add 3 token-spray templates * format fixes Co-authored-by: Sandeep Singh <sandeep@projectdiscovery.io>
28 lines
641 B
YAML
28 lines
641 B
YAML
id: api-bitcoinaverage
|
|
|
|
info:
|
|
name: BitcoinAverage API Test
|
|
author: daffainfo
|
|
severity: info
|
|
reference:
|
|
- https://apiv2.bitcoinaverage.com/
|
|
- https://github.com/daffainfo/all-about-apikey/blob/main/Cryptocurrency/BitcoinAverage.md
|
|
tags: token-spray,bitcoinaverage
|
|
|
|
self-contained: true
|
|
requests:
|
|
- raw:
|
|
- |
|
|
GET https://apiv2.bitcoinaverage.com/exchanges/ticker/bitstamp HTTP/1.1
|
|
Host: apiv2.bitcoinaverage.com
|
|
x-ba-key: {{token}}
|
|
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- '"name"'
|
|
- '"display_name"'
|
|
- '"url"'
|
|
condition: and
|