mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 19:31:51 +02:00
letsencrypt.plugins.manual: Add disclaimer about IP logging
This commit is contained in:
@@ -46,6 +46,15 @@ If you don't have HTTP server configured, you can run the following
|
|||||||
command on the target server (as root):
|
command on the target server (as root):
|
||||||
|
|
||||||
{command}
|
{command}
|
||||||
|
"""
|
||||||
|
|
||||||
|
# a disclaimer about your current IP being transmitted to Let's Encrypt's servers.
|
||||||
|
IP_DISCLAIMER = """\
|
||||||
|
NOTE: The IP of this machine will be publicly logged as having requested this certificate. \
|
||||||
|
If you're running letsencrypt in manual mode on a machine that is not your server, \
|
||||||
|
please ensure you're okay with that.
|
||||||
|
|
||||||
|
Are you OK with your IP being logged?
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# "cd /tmp/letsencrypt" makes sure user doesn't serve /root,
|
# "cd /tmp/letsencrypt" makes sure user doesn't serve /root,
|
||||||
@@ -151,6 +160,10 @@ binary for temporary key/certificate generation.""".replace("\n", "")
|
|||||||
if self._httpd.poll() is not None:
|
if self._httpd.poll() is not None:
|
||||||
raise errors.Error("Couldn't execute manual command")
|
raise errors.Error("Couldn't execute manual command")
|
||||||
else:
|
else:
|
||||||
|
if not zope.component.getUtility(interfaces.IDisplay).yesno(
|
||||||
|
self.IP_DISCLAIMER, "Yes", "No"):
|
||||||
|
raise errors.Error("Must agree to proceed")
|
||||||
|
|
||||||
self._notify_and_wait(self.MESSAGE_TEMPLATE.format(
|
self._notify_and_wait(self.MESSAGE_TEMPLATE.format(
|
||||||
validation=validation.json_dumps(), response=response,
|
validation=validation.json_dumps(), response=response,
|
||||||
uri=response.uri(achall.domain, achall.challb.chall),
|
uri=response.uri(achall.domain, achall.challb.chall),
|
||||||
|
|||||||
Reference in New Issue
Block a user