Fixed bug in CVE (always sending to browse_warning even if there was no match)

This commit is contained in:
Mokaddem 2016-08-08 11:54:27 +02:00
parent 084737dd26
commit aedb3198cd

View file

@ -25,6 +25,11 @@ def search_cve(message):
print('{} contains CVEs'.format(paste.p_name))
publisher.warning('{} contains CVEs'.format(paste.p_name))
#send to Browse_warning_paste
p.populate_set_out('cve;{}'.format(filepath), 'BrowseWarningPaste')
#Send to duplicate
p.populate_set_out(filepath, 'Duplicate')
if __name__ == '__main__':
# If you wish to use an other port of channel, do not forget to run a subscriber accordingly (see launch_logs.sh)
# Port of the redis instance used by pubsublogger
@ -53,8 +58,3 @@ if __name__ == '__main__':
# Do something with the message from the queue
search_cve(message)
#send to Browse_warning_paste
filepath, count = message.split()
p.populate_set_out('cve;{}'.format(filepath), 'BrowseWarningPaste')
#Send to duplicate
p.populate_set_out(filepath, 'Duplicate')