Splunk Search

How to create regex for different pattern of data

seksit
Explorer

Hi everyone

I'm new splunk, I'm try to extract fields called username, clientip.

But some row of data start with "Invalid user (username)" , some row has only (username).

How can I create regex for this pattern data?

Sorry for my english 🙂

Thanks

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

This works fine for me. (things before the rex are just to generate sample data)

| gentimes start=-1 | eval temp="Thu Sep 29 2015 00:00:00 mailsv1 sshd[5276]: Failed password for invalid user appserver from 100.890.03.34 port 3351 ssh2#Thu Sep 29 2015 00:00:00 mailsv1 sshd[5276]: Failed password for root from 100.890.03.34 port 3351 ssh2" | table temp | makemv temp delim="#" | mvexpand temp | rename temp as _raw 
| rex "^(?:[^\s\n]* ){10}(invalid user )*(?P<username>\w+) from (?P<clientip>[^ ]+)"

View solution in original post

seksit
Explorer

Thanks everyone who came to help me.

0 Karma

somesoni2
Revered Legend

This works fine for me. (things before the rex are just to generate sample data)

| gentimes start=-1 | eval temp="Thu Sep 29 2015 00:00:00 mailsv1 sshd[5276]: Failed password for invalid user appserver from 100.890.03.34 port 3351 ssh2#Thu Sep 29 2015 00:00:00 mailsv1 sshd[5276]: Failed password for root from 100.890.03.34 port 3351 ssh2" | table temp | makemv temp delim="#" | mvexpand temp | rename temp as _raw 
| rex "^(?:[^\s\n]* ){10}(invalid user )*(?P<username>\w+) from (?P<clientip>[^ ]+)"

seksit
Explorer

Hi somesoni2,

Now I can extract this pattern by using your regex. Thanks you for your your advice.

0 Karma

kennybms
New Member

Something like this should do:

.. rex field=_raw "Invalid user (?<InvalidUser>.*\").*\" ..
0 Karma

3stimpson
Engager

Can you provide a snippet of the data in text format, with both formats included?

update: sorry scratch below, I didn't see the jpg
Better yet you can use the IFX tool to extract on your own...
http://docs.splunk.com/Documentation/Splunk/6.3.0/Knowledge/ExtractfieldsinteractivelywithIFX

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...