Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
megadose
GitHub Repository: megadose/holehe-maltego
Path: blob/master/extensions.py
329 views
1
from maltego_trx.decorator_registry import TransformRegistry
2
3
registry = TransformRegistry(
4
owner="Mario Rojas",
5
author="Mario Rojas <[email protected]>",
6
host_url="https://transforms.mro.com",
7
seed_ids=["holehe"]
8
)
9
10
# The rest of these attributes are optional
11
12
# metadata
13
registry.version = "0.1"
14
15
# global settings
16
# from maltego_trx.template_dir.settings import api_key_setting
17
# registry.global_settings = [api_key_setting]
18
19
# transform suffix to indicate datasource
20
# registry.display_name_suffix = " [ACME]"
21
22
# reference OAuth settings
23
# registry.oauth_settings_id = ['github-oauth']
24
25