Skip to content

Commit 2fe584c

Browse files
committed
fix: Changed a few attribute types in different template
1 parent b2de8dd commit 2fe584c

File tree

19 files changed

+40
-40
lines changed

19 files changed

+40
-40
lines changed

objects/abuseipdb/definition.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"attributes": {
33
"abuse-confidence-score": {
44
"description": "Rating (0-100) of how confident AbuseIPDB is that an IP address is entirely malicious",
5-
"misp-attribute": "counter",
5+
"misp-attribute": "integer",
66
"ui-priority": 0
77
},
88
"is-malicious": {

objects/concordia-mtmf-intrusion-set/definition.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
"CMTMF_ATCKID": {
1111
"description": "Identifier of the Attack",
1212
"disable_correlation": false,
13-
"misp-attribute": "counter",
13+
"misp-attribute": "integer",
1414
"recommended": true,
1515
"ui-priority": 1
1616
},
1717
"FeedbackLoop": {
1818
"description": "Feedback Loop Sequence",
1919
"disable_correlation": false,
20-
"misp-attribute": "counter",
20+
"misp-attribute": "integer",
2121
"ui-priority": 0
2222
},
2323
"PhName": {
@@ -30,7 +30,7 @@
3030
"PhSequence": {
3131
"description": "Phase Sequence",
3232
"disable_correlation": true,
33-
"misp-attribute": "counter",
33+
"misp-attribute": "integer",
3434
"recommended": true,
3535
"ui-priority": 0
3636
},

objects/covid19-csse-daily-report/definition.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"county": {
2222
"description": "US County (US Only)",
2323
"disable_correlation": true,
24-
"misp-attribute": "counter",
24+
"misp-attribute": "integer",
2525
"ui-priority": 0
2626
},
2727
"death": {
@@ -33,7 +33,7 @@
3333
"fips": {
3434
"description": "Federal Information Processing Standard county code (US Only)",
3535
"disable_correlation": true,
36-
"misp-attribute": "counter",
36+
"misp-attribute": "integer",
3737
"ui-priority": 0
3838
},
3939
"latitude": {

objects/ddos/definition.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"backscatter-threshold": {
44
"description": "The minimum amount of backscatter received in 5 minutes / day. This field is only used when the capture origin is indirect network capture such as backscatter.",
55
"disable_correlation": true,
6-
"misp-attribute": "counter",
6+
"misp-attribute": "integer",
77
"ui-priority": 0
88
},
99
"capture-origin": {
@@ -99,13 +99,13 @@
9999
"total-bps": {
100100
"description": "Bits per second (maximum rate of bits per second measured)",
101101
"disable_correlation": true,
102-
"misp-attribute": "counter",
102+
"misp-attribute": "integer",
103103
"ui-priority": 0
104104
},
105105
"total-bytes-sent": {
106106
"description": "Total number of bytes sent by the sources mentioned",
107107
"disable_correlation": true,
108-
"misp-attribute": "counter",
108+
"misp-attribute": "size-in-bytes",
109109
"ui-priority": 0
110110
},
111111
"total-packets-sent": {
@@ -117,7 +117,7 @@
117117
"total-pps": {
118118
"description": "Packets per second (maximum rate of packets per second measured)",
119119
"disable_correlation": true,
120-
"misp-attribute": "counter",
120+
"misp-attribute": "integer",
121121
"ui-priority": 0
122122
},
123123
"type": {

objects/diamond/definition.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
"EventID": {
3333
"description": "Id of the event",
34-
"misp-attribute": "counter",
34+
"misp-attribute": "integer",
3535
"ui-priority": 0
3636
},
3737
"Infrastructure": {

objects/imsi-catcher/definition.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"seq": {
5757
"description": "A sequence number for the collection",
5858
"disable_correlation": true,
59-
"misp-attribute": "counter",
59+
"misp-attribute": "integer",
6060
"ui-priority": 0
6161
},
6262
"text": {

objects/intelmq_event/definition.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
},
113113
"destination.port": {
114114
"description": "The port to which the connection headed.",
115-
"misp-attribute": "counter",
115+
"misp-attribute": "port",
116116
"ui-priority": 1
117117
},
118118
"destination.registry": {
@@ -256,7 +256,7 @@
256256
},
257257
"rtir_id": {
258258
"description": "Request Tracker Incident Response ticket id.",
259-
"misp-attribute": "counter",
259+
"misp-attribute": "integer",
260260
"ui-priority": 1
261261
},
262262
"screenshot_url": {
@@ -366,7 +366,7 @@
366366
},
367367
"source.port": {
368368
"description": "The port from which the connection originated.",
369-
"misp-attribute": "counter",
369+
"misp-attribute": "port",
370370
"ui-priority": 1
371371
},
372372
"source.registry": {

objects/intelmq_report/definition.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"rtir_id": {
4444
"description": "Request Tracker Incident Response ticket id.",
45-
"misp-attribute": "counter",
45+
"misp-attribute": "integer",
4646
"ui-priority": 1
4747
},
4848
"time.observation": {

objects/mactime-timeline-analysis/definition.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"file_size": {
4040
"description": "Determines the file size in bytes",
4141
"disable_correlation": true,
42-
"misp-attribute": "text",
42+
"misp-attribute": "size-in-bytes",
4343
"ui-priority": 0
4444
}
4545
},

objects/netflow/definition.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"byte-count": {
44
"description": "Bytes counted in this flow",
55
"disable_correlation": true,
6-
"misp-attribute": "counter",
6+
"misp-attribute": "size-in-bytes",
77
"ui-priority": 0
88
},
99
"community-id": {
@@ -73,7 +73,7 @@
7373
"ip-protocol-number": {
7474
"description": "IP protocol number of this flow",
7575
"disable_correlation": true,
76-
"misp-attribute": "size-in-bytes",
76+
"misp-attribute": "integer",
7777
"ui-priority": 0
7878
},
7979
"ip-src": {
@@ -88,7 +88,7 @@
8888
"ip_version": {
8989
"description": "IP version of this flow",
9090
"disable_correlation": true,
91-
"misp-attribute": "counter",
91+
"misp-attribute": "integer",
9292
"ui-priority": 0
9393
},
9494
"last-packet-seen": {

0 commit comments

Comments
 (0)