Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SIEM] Bad network.direction ingested by Cisco module #13891

Closed
adriansr opened this issue Oct 3, 2019 · 2 comments · Fixed by #13903
Closed

[SIEM] Bad network.direction ingested by Cisco module #13891

adriansr opened this issue Oct 3, 2019 · 2 comments · Fixed by #13903
Labels

Comments

@adriansr
Copy link
Contributor

adriansr commented Oct 3, 2019

User is getting

"Expected a value of type "NetworkDirectionEcs" but received: Inbound"

Looks like network.direction is Inbound where it should be inbound.

@elasticmachine
Copy link
Collaborator

Pinging @elastic/siem (Team:SIEM)

adriansr added a commit to adriansr/beats that referenced this issue Oct 3, 2019
In some case network.direction can be `Inbound` instead of `inbound`
as expected. This happens with message 106001 in the ASA and FTD.

Fixes elastic#13891
@adriansr
Copy link
Contributor Author

adriansr commented Oct 3, 2019

A fix in case this error appears in your SIEM :

POST /filebeat-*/_update_by_query
{
  "query": {
    "match": {
      "network.direction": "Inbound"
    }
  },
  "script": {
    "lang": "painless",
    "source": "ctx._source.network.direction='inbound'"
  }
}

adriansr added a commit that referenced this issue Oct 4, 2019
…ection (#13903)

In some case network.direction can be `Inbound` instead of `inbound`
as expected. This happens with message 106001 in the ASA and FTD.

Fixes #13891
adriansr added a commit to adriansr/beats that referenced this issue Oct 4, 2019
…ection (elastic#13903)

In some case network.direction can be `Inbound` instead of `inbound`
as expected. This happens with message 106001 in the ASA and FTD.

Fixes elastic#13891

(cherry picked from commit e40fbdd)
adriansr added a commit that referenced this issue Oct 4, 2019
…1 producing bad network.direction (#13912)

In some case network.direction can be `Inbound` instead of `inbound`
as expected. This happens with message 106001 in the ASA and FTD.

Fixes #13891
leweafan pushed a commit to leweafan/beats that referenced this issue Apr 28, 2023
…e 106001 producing bad network.direction (elastic#13912)

In some case network.direction can be `Inbound` instead of `inbound`
as expected. This happens with message 106001 in the ASA and FTD.

Fixes elastic#13891
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants