Skip to content

Commit 21e5ea9

Browse files
committed
fix: [init] onion_lookup module added + clean-up of the list
1 parent 958fb3d commit 21e5ea9

File tree

1 file changed

+114
-21
lines changed

1 file changed

+114
-21
lines changed

misp_modules/modules/expansion/__init__.py

Lines changed: 114 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,120 @@
33

44
sys.path.append('{}/lib'.format('/'.join((os.path.realpath(__file__)).split('/')[:-3])))
55

6-
__all__ = ['cuckoo_submit', 'vmray_submit', 'circl_passivedns', 'circl_passivessl',
7-
'cluster25_expand', 'countrycode', 'cve', 'cve_advanced', 'cpe', 'dns', 'btc_steroids', 'domaintools',
8-
'eupi', 'eql', 'farsight_passivedns', 'ipasn', 'passivetotal', 'sourcecache', 'virustotal',
9-
'shodan', 'reversedns', 'geoip_asn', 'geoip_city', 'geoip_country', 'wiki', 'iprep',
10-
'threatminer', 'otx', 'threatcrowd', 'vulndb', 'crowdstrike_falcon',
11-
'yara_syntax_validator', 'hashdd', 'onyphe', 'onyphe_full', 'rbl',
12-
'xforceexchange', 'sigma_syntax_validator', 'stix2_pattern_syntax_validator',
13-
'sigma_queries', 'dbl_spamhaus', 'vulners', 'yara_query', 'macaddress_io',
14-
'intel471', 'backscatter_io', 'btc_scam_check', 'hibp', 'greynoise', 'macvendors',
15-
'qrcode', 'ocr_enrich', 'pdf_enrich', 'docx_enrich', 'xlsx_enrich', 'pptx_enrich',
16-
'ods_enrich', 'odt_enrich', 'joesandbox_submit', 'joesandbox_query', 'urlhaus',
17-
'virustotal_public', 'apiosintds', 'urlscan', 'securitytrails', 'apivoid',
18-
'assemblyline_submit', 'assemblyline_query', 'ransomcoindb', 'malwarebazaar',
19-
'lastline_query', 'lastline_submit', 'sophoslabs_intelix', 'cytomic_orion', 'censys_enrich',
20-
'trustar_enrich', 'recordedfuture', 'html_to_markdown', 'socialscan', 'passive_ssh',
21-
'qintel_qsentry', 'mwdb', 'hashlookup', 'mmdb_lookup', 'ipqs_fraud_and_risk_scoring',
22-
'clamav', 'jinja_template_rendering', 'hyasinsight', 'variotdbs', 'crowdsec',
23-
'extract_url_components', 'ipinfo', 'whoisfreaks', 'ip2locationio', 'stairwell',
24-
'google_threat_intelligence', 'vulnerability_lookup', 'vysion', 'mcafee_insights_enrich',
25-
'threatfox', 'yeti', 'abuseipdb', 'vmware_nsx', 'sigmf_expand', 'google_safe_browsing',
26-
'google_search', 'whois', 'triage_submit', 'virustotal_upload', 'malshare_upload', 'convert_markdown_to_pdf' ]
6+
__all__ = [
7+
'cuckoo_submit',
8+
'vmray_submit',
9+
'circl_passivedns',
10+
'circl_passivessl',
11+
'cluster25_expand',
12+
'countrycode',
13+
'cve',
14+
'cve_advanced',
15+
'cpe',
16+
'dns',
17+
'btc_steroids',
18+
'domaintools',
19+
'eupi',
20+
'eql',
21+
'farsight_passivedns',
22+
'ipasn',
23+
'passivetotal',
24+
'sourcecache',
25+
'virustotal',
26+
'shodan',
27+
'reversedns',
28+
'geoip_asn',
29+
'geoip_city',
30+
'geoip_country',
31+
'wiki',
32+
'iprep',
33+
'threatminer',
34+
'otx',
35+
'threatcrowd',
36+
'vulndb',
37+
'crowdstrike_falcon',
38+
'yara_syntax_validator',
39+
'hashdd',
40+
'onyphe',
41+
'onyphe_full',
42+
'rbl',
43+
'xforceexchange',
44+
'sigma_syntax_validator',
45+
'stix2_pattern_syntax_validator',
46+
'sigma_queries',
47+
'dbl_spamhaus',
48+
'vulners',
49+
'yara_query',
50+
'macaddress_io',
51+
'intel471',
52+
'backscatter_io',
53+
'btc_scam_check',
54+
'hibp',
55+
'greynoise',
56+
'macvendors',
57+
'qrcode',
58+
'ocr_enrich',
59+
'pdf_enrich',
60+
'docx_enrich',
61+
'xlsx_enrich',
62+
'pptx_enrich',
63+
'ods_enrich',
64+
'odt_enrich',
65+
'joesandbox_submit',
66+
'joesandbox_query',
67+
'urlhaus',
68+
'virustotal_public',
69+
'apiosintds',
70+
'urlscan',
71+
'securitytrails',
72+
'apivoid',
73+
'assemblyline_submit',
74+
'assemblyline_query',
75+
'ransomcoindb',
76+
'malwarebazaar',
77+
'lastline_query',
78+
'lastline_submit',
79+
'sophoslabs_intelix',
80+
'cytomic_orion',
81+
'censys_enrich',
82+
'trustar_enrich',
83+
'recordedfuture',
84+
'html_to_markdown',
85+
'socialscan',
86+
'passive_ssh',
87+
'qintel_qsentry',
88+
'mwdb',
89+
'hashlookup',
90+
'mmdb_lookup',
91+
'ipqs_fraud_and_risk_scoring',
92+
'clamav',
93+
'jinja_template_rendering',
94+
'hyasinsight',
95+
'variotdbs',
96+
'crowdsec',
97+
'extract_url_components',
98+
'ipinfo',
99+
'whoisfreaks',
100+
'ip2locationio',
101+
'stairwell',
102+
'google_threat_intelligence',
103+
'vulnerability_lookup',
104+
'vysion',
105+
'mcafee_insights_enrich',
106+
'threatfox',
107+
'yeti',
108+
'abuseipdb',
109+
'vmware_nsx',
110+
'sigmf_expand',
111+
'google_safe_browsing',
112+
'google_search',
113+
'whois',
114+
'triage_submit',
115+
'virustotal_upload',
116+
'malshare_upload',
117+
'convert_markdown_to_pdf',
118+
'onion_lookup.py',
119+
]
27120

28121

29122
minimum_required_fields = ('type', 'uuid', 'value')

0 commit comments

Comments
 (0)