mirror of https://github.com/MISP/PyMISP
fix: Add Info field to the event
parent
ecf9bd549f
commit
22c874e479
|
@ -11,6 +11,7 @@ try:
|
||||||
except Exception:
|
except Exception:
|
||||||
misp_url = 'URL'
|
misp_url = 'URL'
|
||||||
misp_key = 'AUTH_KEY'
|
misp_key = 'AUTH_KEY'
|
||||||
|
misp_key = True
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
@ -31,8 +32,9 @@ if __name__ == '__main__':
|
||||||
response = pymisp.search(tags=args.tag, last=args.aggregation_period, published=False)
|
response = pymisp.search(tags=args.tag, last=args.aggregation_period, published=False)
|
||||||
me = MISPEvent()
|
me = MISPEvent()
|
||||||
if 'response' in response and response['response']:
|
if 'response' in response and response['response']:
|
||||||
me.load(response['response'][1])
|
me.load(response['response'][0])
|
||||||
else:
|
else:
|
||||||
|
me.info = "Fail2Ban blocking"
|
||||||
me.add_tag(args.tag)
|
me.add_tag(args.tag)
|
||||||
parameters = {'banned-ip': args.banned_ip, 'attack-type': args.attack_type, 'processing-timestamp': args.processing_timestamp}
|
parameters = {'banned-ip': args.banned_ip, 'attack-type': args.attack_type, 'processing-timestamp': args.processing_timestamp}
|
||||||
if args.failures:
|
if args.failures:
|
||||||
|
|
Loading…
Reference in New Issue