nuclei-templates/http/technologies/openethereum-server-detect....

40 lines
1.0 KiB
YAML
Raw Normal View History

id: openethereum-server
info:
2022-08-20 04:57:56 +00:00
name: OpenEthereum JSON-RPC HTTP Server Detect
author: Nullfuzz
severity: info
description: |
OpenEthereum is the fastest, lightest, and most "secure" Ethereum client. By default OpenEthereum runs a JSON-RPC HTTP server on port 8545/TCP
reference:
- https://github.com/openethereum/openethereum
- https://openethereum.github.io/
2022-08-20 04:57:56 +00:00
metadata:
shodan-query: product:OpenEthereum
2022-08-25 09:12:01 +00:00
tags: tech,openethereum,ethereum,web3,blockchain
http:
- raw:
- |
POST / HTTP/1.1
Host: {{Hostname}}
Content-Type: application/json
Content-Length: 66
2022-08-20 04:57:56 +00:00
{"method":"web3_clientVersion","params":[],"id":1,"jsonrpc":"2.0"}
2022-08-20 04:57:56 +00:00
matchers:
- type: dsl
dsl:
2022-08-20 05:19:06 +00:00
- 'status_code == 200'
- 'contains(all_headers, "application/json")'
- 'contains(body, "OpenEthereum")'
condition: and
2022-08-20 04:57:56 +00:00
extractors:
- type: regex
part: body
group: 1
2022-08-20 04:57:56 +00:00
regex:
- '(v[0-9a-z-_.]+)'