mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-12 21:53:39 +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>
26 lines
581 B
YAML
26 lines
581 B
YAML
id: api-alchemy
|
|
|
|
info:
|
|
name: Alchemy API Test
|
|
author: daffainfo
|
|
severity: info
|
|
reference:
|
|
- https://docs.alchemy.com/alchemy/
|
|
- https://github.com/daffainfo/all-about-apikey/blob/main/Cryptocurrency/Alchemy.md
|
|
tags: token-spray,alchemy
|
|
|
|
self-contained: true
|
|
requests:
|
|
- method: POST
|
|
path:
|
|
- "https://eth-mainnet.alchemyapi.io/v2/{{token}}"
|
|
body: '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":0}'
|
|
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- '"id":'
|
|
- '"result":'
|
|
condition: and
|