Metadata-Version: 2.1
Name: certbot-dns-domainoffensive
Version: 2.0.0
Summary: Domain-Offensive DNS Authenticator plugin for Certbot
Home-page: https://github.com/domainoffensive/certbot-dns-domainoffensive
Author: Domain-Offensive
License: Apache License 2.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Security
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: acme>=2.0.0
Requires-Dist: certbot>=2.0.0
Requires-Dist: requests
Requires-Dist: setuptools
Requires-Dist: zope.interface
Provides-Extra: docs
Requires-Dist: Sphinx>=1.0; extra == "docs"
Requires-Dist: sphinx_rtd_theme; extra == "docs"

# Domain-Offensive DNS Authenticator plugin for Certbot

## Installation
```shell
pip install certbot certbot-dns-domainoffensive
```

You can use ```certbot plugins --text``` to verify that the plugin has been installed.

```
$ certbot plugins --text
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* dns-domainoffensive
Description: Obtain certificates using a DNS TXT record (if you are using
Domain-Offensive for DNS).
Interfaces: IAuthenticator, IPlugin
Entry point: dns-domainoffensive =
certbot_dns_domainoffensive.dns_domainoffensive:Authenticator
...
```

## Configuration
Create a file with your account token in the following format:

```
$ cat /etc/certbot_credentials.ini
dns_domainoffensive_api_token = 02pAPacMv1yNnUzSDR75
```

## Generate a certificate

```shell
certbot certonly --authenticator dns-domainoffensive --dns-domainoffensive-credentials /etc/certbot_credentials.ini --agree-tos -m email@example.de -d *.yourDomain.de
```

## Further information
More detailed explanations and further details on using Certbot can be found on the official website: https://certbot.eff.org/
