Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1000 Bytes

DomainOffensive-Readme.md

File metadata and controls

30 lines (21 loc) · 1000 Bytes

How To Use the Domain Offensive DNS Plugin

This plugin works against the Domain Offensive DNS provider. It is assumed that you have already setup an account and created the DNS zone(s) you will be working against.

Setup

We need to retrieve an secret API token for the account that will be used to update DNS records. Further information can ba found at the (german) developer docs.

Using the Plugin

Your personal API token is specified using the DomOffToken or DomOffTokenInsecure parameter.

Windows and/or PS 6.2+ only (secure string)

$secToken = Read-Host -Prompt "Token" -AsSecureString
$pArgs = @{
    DomOffToken = $secToken
}
New-PACertificate example.com -DnsPlugin DomainOffensive -PluginArgs $pArgs

Any OS (default string)

$pArgs = @{
    DomOffTokenInsecure = 'token-value'
}
New-PACertificate example.com -DnsPlugin DomainOffensive -PluginArgs $pArgs