Security

How to see users logging in from more than one country?

LANGLEYJ
New Member

I would like to only show users loging into multiple countrys. How would i manipulate this search to do that?

index="index" "Login succeeded for" | iplocation sip | stats count(sip) AS ipCount by ssl_vpn_user_name, sip, _time, Country, City | where ipCount >=1 | table _time, ssl_vpn_user_name, sip, Country, City | dedup sip

I get a similar table:

time ssl_vpn_user_name sip country city
time user1 ip Country City
time user2 ip Country City
time user3 ip Country City
time user3 DIFip DIFCountry DIFCITY

Tags (2)
0 Karma
1 Solution

pradeepkumarg
Influencer

append this to your search

| eventstats dc(country) as COUNT by ssl_vpn_user_name | where COUNT > 1

View solution in original post

LordIssam
Engager

Nice! thx

0 Karma

pradeepkumarg
Influencer

append this to your search

| eventstats dc(country) as COUNT by ssl_vpn_user_name | where COUNT > 1

LANGLEYJ
New Member

Perfect! Thank you very much!

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...