mirror of https://github.com/MISP/misp-modules
fix: Fixed input types list since domain should not be submitted to AssemblyLine
parent
dc9ea98d2c
commit
de8737d2f3
|
@ -1,3 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import json
|
||||
|
||||
from assemblyline_client import Client, ClientError
|
||||
|
@ -7,7 +8,7 @@ from urllib.parse import urljoin
|
|||
moduleinfo = {"version": 1, "author": "Christian Studer", "module-type": ["expansion"],
|
||||
"description": "Submit files or URLs to AssemblyLine"}
|
||||
moduleconfig = ["apiurl", "user_id", "apikey", "password"]
|
||||
mispattributes = {"input": ["attachment", "malware-sample", "url", "domain"],
|
||||
mispattributes = {"input": ["attachment", "malware-sample", "url"],
|
||||
"output": ["link"]}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue