public inbox for gentoo-security@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-security] prelude-lml and log_prefix_regex
  2005-10-13 19:17 [gentoo-security] hosts.{allow,deny} vs. iptables Łukasz C. Jokiel
@ 2005-10-15  8:10 ` Chris
  0 siblings, 0 replies; 3+ messages in thread
From: Chris @ 2005-10-15  8:10 UTC (permalink / raw
  To: gentoo-security

Hello listmembers,

i'm setting up a prelude/snort system and so far everything works quite
well, but i have absolutely no clue about regular expressions.
i tried to get it for a few hours now, but damn, this is really hard
stuff... :(
all i need is an expression for setting up the prelude-lml variable:
"log_prefix_regex" with my syslog-ng entries, but i don't get it, so i
thought i might ask if someone with the needed knowledge could help me out.

my logentries look like this:
    2005-10-15T10:01:20+0100 <auth.info> balmoral su(pam_unix)[741]:
session opened for user root by (uid=1000)

using this syslog-ng entry:
    template("$ISODATE <$FACILITY.$PRIORITY> $HOST $MSG\n")

and prelude-lml want's to use this expression to extract the data:
    time-format = "%Y-%m-%dT%H:%M:%S"
    prefix-regex = "^(?P<timestamp>.{15}) (?P<hostname>\S+)
(?:(?P<process>\S+?)(?:\[(?P<pid>[0-9]+)\])?: )?"


all i get using this regex is the following error:
could not match log_prefix_regex against log entry:
2005-10-15T10:01:20+0100 <auth.info> balmoral su(pam_unix)[741]: session
opened for user root by (uid=1000)
the time-format was the only thing i could change accordingly and using
date "+%Y-%m-%dT%H:%M:%S" produces the used log-date.

so, if someone could create a working regular expression for me (or
gimme some other help), as slowly my brain begins to smoke while i'm
totally stuck, i would appreciate it very much.

greetings, chris


>  
>
-- 
gentoo-security@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-security] prelude-lml and log_prefix_regex
@ 2005-10-15  9:33 Sheran Gunasekera
  2005-10-15  9:45 ` Chris
  0 siblings, 1 reply; 3+ messages in thread
From: Sheran Gunasekera @ 2005-10-15  9:33 UTC (permalink / raw
  To: gentoo-security

Hi Chris,
Give this a go:
(?P<timestamp>.{15}).*?\>\s(?P<hostname>.*?)\s(?:(?P<process>\S+?)(?:\[(?P<pid>[0-9]+)\])?:)

I'm not using either Snort or Prelude, but I tried this on Python and I
think it
yields the results you require.  I wonder about only capturing the first 15
characters for the timestamp, though.  It comes up a bit short.  As I am
unsure
of the context it is being used, I cannot comment, but I would capture
at least
19 characters:

(?P<timestamp>.{19}).*?\>\s(?P<hostname>.*?)\s(?:(?P<process>\S+?)(?:\[(?P<pid>[0-9]+)\])?:)

Take care,
Sheran 
-- 
gentoo-security@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [gentoo-security] prelude-lml and log_prefix_regex
  2005-10-15  9:33 [gentoo-security] prelude-lml and log_prefix_regex Sheran Gunasekera
@ 2005-10-15  9:45 ` Chris
  0 siblings, 0 replies; 3+ messages in thread
From: Chris @ 2005-10-15  9:45 UTC (permalink / raw
  To: gentoo-security

Yeah, this did the trick :)
Thanks alot Sheran, now i'm able to get some sleep *smiling from one ear
to the other*

Greets, Chris






Sheran Gunasekera wrote:

>Hi Chris,
>Give this a go:
>(?P<timestamp>.{15}).*?\>\s(?P<hostname>.*?)\s(?:(?P<process>\S+?)(?:\[(?P<pid>[0-9]+)\])?:)
>
>I'm not using either Snort or Prelude, but I tried this on Python and I
>think it
>yields the results you require.  I wonder about only capturing the first 15
>characters for the timestamp, though.  It comes up a bit short.  As I am
>unsure
>of the context it is being used, I cannot comment, but I would capture
>at least
>19 characters:
>
>(?P<timestamp>.{19}).*?\>\s(?P<hostname>.*?)\s(?:(?P<process>\S+?)(?:\[(?P<pid>[0-9]+)\])?:)
>
>Take care,
>Sheran 
>  
>
-- 
gentoo-security@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-10-15  9:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-15  9:33 [gentoo-security] prelude-lml and log_prefix_regex Sheran Gunasekera
2005-10-15  9:45 ` Chris
  -- strict thread matches above, loose matches on Subject: below --
2005-10-13 19:17 [gentoo-security] hosts.{allow,deny} vs. iptables Łukasz C. Jokiel
2005-10-15  8:10 ` [gentoo-security] prelude-lml and log_prefix_regex Chris

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox