misp-modules 2.4.196__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (194) hide show
  1. misp_modules/__init__.py +379 -0
  2. misp_modules/helpers/__init__.py +1 -0
  3. misp_modules/helpers/cache.py +84 -0
  4. misp_modules/lib/__init__.py +4 -0
  5. misp_modules/lib/_vmray/__init__.py +0 -0
  6. misp_modules/lib/_vmray/parser.py +1417 -0
  7. misp_modules/lib/_vmray/rest_api.py +148 -0
  8. misp_modules/lib/cof2misp/LICENSE-2.0.txt +202 -0
  9. misp_modules/lib/cof2misp/__init__.py +0 -0
  10. misp_modules/lib/cof2misp/cof.py +165 -0
  11. misp_modules/lib/joe_mapping.py +114 -0
  12. misp_modules/lib/joe_parser.py +573 -0
  13. misp_modules/lib/lastline_api.py +841 -0
  14. misp_modules/lib/qintel_helper.py +263 -0
  15. misp_modules/lib/stix2misp.py +2080 -0
  16. misp_modules/lib/stix2misp_mapping.py +460 -0
  17. misp_modules/lib/synonymsToTagNames.json +1 -0
  18. misp_modules/lib/vt_graph_parser/__init__.py +8 -0
  19. misp_modules/lib/vt_graph_parser/errors.py +20 -0
  20. misp_modules/lib/vt_graph_parser/helpers/__init__.py +7 -0
  21. misp_modules/lib/vt_graph_parser/helpers/parsers.py +88 -0
  22. misp_modules/lib/vt_graph_parser/helpers/rules.py +304 -0
  23. misp_modules/lib/vt_graph_parser/helpers/wrappers.py +58 -0
  24. misp_modules/lib/vt_graph_parser/importers/__init__.py +7 -0
  25. misp_modules/lib/vt_graph_parser/importers/base.py +98 -0
  26. misp_modules/lib/vt_graph_parser/importers/pymisp_response.py +73 -0
  27. misp_modules/modules/__init__.py +4 -0
  28. misp_modules/modules/action_mod/__init__.py +1 -0
  29. misp_modules/modules/action_mod/_utils/__init__.py +1 -0
  30. misp_modules/modules/action_mod/_utils/utils.py +70 -0
  31. misp_modules/modules/action_mod/mattermost.py +113 -0
  32. misp_modules/modules/action_mod/slack.py +96 -0
  33. misp_modules/modules/action_mod/testaction.py +68 -0
  34. misp_modules/modules/expansion/__init__.py +36 -0
  35. misp_modules/modules/expansion/_dnsdb_query/COPYRIGHT +27 -0
  36. misp_modules/modules/expansion/_dnsdb_query/LICENSE +202 -0
  37. misp_modules/modules/expansion/_dnsdb_query/README.md +162 -0
  38. misp_modules/modules/expansion/_dnsdb_query/__init__.py +0 -0
  39. misp_modules/modules/expansion/_dnsdb_query/dnsdb_query.py +327 -0
  40. misp_modules/modules/expansion/_ransomcoindb/__init__.py +0 -0
  41. misp_modules/modules/expansion/_ransomcoindb/ransomcoindb.py +96 -0
  42. misp_modules/modules/expansion/_vulnerability_parser/__init__.py +0 -0
  43. misp_modules/modules/expansion/_vulnerability_parser/vulnerability_parser.py +118 -0
  44. misp_modules/modules/expansion/abuseipdb.py +146 -0
  45. misp_modules/modules/expansion/apiosintds.py +365 -0
  46. misp_modules/modules/expansion/apivoid.py +133 -0
  47. misp_modules/modules/expansion/assemblyline_query.py +179 -0
  48. misp_modules/modules/expansion/assemblyline_submit.py +100 -0
  49. misp_modules/modules/expansion/backscatter_io.py +84 -0
  50. misp_modules/modules/expansion/btc_scam_check.py +54 -0
  51. misp_modules/modules/expansion/btc_steroids.py +238 -0
  52. misp_modules/modules/expansion/censys_enrich.py +287 -0
  53. misp_modules/modules/expansion/circl_passivedns.py +85 -0
  54. misp_modules/modules/expansion/circl_passivessl.py +113 -0
  55. misp_modules/modules/expansion/clamav.py +129 -0
  56. misp_modules/modules/expansion/cluster25_expand.py +239 -0
  57. misp_modules/modules/expansion/countrycode.py +69 -0
  58. misp_modules/modules/expansion/cpe.py +140 -0
  59. misp_modules/modules/expansion/crowdsec.py +235 -0
  60. misp_modules/modules/expansion/crowdstrike_falcon.py +148 -0
  61. misp_modules/modules/expansion/cuckoo_submit.py +161 -0
  62. misp_modules/modules/expansion/cve.py +57 -0
  63. misp_modules/modules/expansion/cve_advanced.py +185 -0
  64. misp_modules/modules/expansion/cytomic_orion.py +196 -0
  65. misp_modules/modules/expansion/dbl_spamhaus.py +78 -0
  66. misp_modules/modules/expansion/dns.py +71 -0
  67. misp_modules/modules/expansion/docx_enrich.py +71 -0
  68. misp_modules/modules/expansion/domaintools.py +290 -0
  69. misp_modules/modules/expansion/eql.py +91 -0
  70. misp_modules/modules/expansion/eupi.py +86 -0
  71. misp_modules/modules/expansion/extract_url_components.py +83 -0
  72. misp_modules/modules/expansion/farsight_passivedns.py +243 -0
  73. misp_modules/modules/expansion/geoip_asn.py +75 -0
  74. misp_modules/modules/expansion/geoip_city.py +75 -0
  75. misp_modules/modules/expansion/geoip_country.py +73 -0
  76. misp_modules/modules/expansion/google_safe_browsing.py +86 -0
  77. misp_modules/modules/expansion/google_search.py +57 -0
  78. misp_modules/modules/expansion/google_threat_intelligence.py +453 -0
  79. misp_modules/modules/expansion/greynoise.py +346 -0
  80. misp_modules/modules/expansion/hashdd.py +53 -0
  81. misp_modules/modules/expansion/hashlookup.py +118 -0
  82. misp_modules/modules/expansion/hibp.py +62 -0
  83. misp_modules/modules/expansion/html_to_markdown.py +63 -0
  84. misp_modules/modules/expansion/hyasinsight.py +881 -0
  85. misp_modules/modules/expansion/intel471.py +73 -0
  86. misp_modules/modules/expansion/intelmq_eventdb.py.experimental +67 -0
  87. misp_modules/modules/expansion/ip2locationio.py +90 -0
  88. misp_modules/modules/expansion/ipasn.py +70 -0
  89. misp_modules/modules/expansion/ipinfo.py +112 -0
  90. misp_modules/modules/expansion/ipqs_fraud_and_risk_scoring.py +633 -0
  91. misp_modules/modules/expansion/iprep.py +98 -0
  92. misp_modules/modules/expansion/jinja_template_rendering.py +54 -0
  93. misp_modules/modules/expansion/joesandbox_query.py +91 -0
  94. misp_modules/modules/expansion/joesandbox_submit.py +147 -0
  95. misp_modules/modules/expansion/lastline_query.py +148 -0
  96. misp_modules/modules/expansion/lastline_submit.py +180 -0
  97. misp_modules/modules/expansion/macaddress_io.py +130 -0
  98. misp_modules/modules/expansion/macvendors.py +55 -0
  99. misp_modules/modules/expansion/malshare_upload.py +107 -0
  100. misp_modules/modules/expansion/malwarebazaar.py +67 -0
  101. misp_modules/modules/expansion/mcafee_insights_enrich.py +249 -0
  102. misp_modules/modules/expansion/mmdb_lookup.py +138 -0
  103. misp_modules/modules/expansion/module.py.skeleton +44 -0
  104. misp_modules/modules/expansion/mwdb.py +152 -0
  105. misp_modules/modules/expansion/ocr_enrich.py +74 -0
  106. misp_modules/modules/expansion/ods_enrich.py +71 -0
  107. misp_modules/modules/expansion/odt_enrich.py +61 -0
  108. misp_modules/modules/expansion/onyphe.py +243 -0
  109. misp_modules/modules/expansion/onyphe_full.py +387 -0
  110. misp_modules/modules/expansion/otx.py +167 -0
  111. misp_modules/modules/expansion/passive_ssh.py +150 -0
  112. misp_modules/modules/expansion/passivetotal.py +358 -0
  113. misp_modules/modules/expansion/pdf_enrich.py +58 -0
  114. misp_modules/modules/expansion/pptx_enrich.py +65 -0
  115. misp_modules/modules/expansion/qintel_qsentry.py +229 -0
  116. misp_modules/modules/expansion/qrcode.py +99 -0
  117. misp_modules/modules/expansion/ransomcoindb.py +82 -0
  118. misp_modules/modules/expansion/rbl.py +126 -0
  119. misp_modules/modules/expansion/recordedfuture.py +544 -0
  120. misp_modules/modules/expansion/reversedns.py +77 -0
  121. misp_modules/modules/expansion/securitytrails.py +571 -0
  122. misp_modules/modules/expansion/shodan.py +244 -0
  123. misp_modules/modules/expansion/sigma_queries.py +61 -0
  124. misp_modules/modules/expansion/sigma_syntax_validator.py +49 -0
  125. misp_modules/modules/expansion/sigmf_expand.py +303 -0
  126. misp_modules/modules/expansion/socialscan.py +108 -0
  127. misp_modules/modules/expansion/sophoslabs_intelix.py +146 -0
  128. misp_modules/modules/expansion/sourcecache.py +57 -0
  129. misp_modules/modules/expansion/stairwell.py +156 -0
  130. misp_modules/modules/expansion/stix2_pattern_syntax_validator.py +56 -0
  131. misp_modules/modules/expansion/threatcrowd.py +170 -0
  132. misp_modules/modules/expansion/threatfox.py +75 -0
  133. misp_modules/modules/expansion/threatminer.py +152 -0
  134. misp_modules/modules/expansion/triage_submit.py +119 -0
  135. misp_modules/modules/expansion/trustar_enrich.py +235 -0
  136. misp_modules/modules/expansion/urlhaus.py +164 -0
  137. misp_modules/modules/expansion/urlscan.py +269 -0
  138. misp_modules/modules/expansion/variotdbs.py +133 -0
  139. misp_modules/modules/expansion/virustotal.py +311 -0
  140. misp_modules/modules/expansion/virustotal_public.py +272 -0
  141. misp_modules/modules/expansion/virustotal_upload.py +91 -0
  142. misp_modules/modules/expansion/vmray_submit.py +161 -0
  143. misp_modules/modules/expansion/vmware_nsx.py +628 -0
  144. misp_modules/modules/expansion/vulndb.py +292 -0
  145. misp_modules/modules/expansion/vulnerability_lookup.py +324 -0
  146. misp_modules/modules/expansion/vulners.py +81 -0
  147. misp_modules/modules/expansion/vysion.py +221 -0
  148. misp_modules/modules/expansion/whois.py +72 -0
  149. misp_modules/modules/expansion/whoisfreaks.py +232 -0
  150. misp_modules/modules/expansion/wiki.py +58 -0
  151. misp_modules/modules/expansion/xforceexchange.py +189 -0
  152. misp_modules/modules/expansion/xlsx_enrich.py +63 -0
  153. misp_modules/modules/expansion/yara_query.py +70 -0
  154. misp_modules/modules/expansion/yara_syntax_validator.py +49 -0
  155. misp_modules/modules/expansion/yeti.py +196 -0
  156. misp_modules/modules/export_mod/__init__.py +3 -0
  157. misp_modules/modules/export_mod/cef_export.py +93 -0
  158. misp_modules/modules/export_mod/cisco_firesight_manager_ACL_rule_export.py +150 -0
  159. misp_modules/modules/export_mod/defender_endpoint_export.py +141 -0
  160. misp_modules/modules/export_mod/goamlexport.py +255 -0
  161. misp_modules/modules/export_mod/liteexport.py +97 -0
  162. misp_modules/modules/export_mod/mass_eql_export.py +106 -0
  163. misp_modules/modules/export_mod/nexthinkexport.py +131 -0
  164. misp_modules/modules/export_mod/osqueryexport.py +125 -0
  165. misp_modules/modules/export_mod/pdfexport.py +107 -0
  166. misp_modules/modules/export_mod/testexport.py +73 -0
  167. misp_modules/modules/export_mod/threatStream_misp_export.py +114 -0
  168. misp_modules/modules/export_mod/threat_connect_export.py +125 -0
  169. misp_modules/modules/export_mod/virustotal_collections.py +141 -0
  170. misp_modules/modules/export_mod/vt_graph.py +120 -0
  171. misp_modules/modules/export_mod/yara_export.py +290 -0
  172. misp_modules/modules/import_mod/__init__.py +22 -0
  173. misp_modules/modules/import_mod/cof2misp.py +264 -0
  174. misp_modules/modules/import_mod/csvimport.py +319 -0
  175. misp_modules/modules/import_mod/cuckooimport.py +749 -0
  176. misp_modules/modules/import_mod/email_import.py +294 -0
  177. misp_modules/modules/import_mod/goamlimport.py +188 -0
  178. misp_modules/modules/import_mod/import_blueprint.py +93 -0
  179. misp_modules/modules/import_mod/joe_import.py +74 -0
  180. misp_modules/modules/import_mod/lastline_import.py +160 -0
  181. misp_modules/modules/import_mod/mispjson.py +73 -0
  182. misp_modules/modules/import_mod/ocr.py +122 -0
  183. misp_modules/modules/import_mod/openiocimport.py +99 -0
  184. misp_modules/modules/import_mod/taxii21.py +383 -0
  185. misp_modules/modules/import_mod/testimport.py +73 -0
  186. misp_modules/modules/import_mod/threatanalyzer_import.py +552 -0
  187. misp_modules/modules/import_mod/url_import.py +97 -0
  188. misp_modules/modules/import_mod/vmray_import.py +96 -0
  189. misp_modules/modules/import_mod/vmray_summary_json_import.py +87 -0
  190. misp_modules-2.4.196.dist-info/LICENSE +661 -0
  191. misp_modules-2.4.196.dist-info/METADATA +281 -0
  192. misp_modules-2.4.196.dist-info/RECORD +194 -0
  193. misp_modules-2.4.196.dist-info/WHEEL +4 -0
  194. misp_modules-2.4.196.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,281 @@
