40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
|
id: openethereum-server
|
||
|
|
||
|
info:
|
||
|
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/
|
||
|
metadata:
|
||
|
shodan-query: product:OpenEthereum
|
||
|
tags: tech,openethereum,ethereum,web3,blockchain
|
||
|
|
||
|
http:
|
||
|
- raw:
|
||
|
- |
|
||
|
POST / HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
Content-Type: application/json
|
||
|
Content-Length: 66
|
||
|
|
||
|
{"method":"web3_clientVersion","params":[],"id":1,"jsonrpc":"2.0"}
|
||
|
|
||
|
matchers:
|
||
|
- type: dsl
|
||
|
dsl:
|
||
|
- 'status_code == 200'
|
||
|
- 'contains(all_headers, "application/json")'
|
||
|
- 'contains(body, "OpenEthereum")'
|
||
|
condition: and
|
||
|
|
||
|
extractors:
|
||
|
- type: regex
|
||
|
part: body
|
||
|
group: 1
|
||
|
regex:
|
||
|
- '(v[0-9a-z-_.]+)'
|