public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] backup(.pl): Replace OpenVPN DH parameter with ffdhe4096
@ 2022-12-13 15:47 Peter Müller
  2022-12-13 15:48 ` Peter Müller
  2022-12-14 18:02 ` Michael Tremer
  0 siblings, 2 replies; 6+ messages in thread
From: Peter Müller @ 2022-12-13 15:47 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1070 bytes --]

This ensures restoring a backup won't silently bring back an insecure
Diffie-Hellman parameter (which could also not be inspected through the
web interface anymore).

Reported-by: Michael Tremer <michael.tremer(a)ipfire.org>
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 config/backup/backup.pl | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/config/backup/backup.pl b/config/backup/backup.pl
index 6fd9e45bb..520d9315d 100644
--- a/config/backup/backup.pl
+++ b/config/backup/backup.pl
@@ -187,6 +187,15 @@ restore_backup() {
 	# Update OpenVPN CRL
 	/etc/fcron.daily/openvpn-crl-updater
 
+	# Replace previously used OpenVPN Diffie-Hellman parameter by ffdhe4096
+	if [ -f /var/ipfire/ovpn/server.conf ]; then
+		sed -i 's|/var/ipfire/ovpn/ca/dh1024.pem|/etc/ssl/ffdhe4096.pem|' /var/ipfire/ovpn/server.conf
+	fi
+
+	if [ -f "/var/ipfire/ovpn/n2nconf/*/*.conf" ]; then
+		sed -i 's|/var/ipfire/ovpn/ca/dh1024.pem|/etc/ssl/ffdhe4096.pem|' /var/ipfire/ovpn/n2nconf/*/*.conf
+	fi
+
 	return 0
 }
 
-- 
2.35.3

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-12-17 14:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-13 15:47 [PATCH] backup(.pl): Replace OpenVPN DH parameter with ffdhe4096 Peter Müller
2022-12-13 15:48 ` Peter Müller
2022-12-14 18:03   ` Michael Tremer
2022-12-14 18:02 ` Michael Tremer
2022-12-14 18:03   ` Michael Tremer
2022-12-17 14:44   ` Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox