3

I patched for shellshock and was barraged a few days later. However, I would not have known any attempts were made at all if not for a regular expression I found on the internet. This has inspired me to look further into my logs. Is there any centralized list of regexes I can use in a script to parse my logs for common exploits attempts such as SQL Injection or XSS?

Anders
  • 64,406
  • 24
  • 178
  • 215
Dylan Katz
  • 243
  • 1
  • 3
  • 9

2 Answers2

6

The best solution would be to implicitly deny, i.e. allow exactly the data you want, but no other.

You could write regexps matching all input that's not according to your filter to find any odd input, that might be an exploit. It is also a good way to find valid input you omitted in your regex.

A username might be fine with [a-zA-Z0-9]+, rather than removing single quotes or similar to sanitize input.

EDIT:
This is the approach I would take:

  1. Add regexps to implicitly deny all inputs, to fix this problem in the future.
  2. Check the data in the log files against the regexps that were written in step 1
  3. Remove all input data in the log files that matches the regexps.
  4. Reduce the logs by counting identical rows and deduplicating them, so we don't have to look at 1000 identical rows, but still know that we had 1000 rows like that in the log files.
  5. Check if any of the logged input should be valid. If so, update the relevant regex and goto step 2.
  6. Check if any of the remaining log inputs look suspicious.
Filip Haglund
  • 1,593
  • 1
  • 11
  • 20
1

Regular expressions are of very limited use here as any attack delivered via a HTTP POST request is unlikely to get logged. There are also many examples of header values having an impact while not being logged, ie: shellshock. There will also be alot of noise from automated scanners like Nikto that have no impact unless the visited url exist and is vulnerable.

If you are going to go looking through your logs a good place to start would be to export rules from mod_security or snort. It is worth noting that these may need modification to be compatible with the regex engine used by your search tool, such as grep.

wireghoul
  • 5,745
  • 2
  • 17
  • 26