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!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...