Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/checkpoint/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.15.1"
changes:
- description: Fix Check Point `src_user_name` field mapping.
type: bugfix
link: https://github.com/elastic/integrations/pull/5321
- version: "1.15.0"
changes:
- description: Enhance error handling.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@
"rule_action": "Accept",
"scheme": "IKE",
"session_uid": "{6389E8E3-0000-0000-AC10-0209F7730000}",
"src_user_name": "srcuser",
"user": "srcuser",
"vpn_feature_name": "VPN"
},
Expand Down Expand Up @@ -215,6 +214,9 @@
"related": {
"ip": [
"192.168.1.153"
],
"user": [
"srcuser"
]
},
"rule": {
Expand All @@ -223,7 +225,10 @@
},
"source": {
"ip": "192.168.1.153",
"port": 49129
"port": 49129,
"user": {
"name": "srcuser"
}
},
"tags": [
"preserve_original_event"
Expand All @@ -243,7 +248,6 @@
"rule_action": "Accept",
"scheme": "IKE",
"session_uid": "{6389E8E3-0000-0000-AC10-0209F7730000}",
"src_user_name": "srcuser",
"user": "srcuser",
"vpn_feature_name": "VPN"
},
Expand Down Expand Up @@ -296,6 +300,9 @@
"related": {
"ip": [
"192.168.1.153"
],
"user": [
"srcuser"
]
},
"rule": {
Expand All @@ -304,7 +311,10 @@
},
"source": {
"ip": "192.168.1.153",
"port": 49129
"port": 49129,
"user": {
"name": "srcuser"
}
},
"tags": [
"preserve_original_event"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
"origin_sic_name": "CN=xx-dc-gw-1_gw-vp-ext-5,O=7checkpoint-mng..tstst7",
"roles": "Remote_Access_AR",
"snid": "ccaaffdd",
"src_user_name": "usrTest (usrTest)",
"user": "usrTest (usrTest)"
},
"dns": {
Expand Down Expand Up @@ -91,6 +90,9 @@
"related": {
"ip": [
"81.2.69.192"
],
"user": [
"usrTest (usrTest)"
]
},
"source": {
Expand All @@ -110,7 +112,8 @@
"user": {
"group": {
"name": "Remote_Access_Users; Remote_Admins; All Users; AD_Users"
}
},
"name": "usrTest (usrTest)"
}
},
"tags": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@
"snid": "4748F525-85B7-448A-82DF-D4E4E8D55172",
"sport_svc": "56530",
"src_user_dn": "blake",
"src_user_name": "bob",
"svc": "443",
"user": "alice",
"xlatedport_svc": "34536",
Expand Down Expand Up @@ -194,6 +193,9 @@
"81.2.69.144",
"172.28.11.213",
"81.2.69.142"
],
"user": [
"bob"
]
},
"rule": {
Expand All @@ -217,6 +219,9 @@
"ip": "81.2.69.192",
"nat": {
"ip": "81.2.69.144"
},
"user": {
"name": "bob"
}
},
"tags": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ processors:
target_field: source.user.name
ignore_missing: true
- rename:
field: checkpoint.source_user_name
field: checkpoint.src_user_name
target_field: source.user.name
if: ctx.source?.user?.name == null
ignore_missing: true
Expand Down
4 changes: 0 additions & 4 deletions packages/checkpoint/data_stream/firewall/fields/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1448,10 +1448,6 @@
type: keyword
description: |
User distinguished name connected to source IP.
- name: src_user_name
type: keyword
description: |
User name connected to source IP
- name: srckeyid
type: keyword
description: |
Expand Down
1 change: 0 additions & 1 deletion packages/checkpoint/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,6 @@ An example event for `firewall` looks as following:
| checkpoint.src_country | Country name, derived from connection source IP address. | keyword |
| checkpoint.src_phone_number | Source IP-Phone. | keyword |
| checkpoint.src_user_dn | User distinguished name connected to source IP. | keyword |
| checkpoint.src_user_name | User name connected to source IP | keyword |
| checkpoint.srckeyid | Initiator Spi ID. | keyword |
| checkpoint.status | Ok/Warning/Error. | keyword |
| checkpoint.status_update | Last time log was updated. | keyword |
Expand Down
2 changes: 1 addition & 1 deletion packages/checkpoint/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: checkpoint
title: Check Point
version: "1.15.0"
version: "1.15.1"
release: ga
description: Collect logs from Check Point with Elastic Agent.
type: integration
Expand Down