PyMISP/examples/situational-awareness
Raphaël Vinot 5937ef9e9b Version bump 2016-08-02 15:17:42 +02:00
..
README.md Update README.md 2016-07-26 11:09:00 +02:00
attribute_treemap.py Initial refactoring, PEP8 and cleanup 2016-07-26 16:35:46 +02:00
style.css Initial refactoring, PEP8 and cleanup 2016-07-26 16:35:46 +02:00
tag_search.py Fix fetching method for tag_search and tags_count 2016-07-29 13:25:36 +02:00
tags_count.py Fix fetching method for tag_search and tags_count 2016-07-29 13:25:36 +02:00
test_attribute_treemap.html Initial refactoring, PEP8 and cleanup 2016-07-26 16:35:46 +02:00
tools.py Version bump 2016-08-02 15:17:42 +02:00

README.md

Explanation

  • treemap.py is a script that will generate an interactive svg (attribute_treemap.svg) containing a treepmap representing the distribution of attributes in a sample (data) fetched from the instance using "last" or "searchall" examples.

  • It will also generate a html document with a table (attribute_table.html) containing count for each type of attribute.

  • test_attribute_treemap.html is a quick page made to visualize both treemap and table at the same time.

  • tags_count.py is a script that count the number of occurences of every tags in a fetched sample of Events in a given period of time.

  • tag_search.py is a script that count the number of occurences of a given tag in a fetched sample of Events in a given period of time.

    • Events will be fetched from days days ago to today.
    • begindate is the beginning of the studied period. If it is later than today, an error will be raised.
    • enddate is the end of the studied period. If it is earlier than begindate, an error will be raised.
    • tag_search.py allows research for multiple tags is possible by separating each tag by the | symbol.
    • Partial research is also possible with tag_search.py. For instance, search for "ransom" will also return tags containin "ransomware".

⚠️ These scripts are not time optimised

Requierements