mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-26 08:47:18 +00:00
chg: [tools] add a reference to the relationship graph
This commit is contained in:
parent
b1e388c815
commit
adb467743e
1 changed files with 3 additions and 2 deletions
|
@ -81,7 +81,7 @@ def header():
|
||||||
return doc
|
return doc
|
||||||
|
|
||||||
|
|
||||||
def asciidoc(content=False, t='title', title='', typename=''):
|
def asciidoc(content=False, t='title', title='', typename='', uuid=None):
|
||||||
adoc = []
|
adoc = []
|
||||||
adoc += "\n"
|
adoc += "\n"
|
||||||
output = ""
|
output = ""
|
||||||
|
@ -114,6 +114,7 @@ def asciidoc(content=False, t='title', title='', typename=''):
|
||||||
pass # ignore lookup errors
|
pass # ignore lookup errors
|
||||||
if output:
|
if output:
|
||||||
output = '{} has relationships with:\n{}\n'.format(title, output)
|
output = '{} has relationships with:\n{}\n'.format(title, output)
|
||||||
|
output = '\nlink:https://www.misp-project.org/graphs/{}.png[View relationships graph]\n\n{}\n'.format(uuid, output)
|
||||||
adoc += output
|
adoc += output
|
||||||
return adoc
|
return adoc
|
||||||
|
|
||||||
|
@ -139,7 +140,7 @@ for cluster in clusters:
|
||||||
if 'meta' in v:
|
if 'meta' in v:
|
||||||
adoc += asciidoc(content=v['meta'], t='meta-synonyms', title=v['value'])
|
adoc += asciidoc(content=v['meta'], t='meta-synonyms', title=v['value'])
|
||||||
if 'related' in v:
|
if 'related' in v:
|
||||||
adoc += asciidoc(content=v['related'], t='related', title=v['value'])
|
adoc += asciidoc(content=v['related'], t='related', title=v['value'], uuid=v['uuid'])
|
||||||
if 'meta' in v:
|
if 'meta' in v:
|
||||||
adoc += asciidoc(content=v['meta'], t='meta-refs', title=v['value'])
|
adoc += asciidoc(content=v['meta'], t='meta-refs', title=v['value'])
|
||||||
print(''.join(adoc))
|
print(''.join(adoc))
|
||||||
|
|
Loading…
Reference in a new issue