-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprobes.yaml
More file actions
88 lines (75 loc) · 2.44 KB
/
Copy pathprobes.yaml
File metadata and controls
88 lines (75 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# DePIN Scanner - Default Probe Configurations
# Ordered probes for service detection and banner grabbing
- name: HTTP_GET_ROOT
payload: "GET / HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n"
ports: any
requires_ssl: false
- name: HTTPS_GET_ROOT
payload: "GET / HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n"
ports: [443, 8443, 9443]
requires_ssl: true
- name: HTTP_GET_METRICS
payload: "GET /metrics HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n"
ports: [9184, 8080, 3000, 9090, 9100, 8090]
requires_ssl: false
- name: HTTP_GET_STATUS
payload: "GET /status HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n"
ports: [8080, 3000, 9090, 8090]
requires_ssl: false
- name: HTTP_GET_VERSION
payload: "GET /version HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n"
ports: [8080, 3000, 9090, 8090]
requires_ssl: false
- name: JSONRPC_clientVersion
payload: |
POST / HTTP/1.1\r
Host: localhost\r
Content-Type: application/json\r
Content-Length: 83\r
Connection: close\r
\r
{"jsonrpc":"2.0","method":"clientVersion","params":[],"id":1}
ports: [8545, 8546, 9933, 1234, 8080]
requires_ssl: false
- name: JSONRPC_web3_clientVersion
payload: |
POST / HTTP/1.1\r
Host: localhost\r
Content-Type: application/json\r
Content-Length: 89\r
Connection: close\r
\r
{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":1}
ports: [8545, 8546]
requires_ssl: false
- name: SUI_RPC_getVersion
payload: |
POST / HTTP/1.1\r
Host: localhost\r
Content-Type: application/json\r
Content-Length: 72\r
Connection: close\r
\r
{"jsonrpc":"2.0","method":"sui_getRpcApiVersion","params":[],"id":1}
ports: [9000, 8080, 1234]
requires_ssl: false
- name: DOCKER_API_VERSION
payload: "GET /version HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n"
ports: [2375, 2376]
requires_ssl: false
- name: DOCKER_API_INFO
payload: "GET /info HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n"
ports: [2375, 2376]
requires_ssl: false
- name: GRAFANA_API_HEALTH
payload: "GET /api/health HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n"
ports: [3000]
requires_ssl: false
- name: PROMETHEUS_CONFIG
payload: "GET /api/v1/status/config HTTP/1.1\r\nHost: localhost\r\nConnection: close\r\n\r\n"
ports: [9090]
requires_ssl: false
- name: TCP_BANNER_GRAB
payload: ""
ports: any
requires_ssl: false