mirror of https://github.com/MISP/PyMISP
				
				
				
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			726 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			726 B
		
	
	
	
		
			Python
		
	
	
| #!/usr/bin/env python
 | |
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| from .abstractgenerator import AbstractMISPObjectGenerator
 | |
| import logging
 | |
| 
 | |
| logger = logging.getLogger('pymisp')
 | |
| 
 | |
| 
 | |
| class Fail2BanObject(AbstractMISPObjectGenerator):
 | |
| 
 | |
|     def __init__(self, parameters, strict=True, standalone=True, **kwargs):
 | |
|         super(Fail2BanObject, self).__init__('fail2ban', strict=strict, standalone=standalone, **kwargs)
 | |
|         self._parameters = parameters
 | |
|         self.generate_attributes()
 | |
| 
 | |
|     def generate_attributes(self):
 | |
|         timestamp = self._sanitize_timestamp(self._parameters.pop('processing-timestamp', None))
 | |
|         self._parameters['processing-timestamp'] = timestamp
 | |
|         return super(Fail2BanObject, self).generate_attributes()
 |