jmurch Posted August 4, 2011 Share Posted August 4, 2011 I am trying to come up with a regex that will match this log entry: [Aug 04 14:22:02] err: bad or missing CDL header. refused connection from 98.165.54.217:54335 [l:980] Where timestamp and ip address will obviousley be different each time. I dont care about anything after the colon in the ip address. TIA, Jeff Quote Link to comment Share on other sites More sharing options...
xyph Posted August 4, 2011 Share Posted August 4, 2011 More than one line would be helpful, but $expression = '/\[([^]]+)\] +([^\r\n]+)/'; \[([^]]+)] +([^\r\n]+) Match the character “[” literally «\[» Match the regular expression below and capture its match into backreference number 1 «([^]]+)» Match any character that is NOT a “]” «[^]]+» Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+» Match the character “]” literally «]» Match the character “ ” literally « +» Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+» Match the regular expression below and capture its match into backreference number 2 «([^\r\n]+)» Match a single character NOT present in the list below «[^\r\n]+» Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+» A carriage return character «\r» A line feed character «\n» Quote Link to comment Share on other sites More sharing options...
jmurch Posted August 4, 2011 Author Share Posted August 4, 2011 Probably my mistake for not explaining better. I need to match only entries that do contain the string: 'err: bad or missing CDL header. refused connection from' Since there are other log entries. Jeff Quote Link to comment Share on other sites More sharing options...
xyph Posted August 4, 2011 Share Posted August 4, 2011 And you want to capture the whole log? Just the IP? Detaaaaails Quote Link to comment Share on other sites More sharing options...
jmurch Posted August 4, 2011 Author Share Posted August 4, 2011 Yes your correct I want to capture the log entry less the port info after the ip when it contains 'err: bad or missing CDL header. refused connection from' Thanks Quote Link to comment Share on other sites More sharing options...
xyph Posted August 4, 2011 Share Posted August 4, 2011 /bad or missing CDL header\. refused connection from ([0-9.:]+)/ I took out err: because it's erroneous, and I'm sure there are other instances of err: that won't match. That'll cause backtracking and slow down your expression. Quote Link to comment Share on other sites More sharing options...
jmurch Posted August 4, 2011 Author Share Posted August 4, 2011 More missing details: This rule matches this ssh log entry: Log entry: Aug 4 20:59:16 socketserver sshd[21442]: Failed password for root from 98.165.54.217 port 56595 ssh2 Rule: ^%(__prefix_line)sFailed (?:password|publickey) for .* from <HOST>(?: port \d*)?(?: ssh\d*)?$ (Note that this is for use in the iptables module fail2ban. The entry __prefix_line comes from another config file but I figured that leaving it out would be more confusing) This rule does not match this log entry: Log entry: [Aug 04 14:22:02] err: bad or missing CDL header. refused connection from 98.165.54.217:54335 [l:980] Rule: /bad or missing CDL header\. refused connection from ([0-9.:]+)/ Thanks! Quote Link to comment Share on other sites More sharing options...
xyph Posted August 4, 2011 Share Posted August 4, 2011 I'm not familiar with fail2ban, but I know my RegEx works. <?php $sb = '[Aug 04 14:22:02] err: bad or missing CDL header. refused connection from 98.165.54.217:54335 [l:980]'; $ex = '/bad or missing CDL header\. refused connection from ([0-9.:]+)/'; preg_match_all( $ex, $sb, $match ); print_r( $match ); ?> Output Array ( [0] => Array ( [0] => bad or missing CDL header. refused connection from 98.165.54.217:54335 ) [1] => Array ( [0] => 98.165.54.217:54335 ) ) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.