msticpy.common.proxy_settings module

Get proxy settings from config.

Settings format

msticpy:
    Proxies:
        http:
            Url: proxy_url
            UserName: user
            Password: [PLACEHOLDER]
        https:
            Url: proxy_url
            UserName: user
            Password: [PLACEHOLDER]

The entries for the username and password can be specified as a string, an dictionary of EnvironmentVar: ENV_VAR_NAME or a dictionary of one of the following: - KeyVault: None - KeyVault: secret_name - KeyVault: vault_name/secret_name

msticpy.common.proxy_settings.get_http_proxies() Dict[str, str] | None

Return proxy settings from config.