1
+ Metadata-Version: 2.1
2
+ Name: misp-modules
3
+ Version: 2.4.196
4
+ Summary: MISP modules are autonomous modules that can be used for expansion and other services in MISP
5
+ Home-page: https://github.com/MISP/misp-modules
6
+ License: AGPL-3.0-only
7
+ Author: Alexandre Dulaunoy
8
+ Author-email: alexandre.dulaunoy@circl.lu
9
+ Requires-Python: >=3.8,<3.13
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Security
21
+ Requires-Dist: apiosintds
22
+ Requires-Dist: assemblyline_client
23
+ Requires-Dist: backscatter
24
+ Requires-Dist: blockchain
25
+ Requires-Dist: censys (==2.0.9)
26
+ Requires-Dist: clamd
27
+ Requires-Dist: crowdstrike-falconpy
28
+ Requires-Dist: dnsdb2
29
+ Requires-Dist: domaintools_api
30
+ Requires-Dist: geoip2
31
+ Requires-Dist: greynoise
32
+ Requires-Dist: jbxapi
33
+ Requires-Dist: maclookup
34
+ Requires-Dist: markdownify
35
+ Requires-Dist: matplotlib
36
+ Requires-Dist: mattermostdriver
37
+ Requires-Dist: mwdblib
38
+ Requires-Dist: ndjson
39
+ Requires-Dist: np
40
+ Requires-Dist: numpy (==1.24.4) ; python_version >= "3.8.dev0" and python_version < "3.9.dev0"
41
+ Requires-Dist: numpy (>=1.26.4,<2.0.0) ; python_version >= "3.9"
42
+ Requires-Dist: oauth2
43
+ Requires-Dist: opencv-python
44
+ Requires-Dist: openpyxl
45
+ Requires-Dist: pandas (==1.5.3) ; python_version >= "3.8.dev0" and python_version < "3.9.dev0"
46
+ Requires-Dist: pandas (>=2.0.0) ; python_version >= "3.9"
47
+ Requires-Dist: pandas_ods_reader (==0.1.4) ; python_version >= "3.8.dev0" and python_version < "3.9.dev0"
48
+ Requires-Dist: pandas_ods_reader (>=1.0.0) ; python_version >= "3.9"
49
+ Requires-Dist: passivetotal
50
+ Requires-Dist: pdftotext
51
+ Requires-Dist: psutil
52
+ Requires-Dist: pycountry
53
+ Requires-Dist: pyeti-python3
54
+ Requires-Dist: pyeupi
55
+ Requires-Dist: pyfaup
56
+ Requires-Dist: pygeoip
57
+ Requires-Dist: pyintel471
58
+ Requires-Dist: pyipasnhistory
59
+ Requires-Dist: pymisp[email,fileobjects,openioc,pdfexport,url]
60
+ Requires-Dist: pyparsing
61
+ Requires-Dist: pypdns
62
+ Requires-Dist: pypssl
63
+ Requires-Dist: pysafebrowsing
64
+ Requires-Dist: pytesseract
65
+ Requires-Dist: python-docx
66
+ Requires-Dist: python-pptx
67
+ Requires-Dist: pyzbar
68
+ Requires-Dist: redis
69
+ Requires-Dist: requests[security]
70
+ Requires-Dist: shodan
71
+ Requires-Dist: sigmatools
72
+ Requires-Dist: sigmf
73
+ Requires-Dist: slack-sdk
74
+ Requires-Dist: socialscan (<2.0.0)
75
+ Requires-Dist: sparqlwrapper
76
+ Requires-Dist: stix2
77
+ Requires-Dist: tau-clients
78
+ Requires-Dist: taxii2-client
79
+ Requires-Dist: tornado
80
+ Requires-Dist: urlarchiver
81
+ Requires-Dist: vt-graph-api
82
+ Requires-Dist: vt-py
83
+ Requires-Dist: vulners
84
+ Requires-Dist: vysion
85
+ Requires-Dist: wand
86
+ Requires-Dist: xlrd
87
+ Requires-Dist: yara-python (==4.5.0)
88
+ Project-URL: Bug Tracker, https://github.com/MISP/misp-modules/issues
89
+ Project-URL: Documentation, https://misp.github.io/misp-modules
90
+ Project-URL: Repository, https://github.com/MISP/misp-modules
91
+ Project-URL: Source, https://github.com/MISP/misp-modules
92
+ Description-Content-Type: text/markdown
93
+
94
+ # MISP modules
95
+
96
+ [![Build status](https://github.com/MISP/misp-modules/actions/workflows/test-package.yml/badge.svg)](https://github.com/MISP/misp-modules/actions/workflows/test-package.yml)[![Coverage Status](https://coveralls.io/repos/github/MISP/misp-modules/badge.svg?branch=main)](https://coveralls.io/github/MISP/misp-modules?branch=main)
97
+ [![codecov](https://codecov.io/gh/MISP/misp-modules/branch/main/graph/badge.svg)](https://codecov.io/gh/MISP/misp-modules)
98
+
99
+ MISP modules are autonomous modules that can be used to extend [MISP](https://github.com/MISP/MISP) for new services such as expansion, import, export and workflow action.
100
+
101
+ MISP modules can be also installed and used without MISP as a [standalone tool accessible via a convenient web interface](./website).
102
+
103
+ The modules are written in Python 3 following a simple API interface. The objective is to ease the extensions of MISP functionalities
104
+ without modifying core components. The API is available via a simple REST API which is independent from MISP installation or configuration and can be used with other tools.
105
+
106
+ For more information: [Extending MISP with Python modules](https://www.misp-project.org/misp-training/3.1-misp-modules.pdf) slides from [MISP training](https://github.com/MISP/misp-training).
107
+
108
+ # Installation
109
+ Installation instructions can be found in the [installation documentation](https://misp.github.io/misp-modules/install/).
110
+
111
+ # How to add your own MISP modules?
112
+ Developing a MISP module yourself is fairly easy. Start with a template or existing module and continue from there. \
113
+ More information can be found in the [contribute](https://misp.github.io/misp-modules/contribute/) section of the documentation.
114
+
115
+ # Documentation
116
+
117
+ In order to provide documentation about some modules that require specific input / output / configuration, the [documentation](https://misp.github.io/misp-modules/) contains detailed information about the general purpose, requirements, features, input and ouput of each of these modules:
118
+
119
+ - ***description** - quick description of the general purpose of the module, as the one given by the moduleinfo
120
+ - **requirements** - special libraries needed to make the module work
121
+ - **features** - description of the way to use the module, with the required MISP features to make the module give the intended result
122
+ - **references** - link(s) giving additional information about the format concerned in the module
123
+ - **input** - description of the format of data used in input
124
+ - **output** - description of the format given as the result of the module execution
125
+
126
+ ## Licenses
127
+ For further Information see the [license file](https://misp.github.io/misp-modules/license/).
128
+
129
+ # List of MISP modules
130
+
131
+ ## Expansion Modules
132
+ * [Abuse IPDB](https://misp.github.io/misp-modules/expansion/#abuse-ipdb) - AbuseIPDB MISP expansion module
133
+ * [OSINT DigitalSide](https://misp.github.io/misp-modules/expansion/#osint-digitalside) - On demand query API for OSINT.digitalside.it project.
134
+ * [APIVoid](https://misp.github.io/misp-modules/expansion/#apivoid) - Module to query APIVoid with some domain attributes.
135
+ * [AssemblyLine Query](https://misp.github.io/misp-modules/expansion/#assemblyline-query) - A module tu query the AssemblyLine API with a submission ID to get the submission report and parse it.
136
+ * [AssemblyLine Submit](https://misp.github.io/misp-modules/expansion/#assemblyline-submit) - A module to submit samples and URLs to AssemblyLine for advanced analysis, and return the link of the submission.
137
+ * [Backscatter.io](https://misp.github.io/misp-modules/expansion/#backscatter.io) - Backscatter.io module to bring mass-scanning observations into MISP.
138
+ * [BTC Scam Check](https://misp.github.io/misp-modules/expansion/#btc-scam-check) - An expansion hover module to query a special dns blacklist to check if a bitcoin address has been abused.
139
+ * [BTC Steroids](https://misp.github.io/misp-modules/expansion/#btc-steroids) - An expansion hover module to get a blockchain balance from a BTC address in MISP.
140
+ * [Censys Enrich](https://misp.github.io/misp-modules/expansion/#censys-enrich) - An expansion module to enrich attributes in MISP by quering the censys.io API
141
+ * [CIRCL Passive DNS](https://misp.github.io/misp-modules/expansion/#circl-passive-dns) - Module to access CIRCL Passive DNS.
142
+ * [CIRCL Passive SSL](https://misp.github.io/misp-modules/expansion/#circl-passive-ssl) - Modules to access CIRCL Passive SSL.
143
+ * [ClaamAV](https://misp.github.io/misp-modules/expansion/#claamav) - Submit file to ClamAV
144
+ * [Cluster25 Expand](https://misp.github.io/misp-modules/expansion/#cluster25-expand) - Module to query Cluster25 CTI.
145
+ * [Country Code](https://misp.github.io/misp-modules/expansion/#country-code) - Module to expand country codes.
146
+ * [CPE Lookup](https://misp.github.io/misp-modules/expansion/#cpe-lookup) - An expansion module to query the CVE search API with a cpe code to get its related vulnerabilities.
147
+ * [CrowdSec CTI](https://misp.github.io/misp-modules/expansion/#crowdsec-cti) - Hover module to lookup an IP in CrowdSec's CTI
148
+ * [CrowdStrike Falcon](https://misp.github.io/misp-modules/expansion/#crowdstrike-falcon) - Module to query CrowdStrike Falcon.
149
+ * [Cuckoo Submit](https://misp.github.io/misp-modules/expansion/#cuckoo-submit) - Submit files and URLs to Cuckoo Sandbox
150
+ * [CVE Lookup](https://misp.github.io/misp-modules/expansion/#cve-lookup) - An expansion hover module to expand information about CVE id.
151
+ * [CVE Advanced Lookup](https://misp.github.io/misp-modules/expansion/#cve-advanced-lookup) - An expansion module to query the CIRCL CVE search API for more information about a vulnerability (CVE).
152
+ * [Cytomic Orion Lookup](https://misp.github.io/misp-modules/expansion/#cytomic-orion-lookup) - An expansion module to enrich attributes in MISP by quering the Cytomic Orion API
153
+ * [DBL Spamhaus Lookup](https://misp.github.io/misp-modules/expansion/#dbl-spamhaus-lookup) - Checks Spamhaus DBL for a domain name.
154
+ * [DNS Resolver](https://misp.github.io/misp-modules/expansion/#dns-resolver) - jj
155
+ * [DOCX Enrich](https://misp.github.io/misp-modules/expansion/#docx-enrich) - Module to extract freetext from a .docx document.
156
+ * [DomainTools Lookup](https://misp.github.io/misp-modules/expansion/#domaintools-lookup) - DomainTools MISP expansion module.
157
+ * [EQL Query Generator](https://misp.github.io/misp-modules/expansion/#eql-query-generator) - EQL query generation for a MISP attribute.
158
+ * [EUPI Lookup](https://misp.github.io/misp-modules/expansion/#eupi-lookup) - A module to query the Phishing Initiative service (https://phishing-initiative.lu).
159
+ * [URL Components Extractor](https://misp.github.io/misp-modules/expansion/#url-components-extractor) - Extract URL components
160
+ * [Farsight DNSDB Lookup](https://misp.github.io/misp-modules/expansion/#farsight-dnsdb-lookup) - Module to access Farsight DNSDB Passive DNS.
161
+ * [GeoIP ASN Lookup](https://misp.github.io/misp-modules/expansion/#geoip-asn-lookup) - Query a local copy of the Maxmind Geolite ASN database (MMDB format)
162
+ * [GeoIP City Lookup](https://misp.github.io/misp-modules/expansion/#geoip-city-lookup) - An expansion module to query a local copy of Maxmind's Geolite database with an IP address, in order to get information about the city where it is located.
163
+ * [GeoIP Country Lookup](https://misp.github.io/misp-modules/expansion/#geoip-country-lookup) - Query a local copy of Maxminds Geolite database, updated for MMDB format
164
+ * [Google Safe Browsing Lookup](https://misp.github.io/misp-modules/expansion/#google-safe-browsing-lookup) - Google safe browsing expansion module
165
+ * [Google Search](https://misp.github.io/misp-modules/expansion/#google-search) - An expansion hover module to expand google search information about an URL
166
+ * [Google Threat Intelligence Lookup](https://misp.github.io/misp-modules/expansion/#google-threat-intelligence-lookup) - An expansion module to have the observable's threat score assessed by Google Threat Intelligence.
167
+ * [GreyNoise Lookup](https://misp.github.io/misp-modules/expansion/#greynoise-lookup) - Module to query IP and CVE information from GreyNoise
168
+ * [Hashdd Lookup](https://misp.github.io/misp-modules/expansion/#hashdd-lookup) - A hover module to check hashes against hashdd.com including NSLR dataset.
169
+ * [CIRCL Hashlookup Lookup](https://misp.github.io/misp-modules/expansion/#circl-hashlookup-lookup) - An expansion module to query the CIRCL hashlookup services to find it if a hash is part of a known set such as NSRL.
170
+ * [Have I Been Pwned Lookup](https://misp.github.io/misp-modules/expansion/#have-i-been-pwned-lookup) - Module to access haveibeenpwned.com API.
171
+ * [HTML to Markdown](https://misp.github.io/misp-modules/expansion/#html-to-markdown) - Expansion module to fetch the html content from an url and convert it into markdown.
172
+ * [HYAS Insight Lookup](https://misp.github.io/misp-modules/expansion/#hyas-insight-lookup) - HYAS Insight integration to MISP provides direct, high volume access to HYAS Insight data. It enables investigators and analysts to understand and defend against cyber adversaries and their infrastructure.
173
+ * [Intel471 Lookup](https://misp.github.io/misp-modules/expansion/#intel471-lookup) - Module to access Intel 471
174
+ * [IP2Location.io Lookup](https://misp.github.io/misp-modules/expansion/#ip2location.io-lookup) - An expansion module to query IP2Location.io to gather more information on a given IP address.
175
+ * [IPASN-History Lookup](https://misp.github.io/misp-modules/expansion/#ipasn-history-lookup) - Module to query an IP ASN history service (https://github.com/D4-project/IPASN-History).
176
+ * [IPInfo.io Lookup](https://misp.github.io/misp-modules/expansion/#ipinfo.io-lookup) - An expansion module to query ipinfo.io to gather more information on a given IP address.
177
+ * [IPQualityScore Lookup](https://misp.github.io/misp-modules/expansion/#ipqualityscore-lookup) - IPQualityScore MISP Expansion Module for IP reputation, Email Validation, Phone Number Validation, Malicious Domain and Malicious URL Scanner.
178
+ * [IPRep Lookup](https://misp.github.io/misp-modules/expansion/#iprep-lookup) - Module to query IPRep data for IP addresses.
179
+ * [Ninja Template Rendering](https://misp.github.io/misp-modules/expansion/#ninja-template-rendering) - Render the template with the data passed
180
+ * [Joe Sandbox Import](https://misp.github.io/misp-modules/expansion/#joe-sandbox-import) - Query Joe Sandbox API with a submission url to get the json report and extract its data that is parsed and converted into MISP attributes and objects.
181
+ * [Joe Sandbox Submit](https://misp.github.io/misp-modules/expansion/#joe-sandbox-submit) - A module to submit files or URLs to Joe Sandbox for an advanced analysis, and return the link of the submission.
182
+ * [Lastline Lookup](https://misp.github.io/misp-modules/expansion/#lastline-lookup) - Deprecation notice: this module will be deprecated by December 2021, please use vmware_nsx module. Query Lastline with an analysis link and parse the report into MISP attributes and objects.
183
+ * [Lastline Submit](https://misp.github.io/misp-modules/expansion/#lastline-submit) - Deprecation notice: this module will be deprecated by December 2021, please use vmware_nsx module. Module to submit a file or URL to Lastline.
184
+ * [Macaddress.io Lookup](https://misp.github.io/misp-modules/expansion/#macaddress.io-lookup) - MISP hover module for macaddress.io
185
+ * [Macvendors Lookup](https://misp.github.io/misp-modules/expansion/#macvendors-lookup) - Module to access Macvendors API.
186
+ * [Malshare Upload](https://misp.github.io/misp-modules/expansion/#malshare-upload) - Module to push malware samples to malshare.com .
187
+ * [Malware Bazaar Lookup](https://misp.github.io/misp-modules/expansion/#malware-bazaar-lookup) - Query Malware Bazaar to get additional information about the input hash.
188
+ * [McAfee MVISION Insights Lookup](https://misp.github.io/misp-modules/expansion/#mcafee-mvision-insights-lookup) - Lookup McAfee MVISION Insights Details
189
+ * [GeoIP Enrichment](https://misp.github.io/misp-modules/expansion/#geoip-enrichment) - A hover and expansion module to enrich an ip with geolocation and ASN information from an mmdb server instance, such as CIRCL's ip.circl.lu.
190
+ * [MWDB Submit](https://misp.github.io/misp-modules/expansion/#mwdb-submit) - Module to push malware samples to a MWDB instance
191
+ * [OCR Enrich](https://misp.github.io/misp-modules/expansion/#ocr-enrich) - Module to process some optical character recognition on pictures.
192
+ * [ODS Enrich](https://misp.github.io/misp-modules/expansion/#ods-enrich) - Module to extract freetext from a .ods document.
193
+ * [ODT Enrich](https://misp.github.io/misp-modules/expansion/#odt-enrich) - Module to extract freetext from a .odt document.
194
+ * [Onyphe Lookup](https://misp.github.io/misp-modules/expansion/#onyphe-lookup) - Module to process a query on Onyphe.
195
+ * [Onyphe Full Lookup](https://misp.github.io/misp-modules/expansion/#onyphe-full-lookup) - Module to process a full query on Onyphe.
196
+ * [AlienVault OTX Lookup](https://misp.github.io/misp-modules/expansion/#alienvault-otx-lookup) - Module to get information from AlienVault OTX.
197
+ * [Passive SSH Enrichment](https://misp.github.io/misp-modules/expansion/#passive-ssh-enrichment) - An expansion module to enrich, SSH key fingerprints and IP addresses with information collected by passive-ssh
198
+ * [PassiveTotal Lookup](https://misp.github.io/misp-modules/expansion/#passivetotal-lookup) - The PassiveTotal MISP expansion module brings the datasets derived from Internet scanning directly into your MISP instance. This module supports passive DNS, historic SSL, WHOIS, and host attributes. In order to use the module, you must have a valid PassiveTotal account username and API key. Registration is free and can be done by visiting https://www.passivetotal.org/register
199
+ * [PDF Enrich](https://misp.github.io/misp-modules/expansion/#pdf-enrich) - Module to extract freetext from a PDF document.
200
+ * [PPTX Enrich](https://misp.github.io/misp-modules/expansion/#pptx-enrich) - Module to extract freetext from a .pptx document.
201
+ * [Qintel QSentry Lookup](https://misp.github.io/misp-modules/expansion/#qintel-qsentry-lookup) - A hover and expansion module which queries Qintel QSentry for ip reputation data
202
+ * [QR Code Decode](https://misp.github.io/misp-modules/expansion/#qr-code-decode) - Module to decode QR codes.
203
+ * [RandomcoinDB Lookup](https://misp.github.io/misp-modules/expansion/#randomcoindb-lookup) - Module to access the ransomcoinDB (see https://ransomcoindb.concinnity-risks.com)
204
+ * [Real-time Blackhost Lists Lookup](https://misp.github.io/misp-modules/expansion/#real-time-blackhost-lists-lookup) - Module to check an IPv4 address against known RBLs.
205
+ * [Recorded Future Enrich](https://misp.github.io/misp-modules/expansion/#recorded-future-enrich) - Module to enrich attributes with threat intelligence from Recorded Future.
206
+ * [Reverse DNS](https://misp.github.io/misp-modules/expansion/#reverse-dns) - Simple Reverse DNS expansion service to resolve reverse DNS from MISP attributes.
207
+ * [SecurityTrails Lookup](https://misp.github.io/misp-modules/expansion/#securitytrails-lookup) - An expansion modules for SecurityTrails.
208
+ * [Shodan Lookup](https://misp.github.io/misp-modules/expansion/#shodan-lookup) - Module to query on Shodan.
209
+ * [Sigma Rule Converter](https://misp.github.io/misp-modules/expansion/#sigma-rule-converter) - An expansion hover module to display the result of sigma queries.
210
+ * [Sigma Syntax Validator](https://misp.github.io/misp-modules/expansion/#sigma-syntax-validator) - An expansion hover module to perform a syntax check on sigma rules.
211
+ * [SigMF Expansion](https://misp.github.io/misp-modules/expansion/#sigmf-expansion) - Expands a SigMF Recording object into a SigMF Expanded Recording object, extracts a SigMF archive into a SigMF Recording object.
212
+ * [Socialscan Lookup](https://misp.github.io/misp-modules/expansion/#socialscan-lookup) - A hover module to get information on the availability of an email address or username on some online platforms.
213
+ * [SophosLabs Intelix Lookup](https://misp.github.io/misp-modules/expansion/#sophoslabs-intelix-lookup) - An expansion module to query the Sophoslabs intelix API to get additional information about an ip address, url, domain or sha256 attribute.
214
+ * [URL Archiver](https://misp.github.io/misp-modules/expansion/#url-archiver) - Module to cache web pages of analysis reports, OSINT sources. The module returns a link of the cached page.
215
+ * [Stairwell Lookup](https://misp.github.io/misp-modules/expansion/#stairwell-lookup) - Module to query the Stairwell API to get additional information about the input hash attribute
216
+ * [STIX2 Pattern Syntax Validator](https://misp.github.io/misp-modules/expansion/#stix2-pattern-syntax-validator) - An expansion hover module to perform a syntax check on stix2 patterns.
217
+ * [ThreatCrowd Lookup](https://misp.github.io/misp-modules/expansion/#threatcrowd-lookup) - Module to get information from ThreatCrowd.
218
+ * [ThreadFox Lookup](https://misp.github.io/misp-modules/expansion/#threadfox-lookup) - Module to search for an IOC on ThreatFox by abuse.ch.
219
+ * [ThreatMiner Lookup](https://misp.github.io/misp-modules/expansion/#threatminer-lookup) - Module to get information from ThreatMiner.
220
+ * [Triage Submit](https://misp.github.io/misp-modules/expansion/#triage-submit) - Module to submit samples to tria.ge .
221
+ * [TruSTAR Enrich](https://misp.github.io/misp-modules/expansion/#trustar-enrich) - Module to get enrich indicators with TruSTAR.
222
+ * [URLhaus Lookup](https://misp.github.io/misp-modules/expansion/#urlhaus-lookup) - Query of the URLhaus API to get additional information about the input attribute.
223
+ * [URLScan Lookup](https://misp.github.io/misp-modules/expansion/#urlscan-lookup) - An expansion module to query urlscan.io.
224
+ * [VARIoT db Lookup](https://misp.github.io/misp-modules/expansion/#variot-db-lookup) - An expansion module to query the VARIoT db API for more information about a vulnerability.
225
+ * [VirusTotal v3 Lookup](https://misp.github.io/misp-modules/expansion/#virustotal-v3-lookup) - Enrich observables with the VirusTotal v3 API
226
+ * [VirusTotal Public API Lookup](https://misp.github.io/misp-modules/expansion/#virustotal-public-api-lookup) - Enrich observables with the VirusTotal v3 public API
227
+ * [VirusTotal Upload](https://misp.github.io/misp-modules/expansion/#virustotal-upload) - Module to push malware samples to VirusTotal v3 public API
228
+ * [VMRay Submit](https://misp.github.io/misp-modules/expansion/#vmray-submit) - Module to submit a sample to VMRay.
229
+ * [VMware NSX Defender Enrich](https://misp.github.io/misp-modules/expansion/#vmware-nsx-defender-enrich) - Module to enrich a file or URL with VMware NSX Defender.
230
+ * [VulnDB Lookup](https://misp.github.io/misp-modules/expansion/#vulndb-lookup) - Module to query VulnDB (RiskBasedSecurity.com).
231
+ * [Vulnerability Lookup](https://misp.github.io/misp-modules/expansion/#vulnerability-lookup) - An expansion module to query Vulnerability Lookup
232
+ * [Vulners Lookup](https://misp.github.io/misp-modules/expansion/#vulners-lookup) - An expansion hover module to expand information about CVE id using Vulners API.
233
+ * [Vysion Enrich](https://misp.github.io/misp-modules/expansion/#vysion-enrich) - Module to enrich the information by making use of the Vysion API.
234
+ * [Whois Lookup](https://misp.github.io/misp-modules/expansion/#whois-lookup) - Module to query a local instance of uwhois (https://github.com/rafiot/uwhoisd).
235
+ * [WhoisFreaks Lookup](https://misp.github.io/misp-modules/expansion/#whoisfreaks-lookup) - An expansion module for https://whoisfreaks.com/ that will provide an enriched analysis of the provided domain, including WHOIS and DNS information.
236
+ * [Wikidata Lookup](https://misp.github.io/misp-modules/expansion/#wikidata-lookup) - An expansion hover module to extract information from Wikidata to have additional information about particular term for analysis.
237
+ * [IBM X-Force Exchange Lookup](https://misp.github.io/misp-modules/expansion/#ibm-x-force-exchange-lookup) - An expansion module for IBM X-Force Exchange.
238
+ * [XLXS Enrich](https://misp.github.io/misp-modules/expansion/#xlxs-enrich) - Module to extract freetext from a .xlsx document.
239
+ * [YARA Rule Generator](https://misp.github.io/misp-modules/expansion/#yara-rule-generator) - jj
240
+ * [YARA Syntax Validator](https://misp.github.io/misp-modules/expansion/#yara-syntax-validator) - An expansion hover module to perform a syntax check on if yara rules are valid or not.
241
+ * [Yeti Lookup](https://misp.github.io/misp-modules/expansion/#yeti-lookup) - Module to process a query on Yeti.
242
+
243
+ ## Export Modules
244
+ * [CEF Export](https://misp.github.io/misp-modules/export_mod/#cef-export) - Module to export a MISP event in CEF format.
245
+ * [Cisco fireSIGHT blockrule Export](https://misp.github.io/misp-modules/export_mod/#cisco-firesight-blockrule-export) - Module to export malicious network activity attributes to Cisco fireSIGHT manager block rules.
246
+ * [Microsoft Defender for Endpoint KQL Export](https://misp.github.io/misp-modules/export_mod/#microsoft-defender-for-endpoint-kql-export) - Defender for Endpoint KQL hunting query export module
247
+ * [GoAML Export](https://misp.github.io/misp-modules/export_mod/#goaml-export) - This module is used to export MISP events containing transaction objects into GoAML format.
248
+ * [Lite Export](https://misp.github.io/misp-modules/export_mod/#lite-export) - Lite export of a MISP event.
249
+ * [EQL Query Export](https://misp.github.io/misp-modules/export_mod/#eql-query-export) - Export MISP event in Event Query Language
250
+ * [Nexthink NXQL Export](https://misp.github.io/misp-modules/export_mod/#nexthink-nxql-export) - Nexthink NXQL query export module
251
+ * [OSQuery Export](https://misp.github.io/misp-modules/export_mod/#osquery-export) - OSQuery export of a MISP event.
252
+ * [Event to PDF Export](https://misp.github.io/misp-modules/export_mod/#event-to-pdf-export) - Simple export of a MISP event to PDF.
253
+ * [ThreatStream Export](https://misp.github.io/misp-modules/export_mod/#threatstream-export) - Module to export a structured CSV file for uploading to threatStream.
254
+ * [ThreadConnect Export](https://misp.github.io/misp-modules/export_mod/#threadconnect-export) - Module to export a structured CSV file for uploading to ThreatConnect.
255
+ * [VirusTotal Collections Export](https://misp.github.io/misp-modules/export_mod/#virustotal-collections-export) - Creates a VT Collection from an event iocs.
256
+ * [VirusTotal Graph Export](https://misp.github.io/misp-modules/export_mod/#virustotal-graph-export) - This module is used to create a VirusTotal Graph from a MISP event.
257
+ * [YARA Rule Export](https://misp.github.io/misp-modules/export_mod/#yara-rule-export) - This module is used to export MISP events to YARA.
258
+
259
+ ## Import Modules
260
+ * [PDNS COF Importer](https://misp.github.io/misp-modules/import_mod/#pdns-cof-importer) - Passive DNS Common Output Format (COF) MISP importer
261
+ * [CSV Import](https://misp.github.io/misp-modules/import_mod/#csv-import) - Module to import MISP attributes from a csv file.
262
+ * [Cuckoo Sandbox Import](https://misp.github.io/misp-modules/import_mod/#cuckoo-sandbox-import) - Module to import Cuckoo JSON.
263
+ * [Email Import](https://misp.github.io/misp-modules/import_mod/#email-import) - Email import module for MISP
264
+ * [GoAML Import](https://misp.github.io/misp-modules/import_mod/#goaml-import) - Module to import MISP objects about financial transactions from GoAML files.
265
+ * [Import Blueprint](https://misp.github.io/misp-modules/import_mod/#import-blueprint) - Generic blueprint to be copy-pasted to quickly boostrap creation of import module.
266
+ * [Joe Sandbox Import](https://misp.github.io/misp-modules/import_mod/#joe-sandbox-import) - A module to import data from a Joe Sandbox analysis json report.
267
+ * [Lastline Import](https://misp.github.io/misp-modules/import_mod/#lastline-import) - Deprecation notice: this module will be deprecated by December 2021, please use vmware_nsx module. Module to import and parse reports from Lastline analysis links.
268
+ * [MISP JSON Import](https://misp.github.io/misp-modules/import_mod/#misp-json-import) - Module to import MISP JSON format for merging MISP events.
269
+ * [OCR Import](https://misp.github.io/misp-modules/import_mod/#ocr-import) - Optical Character Recognition (OCR) module for MISP.
270
+ * [OpenIOC Import](https://misp.github.io/misp-modules/import_mod/#openioc-import) - Module to import OpenIOC packages.
271
+ * [TAXII 2.1 Import](https://misp.github.io/misp-modules/import_mod/#taxii-2.1-import) - Import content from a TAXII 2.1 server
272
+ * [ThreadAnalyzer Sandbox Import](https://misp.github.io/misp-modules/import_mod/#threadanalyzer-sandbox-import) - Module to import ThreatAnalyzer archive.zip / analysis.json files.
273
+ * [URL Import](https://misp.github.io/misp-modules/import_mod/#url-import) - Simple URL import tool with Faup
274
+ * [VMRay API Import](https://misp.github.io/misp-modules/import_mod/#vmray-api-import) - Module to import VMRay (VTI) results.
275
+ * [VMRay Summary JSON Import](https://misp.github.io/misp-modules/import_mod/#vmray-summary-json-import) - Import a VMRay Summary JSON report.
276
+
277
+ ## Action Modules
278
+ * [Mattermost](https://misp.github.io/misp-modules/action_mod/#mattermost) - Simplistic module to send message to a Mattermost channel.
279
+ * [Slack](https://misp.github.io/misp-modules/action_mod/#slack) - Simplistic module to send messages to a Slack channel.
280
+ * [Test action](https://misp.github.io/misp-modules/action_mod/#test-action) - This module is merely a test, always returning true. Triggers on event publishing.
281
+
@@ -0,0 +1,194 @@
1
+ misp_modules/__init__.py,sha256=uXc6ey7lE8dkXfxZC5r3hoPzkbmZofK9EwGxUc1stzA,13302
2
+ misp_modules/helpers/__init__.py,sha256=-pqHakfVeZmBuZBeFBGPfe4IM1jH_SbytLJAuypDQTY,20
3
+ misp_modules/helpers/cache.py,sha256=RsXgopAfktPIMMQwKgjtjFVZzQlv49Le7iLnJw7eZgE,2621
4
+ misp_modules/lib/__init__.py,sha256=bsfjRfGpqGQanrEDDpo9hdIn-Gpih8QUPZni6N0Al10,125
5
+ misp_modules/lib/_vmray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ misp_modules/lib/_vmray/parser.py,sha256=OdO7WbDIiMs_zSGmPA53yfOTs9oQmILMicwc5Q6kQ24,46842
7
+ misp_modules/lib/_vmray/rest_api.py,sha256=sMdEUBaisrAMaZZKeMYdN8ZKzHdivRaOEraLE0BPQic,5080
8
+ misp_modules/lib/cof2misp/LICENSE-2.0.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
9
+ misp_modules/lib/cof2misp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ misp_modules/lib/cof2misp/cof.py,sha256=jelydKf90x8pm-iNK-Twr5PUxYPROYrhVcUIkTufV7k,5555
11
+ misp_modules/lib/joe_mapping.py,sha256=ea_g1bKG6iTAz4wLYM-1t-WmJsmBBfFcxqjj8xCTV6A,3585
12
+ misp_modules/lib/joe_parser.py,sha256=z6dd62Ai0adAH_Pt1JHAF-t4PTwMUWHH-VNZsTr506s,26595
13
+ misp_modules/lib/lastline_api.py,sha256=oSEHmLYFmYju3O4AwOpaf3zMLRnMA-JKf4qN5hmWkjU,29943
14
+ misp_modules/lib/qintel_helper.py,sha256=X2jzfZF6Grr5gs35MDoq_lp6GyH3fK24jUYfDsWMvHg,7096
15
+ misp_modules/lib/stix2misp.py,sha256=jC1wUaOpo-guJsqMWezJ4gbtFNVxS0v-WbPNwRQNXeg,106978
16
+ misp_modules/lib/stix2misp_mapping.py,sha256=no_ZPkMGgIig_xkogdEGI0B_2AfkIs93gPaMgJaIBkM,26592
17
+ misp_modules/lib/synonymsToTagNames.json,sha256=ENnP9uqUH9ayI84ffNiKdvJ-OzEI_wC3tmxtY4jdvvg,590720
18
+ misp_modules/lib/vt_graph_parser/__init__.py,sha256=oyLB--OpQTFJDnXlobAuH3tnpidh7sgBZCeX2RsgvOM,147
19
+ misp_modules/lib/vt_graph_parser/errors.py,sha256=a4Kw4pSFWibtFGT-1lrW82XE39LT_Nq4m0utSpJ2wKc,278
20
+ misp_modules/lib/vt_graph_parser/helpers/__init__.py,sha256=_pGI8-u07lYN0bThaRtLUy47hi63yoUR30fuC_-Mewg,149
21
+ misp_modules/lib/vt_graph_parser/helpers/parsers.py,sha256=FLhNE1Hkmq-VNTuuhiv7Isl3shg5yvliq0xNuaL4O7A,2546
22
+ misp_modules/lib/vt_graph_parser/helpers/rules.py,sha256=QUUSjTCoDhZTXOK6Lf4e34V_liQDY9LjJwSPIWcN1i0,11003
23
+ misp_modules/lib/vt_graph_parser/helpers/wrappers.py,sha256=Z9xl9I0Pez1K05aRO9dvuYIo1nQyqIjJD5EB8_xAGfw,1759
24
+ misp_modules/lib/vt_graph_parser/importers/__init__.py,sha256=J_2xIFNz6X6FTqDHI4YI4_0cSFoW_UP3e6dYL2k7hXk,132
25
+ misp_modules/lib/vt_graph_parser/importers/base.py,sha256=F0pm4MiU1gg8Fi9Gh9qclnVAdIc8kA-uNqt8WlftAlA,4104
26
+ misp_modules/lib/vt_graph_parser/importers/pymisp_response.py,sha256=B-uMlEhr79OyToXTRsY1tfJd77Ygw-1BlXdv9iS3awA,3258
27
+ misp_modules/modules/__init__.py,sha256=G4MtMmrV8YKXyYNAg30PRRthsvfHczkSxRsGF5HHF_k,135
28
+ misp_modules/modules/action_mod/__init__.py,sha256=d_HFMGjYpCyCdvB3vyKvIaf-b21c8LGrFBCXvCQcaKk,48
29
+ misp_modules/modules/action_mod/_utils/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
30
+ misp_modules/modules/action_mod/_utils/utils.py,sha256=3WSckZaxz0-oT0cSnbu4iy3dhtZYWSgXxEhj-VPdRUA,1955
31
+ misp_modules/modules/action_mod/mattermost.py,sha256=wH1_8kgiLMvucHI8Yyx-NEYo26Yzv5QBWKPe6nwHJQ8,3199
32
+ misp_modules/modules/action_mod/slack.py,sha256=fZQw7q5_eW07FWkVua3_kZ8hs1swSpIsYGYehFHnO8k,2754
33
+ misp_modules/modules/action_mod/testaction.py,sha256=6w452bMi4hD5RcwrZEYVoj09lZ4P0h70bcf0wxpYtUw,1915
34
+ misp_modules/modules/expansion/__init__.py,sha256=WA0Nyh2my3ZjwGLWB5NE3nOtEVqtNAUDPBkvzLmt3rg,2419
35
+ misp_modules/modules/expansion/_dnsdb_query/COPYRIGHT,sha256=6HjsBvCI1SxzuiXKlbnPCTuR1piF4Psx-rWemquDwQY,1325
36
+ misp_modules/modules/expansion/_dnsdb_query/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
37
+ misp_modules/modules/expansion/_dnsdb_query/README.md,sha256=x1ALCr03ity8CVIuQXuCPB0kCzf9pAffwlCM49yVVr8,4340
38
+ misp_modules/modules/expansion/_dnsdb_query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ misp_modules/modules/expansion/_dnsdb_query/dnsdb_query.py,sha256=d2W_6LfPmHl26jo8mhg3Kf_PLXP_WI585Xf_sj9vyyM,11145
40
+ misp_modules/modules/expansion/_ransomcoindb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ misp_modules/modules/expansion/_ransomcoindb/ransomcoindb.py,sha256=zLk-NqJ_KOdBX_2vFWWFwEjeoX6TM7nnWirv0Xv9ANw,3351
42
+ misp_modules/modules/expansion/_vulnerability_parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ misp_modules/modules/expansion/_vulnerability_parser/vulnerability_parser.py,sha256=JQs4Va4QdmIfDRFVRjlZ3swgRekBU2M72VQHZoQhXdw,4456
44
+ misp_modules/modules/expansion/abuseipdb.py,sha256=H7nQ2J1iSCp5uUR3jXVV4cZG_15-0mrLiDtwlRyQRzE,5492
45
+ misp_modules/modules/expansion/apiosintds.py,sha256=J237FkQSMEg4QI6_u4mseWzy9JP6Tic1yp8dzSe0OMQ,23358
46
+ misp_modules/modules/expansion/apivoid.py,sha256=qblIOKU_GYcuJuLu73csw8IR8mqI26AxtlSmztcNkic,7343
47
+ misp_modules/modules/expansion/assemblyline_query.py,sha256=WRya35spSb4Js3F5JFvDj3VE5FLROns3Zdjep-_qYj4,8505
48
+ misp_modules/modules/expansion/assemblyline_submit.py,sha256=ME4SfbpiObUK4mhNqymg9tsx9wHwbDpFuV3ovEzvqJQ,3910
49
+ misp_modules/modules/expansion/backscatter_io.py,sha256=Asu_5T4zUwWDPX7IwkvhyN7ByIl7LwGYVi9w7BT7rmo,2804
50
+ misp_modules/modules/expansion/btc_scam_check.py,sha256=hRxQorSQ6jqFnDXJrZULvCVui-Co8Ysdv5Q9EppT0Ro,1674
51
+ misp_modules/modules/expansion/btc_steroids.py,sha256=Z4brMBmTBrBao80MC5OJ2afXPy5Ch5HKeG5CuG72paE,8480
52
+ misp_modules/modules/expansion/censys_enrich.py,sha256=Rxn_m1594xgz1jU1sJlpnO1_TWL4nxlxoGjapAzqz3s,12351
53
+ misp_modules/modules/expansion/circl_passivedns.py,sha256=r8CE8050OQVXVOPrZjto2pBtBxCPr8PT-VU95tDhqq4,3946
54
+ misp_modules/modules/expansion/circl_passivessl.py,sha256=NgwJFh_Hfx7F7rc6tEGOVohb0pjxKJGabdHrHqXHdcg,5013
55
+ misp_modules/modules/expansion/clamav.py,sha256=K06tnvDloAFXasToljPs3VI242i64nxZRbz--pBrLj0,4461
56
+ misp_modules/modules/expansion/cluster25_expand.py,sha256=lhW0PDutPG1rI6vPeVYOR3rjWltvBvVBAtY9IM_0res,12067
57
+ misp_modules/modules/expansion/countrycode.py,sha256=BwZ55clh37tbpaM9uQiok0RTAwaciTK-bXWDN_7D-0w,2285
58
+ misp_modules/modules/expansion/cpe.py,sha256=5aoWffcPGoVYFhzY3qUAbebYyzMa9DMSjRkcxwXbfmU,5759
59
+ misp_modules/modules/expansion/crowdsec.py,sha256=Yqjl9b3h_iFDQB6UwQHqeiZ3sj8pZEbhCFXSbrKoJUc,8755
60
+ misp_modules/modules/expansion/crowdstrike_falcon.py,sha256=rKqOchEQ-x9cbdg8LkRegHnKT1ISRvrDnb9bjBtHDCU,6841
61
+ misp_modules/modules/expansion/cuckoo_submit.py,sha256=37CHUgwUWwrH6FBvOxoR0HiOLgNAw7FKVyso5GSQrFk,4818
62
+ misp_modules/modules/expansion/cve.py,sha256=wEoLW8FSYq4HM29ynOQHSuZgFcs_B_0pzngcp_swIdg,1940
63
+ misp_modules/modules/expansion/cve_advanced.py,sha256=S_sNRKPd0_1lbz0CDuNhB8bybe0ZS7CjTPm0wOlVrzA,7983
64
+ misp_modules/modules/expansion/cytomic_orion.py,sha256=HuSsNjQonClMPxkoB4mkQYbP_BzDjTM0cb2h2EelmiI,10511
65
+ misp_modules/modules/expansion/dbl_spamhaus.py,sha256=DOnAg2hpsfK2dIMe3MciELor4jc7XiwHyTtnFi5S54s,3005
66
+ misp_modules/modules/expansion/dns.py,sha256=HQw32SKDe-I5BrNbpEFb55SGeXHiXZeTLTjJ3IJmd14,2394
67
+ misp_modules/modules/expansion/docx_enrich.py,sha256=k5Y_gaOgGTnPuaLkNBmoiMFcuBm_zYfqix6MYQIc0GY,2328
68
+ misp_modules/modules/expansion/domaintools.py,sha256=za48n_qJTRrdD0dRX6pmosgo6vUVFjCfjmq1DKwiDMM,12236
69
+ misp_modules/modules/expansion/eql.py,sha256=s1jG2QK6CRLmBB5D4QC5ujLa_UMo0WGeFKgnGznPZKM,2507
70
+ misp_modules/modules/expansion/eupi.py,sha256=BS67kRkVT-8f5E6yKg5AI_7xrerj29toubXJJJP5FHM,3034
71
+ misp_modules/modules/expansion/extract_url_components.py,sha256=InE7wj2CVOP_VQ2Ag7cj4HbBhsr7ldphDL-5nUCyWYM,2809
72
+ misp_modules/modules/expansion/farsight_passivedns.py,sha256=A6JYpYrEqg8gWwOtkDg6LciJXIqgBH0R78iMe5HFoOQ,9624
73
+ misp_modules/modules/expansion/geoip_asn.py,sha256=z6UWVl9w908EqOR_t3NDux9jNKpOBckTIBAdp4TKoI4,2716
74
+ misp_modules/modules/expansion/geoip_city.py,sha256=yYY5QCH9ChK78XM3drNKZ1_E4hDWbVyJwJeyCdAyVa8,2739
75
+ misp_modules/modules/expansion/geoip_country.py,sha256=oFdz2xYnotXCXBqUj4DeOkK8JK2A6SrNYHkGEX7tEhw,2543
76
+ misp_modules/modules/expansion/google_safe_browsing.py,sha256=pZc2qRLctaUahW-5SZcqpALSiF3eBi9xpckU3-o9Adk,3431
77
+ misp_modules/modules/expansion/google_search.py,sha256=HnKqZUzO-ivoq_QXk3jc7XdSXfgSjmvJPrMRz0DwiDM,1863
78
+ misp_modules/modules/expansion/google_threat_intelligence.py,sha256=uscLIMrVvxGQGxae1VBVvgXG50yjUpouSapM0BJZvAA,17443
79
+ misp_modules/modules/expansion/greynoise.py,sha256=6GKfRkl4Lmsru4MZn4wRtiV-L8z2t6QsUTJdtmgR08A,18504
80
+ misp_modules/modules/expansion/hashdd.py,sha256=P6gej3x7YwGpX7ZjJTBMUk9BGH8B_mJoBBV8aZHG4gA,1683
81
+ misp_modules/modules/expansion/hashlookup.py,sha256=pqumGTldruWvXR-b62IZo557NCBF6JknQGZdgfKoJ0k,5555
82
+ misp_modules/modules/expansion/hibp.py,sha256=iQcqS4j7shpKy1qhbTDub-0GHWQTFBMNvHxntMI8_rU,2304
83
+ misp_modules/modules/expansion/html_to_markdown.py,sha256=puOksQSAao7xQDlRJZqLLse6WUjbyT5mclKvB40q8c4,1689
84
+ misp_modules/modules/expansion/hyasinsight.py,sha256=_ru3F68dgRCgPvSLy1AOA5K0oATFfWBk0ykKvAcbZZ8,34996
85
+ misp_modules/modules/expansion/intel471.py,sha256=UO731pcVUpzQft48a6JbyLFEedMNLvjGqYvNRIh5ssk,2936
86
+ misp_modules/modules/expansion/intelmq_eventdb.py.experimental,sha256=KE_CDb4ZyIExkr9yLSKaDrec7Lw-1vRm30O7NWkquBo,2174
87
+ misp_modules/modules/expansion/ip2locationio.py,sha256=9unJJWb8vPLfpg2C0mZRO0EhanLgj0GzqsWJqLUeQwk,3748
88
+ misp_modules/modules/expansion/ipasn.py,sha256=f4Y-zuGeJ6UUPY5LNwmV-c9GLNeMVKvZ3srtRLqlF_s,2837
89
+ misp_modules/modules/expansion/ipinfo.py,sha256=CjB0L-tA1d77vlcKiCu9ZNRkv4qRb_9dojT4UHzeKhw,4816
90
+ misp_modules/modules/expansion/ipqs_fraud_and_risk_scoring.py,sha256=45dKuzeGh4Yzm91apfD90Fzpsc59WOSHzHqhlI3-x9c,24815
91
+ misp_modules/modules/expansion/iprep.py,sha256=T3oARJiEnvpSJM-NER_ioNH9OfcBYf6Iov44jHYZP9s,3760
92
+ misp_modules/modules/expansion/jinja_template_rendering.py,sha256=poeBBxd_mOihmcV9qyVo0Tvcy5_66Lmte0R7zIx-cqg,1296
93
+ misp_modules/modules/expansion/joesandbox_query.py,sha256=BPw9QXBNPeb_xPqVCZd8nnWwaj1M63D2AnnaOopKGsU,3823
94
+ misp_modules/modules/expansion/joesandbox_submit.py,sha256=ilZB5QY70_L___qolO8Lupka4PyAHlfhL85JBQW5t6k,4383
95
+ misp_modules/modules/expansion/lastline_query.py,sha256=D4ZcdYPmSTh4OjDyt8aHMhRqj0Czr8l6OEamo9_B6lI,4886
96
+ misp_modules/modules/expansion/lastline_submit.py,sha256=aP19ioXUlIW_qRxxqbWz3RBJrVSOdT4G2MqEkcNOBX4,5541
97
+ misp_modules/modules/expansion/macaddress_io.py,sha256=I4VJtB1tNN3gCuoDB0WeuqPV5DzcSk8pzNN8xe6AXt8,4472
98
+ misp_modules/modules/expansion/macvendors.py,sha256=_mU0te9eKB6Rnk2I4AhTaRkBVvPnYwDhqibu_j-MP64,2018
99
+ misp_modules/modules/expansion/malshare_upload.py,sha256=9E4s9-u4t1cOEMwJmdT0nCfhcMCyK0c-qc5oYv9q8F8,3201
100
+ misp_modules/modules/expansion/malwarebazaar.py,sha256=-rwEwmqFDsrkPMaerZLM67vaUsq2qYf7UNi9BgVJY3k,3247
101
+ misp_modules/modules/expansion/mcafee_insights_enrich.py,sha256=nzntHoUccW1K2MaZ7fiF7xsFmvuU18W9ybecGv_Rv44,8255
102
+ misp_modules/modules/expansion/mmdb_lookup.py,sha256=LI6_Dr5UX9yOOYOAL3is4WDkM0Oav_NTFChOdVgBnBA,7574
103
+ misp_modules/modules/expansion/module.py.skeleton,sha256=aKgl4GMhjQuZL63Y48NSIsTIi_QWLnS6adx5VNgEhlo,1516
104
+ misp_modules/modules/expansion/mwdb.py,sha256=mOgCJ_P9W_ndTTVpVsLFCH9h6CV3qvUblQHuv1Qss9Y,6729
105
+ misp_modules/modules/expansion/ocr_enrich.py,sha256=RKuYaF1GnUe3TiOJy0F9NYxQ3y_KCHaDccoCtC9k_V0,2196
106
+ misp_modules/modules/expansion/ods_enrich.py,sha256=NkAHcR_en1UBoa0GZPQlxl5h5jw-9pxlmaSw2CNlMqU,2606
107
+ misp_modules/modules/expansion/odt_enrich.py,sha256=gJoQDhv65Tf3OmfNNfkiPQmHG7lJPIJmeMtYSV0GfBo,1947
108
+ misp_modules/modules/expansion/onyphe.py,sha256=W0YQkG2P8l4cJFeqE0EQzoPo7mYYAH92E5egRrAUngc,9499
109
+ misp_modules/modules/expansion/onyphe_full.py,sha256=HSBxC6UpJKrnouuRbEH_8utTZTE5CSmOwP-JtHvUBfc,11930
110
+ misp_modules/modules/expansion/otx.py,sha256=tWAanckba43n36W_57disJ4Ex3AY3oKUcLn2wVb6HDk,5460
111
+ misp_modules/modules/expansion/passive_ssh.py,sha256=XlnSJnp-q3MyTAaFya7lAL6oFNjleHXfGPZVHDUEuHI,5140
112
+ misp_modules/modules/expansion/passivetotal.py,sha256=8gY40Ad-1-kwXjmpQ6o4dPXCfjG-434Oib2s1jZDqIo,13786
113
+ misp_modules/modules/expansion/pdf_enrich.py,sha256=aVfSn8Ab1WdKhc7vz5Eifqn3ZE6jMONEL_-Txlqq7nA,1790
114
+ misp_modules/modules/expansion/pptx_enrich.py,sha256=s1FrmDF74e5x2vQsNv5Qk-eLEa6vVS3gvBsrARRdbEc,2152
115
+ misp_modules/modules/expansion/qintel_qsentry.py,sha256=5sGNFyI3OJwSIAARTFbHFRWJaZfCF3VhDq2kgDe-CUE,5909
116
+ misp_modules/modules/expansion/qrcode.py,sha256=h86Sf1VciqE-qnwxnBbBn5DQGcWMZhzuBZowIB9TJaA,3427
117
+ misp_modules/modules/expansion/ransomcoindb.py,sha256=17qEWX9AHHQPtd5UAXAzblJDUwLdNvrgtVQSUY1c_yo,3639
118
+ misp_modules/modules/expansion/rbl.py,sha256=1r8djg2Gx2rtDuibJCJKyYo0KdUM_dNWOUROPYb_RlQ,3789
119
+ misp_modules/modules/expansion/recordedfuture.py,sha256=cAh8AIeT2Kpk1HVeSJbilQi687_r6aYGebAmodfrzBU,22852
120
+ misp_modules/modules/expansion/reversedns.py,sha256=OYgo3ml_K0tGtK-J-2Ba9DyjfL7b21ZVUuEk15RMe38,2468
121
+ misp_modules/modules/expansion/securitytrails.py,sha256=Yo1F-FImw_L0IhnC-46nFN93vk7e7wh_kIJI-WUIy4o,19308
122
+ misp_modules/modules/expansion/shodan.py,sha256=t6w-_riAvfiNUYHBtvcQw9qNMtV5eL8FfZ-dn3lu7ok,11469
123
+ misp_modules/modules/expansion/sigma_queries.py,sha256=JEuRmChd2_C-HB0ZTX1CR7_eKuQrR7YP1sAjJsD-Oes,2214
124
+ misp_modules/modules/expansion/sigma_syntax_validator.py,sha256=KRDTkJ5B4dcuzRhqg6GsQXtoC7cQvoMqpiMolTzEcQQ,1725
125
+ misp_modules/modules/expansion/sigmf_expand.py,sha256=uCj2BeE_gvSGg71LXednHtMJUZZ1vF4R55VR-tz8YJk,10372
126
+ misp_modules/modules/expansion/socialscan.py,sha256=dcCLYFOsk1o3GZoNoS-gGo3fGMxzTRWvX0izouxNT5I,3384
127
+ misp_modules/modules/expansion/sophoslabs_intelix.py,sha256=XeHwt3zwyn2PqE29SW95oYwe0xmlamyuQyU61OvD2MI,7150
128
+ misp_modules/modules/expansion/sourcecache.py,sha256=dri12Db86YI2vReLClF5sKdS5GYaCh0aPyQOERGfTC0,1971
129
+ misp_modules/modules/expansion/stairwell.py,sha256=Z3a_2WeNXYpBSzBeXJXZUtp9lWfs3cbl-aq3UDQpT6U,7336
130
+ misp_modules/modules/expansion/stix2_pattern_syntax_validator.py,sha256=M_o8VHSk1ZFe5tnZkmczloP9JfectiPhN3c8etug81M,2118
131
+ misp_modules/modules/expansion/threatcrowd.py,sha256=PgyUB9EIHO2NMlivMajzY_MduAUwY4l8j4alSimhJ9s,5302
132
+ misp_modules/modules/expansion/threatfox.py,sha256=rieiHk0LPmecfrEgF5cGixj1We4-oXW023T6zUAlwuA,2314
133
+ misp_modules/modules/expansion/threatminer.py,sha256=DkUkQXmN-xV46-621MvKgc0G7FW0DhRZgxRzPIXOfxc,6997
134
+ misp_modules/modules/expansion/triage_submit.py,sha256=vRUqmlxOLQPGqRlRmU5wdl04vbuUTq2khxKGUaCq5WE,3441
135
+ misp_modules/modules/expansion/trustar_enrich.py,sha256=psebTEwAjDDvZAxHAx0L1oLFJm_SuLxIGjn_Gbe52rc,9624
136
+ misp_modules/modules/expansion/urlhaus.py,sha256=v7Qdmx35O31PiQkTenGZHZ1IwRJTElyf9w5v_Eq7nzY,7235
137
+ misp_modules/modules/expansion/urlscan.py,sha256=et2-i_HNrxAq9T8Vq3AP3tDMbYXjyjEzysdyvLRjMdc,10607
138
+ misp_modules/modules/expansion/variotdbs.py,sha256=FhQsBWTUex35g0OwrmpwLXboRuY1b93G1dxCDFhbTOY,5442
139
+ misp_modules/modules/expansion/virustotal.py,sha256=tiuBiQR54XBVtAokmamqAlShXOA9S8kd02FeLAUQByU,14414
140
+ misp_modules/modules/expansion/virustotal_public.py,sha256=zq0ycKJFy1O-4UXsOLcU64D9luL5SIqZmxo5LoZNUt0,12243
141
+ misp_modules/modules/expansion/virustotal_upload.py,sha256=9R4eO6BRC-QxBbspNMDMB6Pa8PL8zK4IZfDPgxG2TRs,2586
142
+ misp_modules/modules/expansion/vmray_submit.py,sha256=na0J4YQFUpJLtQK91BXIxJNFDSWHE77VwqUrmRUC5zY,6237
143
+ misp_modules/modules/expansion/vmware_nsx.py,sha256=uG6u-ti6Ge-JVfmbGuP_Kd_D1c0C1fyfZa3BZocK7wA,23412
144
+ misp_modules/modules/expansion/vulndb.py,sha256=kAHsXpvB6Kbujv54FbOyW34vYKek-6ywohe3PgB96pU,14564
145
+ misp_modules/modules/expansion/vulnerability_lookup.py,sha256=kwB8x1GdzECkqnfgZsUQi925AjwRDJw-qTQ84LkZMw0,12460
146
+ misp_modules/modules/expansion/vulners.py,sha256=7r96gs5-FLnJ0ILFQFb0yVC0wUM79M2f-cxYSZq8fZE,2861
147
+ misp_modules/modules/expansion/vysion.py,sha256=sRhGfRj4-dtgaN9T4IT4Jd7QjoQTY0ucXWIQHr7qvj8,6597
148
+ misp_modules/modules/expansion/whois.py,sha256=eUZFkCqDKX9XbqkQ6PCNeF3mH-LOX1EnS5eaMBenvB4,2313
149
+ misp_modules/modules/expansion/whoisfreaks.py,sha256=LYT2f5UiwRY1NQCwHPJoqGCfebSwkoHxp7jIOGO0gMk,8443
150
+ misp_modules/modules/expansion/wiki.py,sha256=jmJUFhJliLi4JBW_TzmcRL0u8T-dCPwwr_a829uKV_Q,2170
151
+ misp_modules/modules/expansion/xforceexchange.py,sha256=d9pKx91EKDsCA75rcH8znBbBCYOdUFrsQBFf5-Tm_eo,8707
152
+ misp_modules/modules/expansion/xlsx_enrich.py,sha256=HUL0IFbam4q3UAc1q_ryyKvR3dl_T9iqE63WQ9C773U,2080
153
+ misp_modules/modules/expansion/yara_query.py,sha256=oUXK1FygFb4arQHHd7t9rLEC3eAdX7k_J4jX6o1NYNE,3174
154
+ misp_modules/modules/expansion/yara_syntax_validator.py,sha256=zzI2UQwE-wHw5UOKRVCaRcbviY4JfI1G_w-MKHE5pa0,1537
155
+ misp_modules/modules/expansion/yeti.py,sha256=ZvtJppUFTJ-86ows3B7C3B9mkSwT3SOTE9C0rQLcYo0,7657
156
+ misp_modules/modules/export_mod/__init__.py,sha256=oG_MafnrAFIpa1qJeAWqY7xt4gGVSggJyychPu1Jn8M,320
157
+ misp_modules/modules/export_mod/cef_export.py,sha256=qURgN5xwej1mj0ZobCA4uqf_bwLo4Ee2FPQk0geWNgY,3336
158
+ misp_modules/modules/export_mod/cisco_firesight_manager_ACL_rule_export.py,sha256=9CZQm5b7zcY531jmam2HXmiGAoeRfvAjsjLkVebB-Z0,5367
159
+ misp_modules/modules/export_mod/defender_endpoint_export.py,sha256=PNYZ3tStnyzojHyEE4CzQWb2eqLYKWc7loECec8l0pY,4905
160
+ misp_modules/modules/export_mod/goamlexport.py,sha256=CW_laeU-P2Mm_GMTWxkykMjJcBLfW9gMztne74VUkVw,14629
161
+ misp_modules/modules/export_mod/liteexport.py,sha256=WpeEBJh1IYS7sA3fRrBGW7Wr9zOhFGjhHJI5OoI_xqI,2641
162
+ misp_modules/modules/export_mod/mass_eql_export.py,sha256=QaXIkvGBBqtqlM-G23JUE5zZ3CNpbZvv13RmOtFRHcA,3018
163
+ misp_modules/modules/export_mod/nexthinkexport.py,sha256=F0n4b59aFT-7q0WMTFgFKfN5GlAS3EZstmaG2KA1ssQ,4276
164
+ misp_modules/modules/export_mod/osqueryexport.py,sha256=uyfeDMuhu1BWsrImz-SfZGp-M_Jx8urB6G9TbO7XOjU,3510
165
+ misp_modules/modules/export_mod/pdfexport.py,sha256=m4dkjUspJ94Yd8e9RvIpACXo0Cod7fiDT1P6CaAItkY,4410
166
+ misp_modules/modules/export_mod/testexport.py,sha256=3nEOMoW_dnCqWpJeFNxIq5pqOn-zv71l-Xf3qRikomY,1453
167
+ misp_modules/modules/export_mod/threatStream_misp_export.py,sha256=KgBS37mT01bLCXUOz7wbiFWBor_zLck4NXx5fmTloo4,3739
168
+ misp_modules/modules/export_mod/threat_connect_export.py,sha256=tUW0mRxYPJKCKsQLy5lGA-4ozdRchLYy0Nkm72hKHUc,4506
169
+ misp_modules/modules/export_mod/virustotal_collections.py,sha256=npSmSna1KHrImQHv7br122CEfzjh0e1h4YykO9jhW80,4102
170
+ misp_modules/modules/export_mod/vt_graph.py,sha256=NonIIKTdnzfcy92BEbruk26MEwTuMn__W2q5pIr7Qbw,3535
171
+ misp_modules/modules/export_mod/yara_export.py,sha256=KM_8REhK1yKf17Sq0EhN2gjxpR-quUREhi1BJCl6AZY,9532
172
+ misp_modules/modules/import_mod/__init__.py,sha256=wIUGlYB-eRsvnSbNzkv5V2jyr8KB3Q_fYcY4H8FaJZk,444
173
+ misp_modules/modules/import_mod/cof2misp.py,sha256=ShxYm05A3u2lJVEZggmUhJBd7ypPuxgTPpI0R5OeERE,9170
174
+ misp_modules/modules/import_mod/csvimport.py,sha256=5qZ34c7GViQK2ysDZ4tdlQwN-Rsztz6aQqP0oNeRCP0,16462
175
+ misp_modules/modules/import_mod/cuckooimport.py,sha256=m7mRI2kSGaXimKwyTb01c3pnIA95P2_l_Y5G3KqHlSU,27236
176
+ misp_modules/modules/import_mod/email_import.py,sha256=SqHGPUaqk9Zy8xkpJfLhiiJy-JAcCG-vHR59uqvk_XI,12249
177
+ misp_modules/modules/import_mod/goamlimport.py,sha256=cIymQHp8rNR_9PYdtz524X-bhrrw39kiFLjB1d6WKiU,10802
178
+ misp_modules/modules/import_mod/import_blueprint.py,sha256=nY1-TTDyCwZ3d2BQf9eaCgW2-rof5qRWigovCfGaAnU,2040
179
+ misp_modules/modules/import_mod/joe_import.py,sha256=Qk7pQlnUz0M_0VB2x9cDOUoEMCq3gKEq8PVi_Od-Ji8,2211
180
+ misp_modules/modules/import_mod/lastline_import.py,sha256=0pFeXYlEdaliRKuv7-LN8nU0_IUKopyo_CClOFMLUTs,4911
181
+ misp_modules/modules/import_mod/mispjson.py,sha256=xnEljAXbubw59sby9ZEWCXlXRpYDkos64CgNyaRnT58,1807
182
+ misp_modules/modules/import_mod/ocr.py,sha256=qt08USoWlTVFnINrBQhE87TH_Wira4kz8XOM5gwljOQ,3477
183
+ misp_modules/modules/import_mod/openiocimport.py,sha256=iLGWvsje8DjNJdD8fMpI4qwDAOPi_5Q131bcAxDRxYM,2895
184
+ misp_modules/modules/import_mod/taxii21.py,sha256=KfTkHnDx50fTFJ4mYLfnoNB2KubTYm34QKgV7OGyGCA,10739
185
+ misp_modules/modules/import_mod/testimport.py,sha256=SbLfb9JbgRDns_tsFfIvZfm6gNYoa1IxvLIyOJLss38,1641
186
+ misp_modules/modules/import_mod/threatanalyzer_import.py,sha256=eL4uxIHTjprbsg0SJhv9wsDwUG-wF2knfbC9SpN0eHk,32984
187
+ misp_modules/modules/import_mod/url_import.py,sha256=yqBwvMLuSR94EcotcHqNcaHpLfSPkS8zQ9PUZYZkEhs,2777
188
+ misp_modules/modules/import_mod/vmray_import.py,sha256=T7P3TBK6erC1Fh1hHBQ0BkuO75YuPeW30m_URjI3LD0,2431
189
+ misp_modules/modules/import_mod/vmray_summary_json_import.py,sha256=uPyJCXmHW-xN7QEg_gYy-Q0m9HdREhwJF7LBEKVxX7I,1862
190
+ misp_modules-2.4.196.dist-info/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
191
+ misp_modules-2.4.196.dist-info/METADATA,sha256=xRyXJ-wFzc8ZgWwhfIAgXpdOwZo6TC1qYCLTca7E7ag,28746
192
+ misp_modules-2.4.196.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
193
+ misp_modules-2.4.196.dist-info/entry_points.txt,sha256=l6HuNB6duFaus-ojrRtEINtgFEC3jVQ-rnJdMg60rpI,50
194
+ misp_modules-2.4.196.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ misp-modules=misp_modules:main
3
+