-
Notifications
You must be signed in to change notification settings - Fork 11
/
elastic_queries
139 lines (120 loc) · 2.2 KB
/
elastic_queries
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# Search by ip Script
GET htc/_search
{
"query": {
"term": {
"ip": "95.62.64.6"
}
}
}
# Search by ip
GET htc/_search
{
"query": {
"term": {
"ip": "95.62.64.5"
}
}
}
# Add port by ip with conditional
POST htc/_update_by_query
{
"query": {
"term": {
"ip": "95.62.64.5"
}
},
"script": {
"inline": "int a; a = 0; if(ctx._source.containsKey('ports')){ for(int i=0; i<ctx._source.ports.length; i++) {if(ctx._source.ports[i].containsKey(params.port)){ a=1}} if(a==0){ctx._source.ports.add(params.dict)}} else{ ctx._source.ports = []; ctx._source.ports.add(params.dict)}",
"params":{
"port" : "21",
"dict" :
{"21" : "ftp"}
},
"lang": "painless"
}
}
# Add port by ip
POST htc/_update_by_query
{
"query": {
"term": {
"ip": "95.62.64.5"
}
},
"script": {
"inline": "if(ctx._source.containsKey('ports')){ ctx._source.ports.add(params.dict)} else{ ctx._source.ports = []; ctx._source.ports.add(params.dict)}",
"params":{
"dict" :
{"22" : "ssh"}
},
"lang": "painless"
}
}
# Delete port by ip
POST htc/_update_by_query
{
"query" : {
"term": {
"ip" : "95.62.64.5"
}
},
"script" : {
"inline":"for(int i=0; i<=ctx._source.ports.length; i++) {if(ctx._source.ports[i].containsKey(params.port)){ctx._source.ports.remove(i);}}",
"params":{
"port" : "21"
},
"lang":"painless"
}
}
# Remove all ports by ip
POST htc/_update_by_query
{
"query" : {
"term": {
"ip" : "95.62.64.5"
}
},
"script" : {
"inline":"for(int i=0; i<=ctx._source.ports.length; i++) {ctx._source.ports.remove(i);}",
"lang":"painless"
}
}
# Remove field by ip
POST htc/_update_by_query
{
"query" : {
"term": {
"ip" : "95.62.64.5"
}
},
"script" : {
"inline":"ctx._source.remove('ports');",
"lang":"painless"
}
}
# Seach all
GET htc/_search
# Show mapping
GET htc/_mapping
# Geopoints
PUT htc/_mapping
{
"properties": {
"location": {
"type": "geo_point"
}
}
}
PUT case12
{
"mappings": {
"doc": {
"properties": {
"geoip.coordinates": {
"type": "geo_point"
}
}
}
}
}