mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-08 11:43:17 +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>
27 lines
611 B
YAML
27 lines
611 B
YAML
id: api-binance
|
|
|
|
info:
|
|
name: Binance REST API
|
|
author: geeknik
|
|
severity: info
|
|
reference:
|
|
- https://github.com/binance/binance-spot-api-docs/blob/master/rest-api.md
|
|
- https://github.com/daffainfo/all-about-apikey/blob/main/Cryptocurrency/Binance.md
|
|
tags: token-spray,binance
|
|
|
|
self-contained: true
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "https://api.binance.com/api/v3/historicalTrades"
|
|
headers:
|
|
X-MBX-APIKEY: "{{token}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- '"id":'
|
|
- '"price":'
|
|
- '"quoteQty":'
|
|
condition: and |