fix: Fixed input types list since domain should not be submitted to AssemblyLine

pull/352/head
chrisr3d 2019-11-20 17:35:37 -05:00
parent dc9ea98d2c
commit de8737d2f3
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 2 additions and 1 deletions

View File

@ -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"]}