mirror of https://github.com/fail2ban/fail2ban
Added 'maxlines' option to fail2ban-regex
This allows multi-line regex to be testedpull/108/head
parent
99914ac0f3
commit
b48c17b8c4
|
@ -105,6 +105,7 @@ class Fail2banRegex:
|
||||||
print " -h, --help display this help message"
|
print " -h, --help display this help message"
|
||||||
print " -V, --version print the version"
|
print " -V, --version print the version"
|
||||||
print " -v, --verbose verbose output"
|
print " -v, --verbose verbose output"
|
||||||
|
print " -l INT, --maxlines=INT set maxlines for multi-line regex default: 1"
|
||||||
print
|
print
|
||||||
print "Log:"
|
print "Log:"
|
||||||
print " string a string representing a log line"
|
print " string a string representing a log line"
|
||||||
|
@ -133,6 +134,14 @@ class Fail2banRegex:
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
elif opt[0] in ["-v", "--verbose"]:
|
elif opt[0] in ["-v", "--verbose"]:
|
||||||
self.__verbose = True
|
self.__verbose = True
|
||||||
|
elif opt[0] in ["-l", "--maxlines"]:
|
||||||
|
try:
|
||||||
|
self.__filter.setMaxLines(int(opt[1]))
|
||||||
|
except ValueError:
|
||||||
|
print "Invlaid value for maxlines: %s" % (
|
||||||
|
opt[1])
|
||||||
|
fail2banRegex.dispUsage()
|
||||||
|
sys.exit(-1)
|
||||||
|
|
||||||
#@staticmethod
|
#@staticmethod
|
||||||
def logIsFile(value):
|
def logIsFile(value):
|
||||||
|
@ -310,8 +319,8 @@ if __name__ == "__main__":
|
||||||
fail2banRegex = Fail2banRegex()
|
fail2banRegex = Fail2banRegex()
|
||||||
# Reads the command line options.
|
# Reads the command line options.
|
||||||
try:
|
try:
|
||||||
cmdOpts = 'hVcv'
|
cmdOpts = 'hVcvl:'
|
||||||
cmdLongOpts = ['help', 'version', 'verbose']
|
cmdLongOpts = ['help', 'version', 'verbose', 'maxlines=']
|
||||||
optList, args = getopt.getopt(sys.argv[1:], cmdOpts, cmdLongOpts)
|
optList, args = getopt.getopt(sys.argv[1:], cmdOpts, cmdLongOpts)
|
||||||
except getopt.GetoptError:
|
except getopt.GetoptError:
|
||||||
fail2banRegex.dispUsage()
|
fail2banRegex.dispUsage()
|
||||||
|
|
Loading…
Reference in New Issue