Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Adrien Dorsaz
acme-dns-tiny
Commits
f3a1682d
Commit
f3a1682d
authored
Apr 06, 2017
by
Adrien Dorsaz
🐧
Browse files
acme_dns_tiny: Fix regexp update for new lines
parent
3d9e5150
Pipeline
#138
passed with stage
in 2 minutes and 53 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
acme_dns_tiny.py
View file @
f3a1682d
...
...
@@ -109,7 +109,7 @@ def get_crt(config, log=LOGGER):
common_name
=
re
.
search
(
r
"Subject:.*? CN=([^\s,;/]+)"
,
csr
)
if
common_name
is
not
None
:
domains
.
add
(
common_name
.
group
(
1
))
subject_alt_names
=
re
.
search
(
r
"X509v3 Subject Alternative Name: \r?\n
+
+([^\r\n]+)\r?\n
+
"
,
csr
,
re
.
MULTILINE
|
re
.
DOTALL
)
subject_alt_names
=
re
.
search
(
r
"X509v3 Subject Alternative Name: \r?\n +([^\r\n]+)\r?\n"
,
csr
,
re
.
MULTILINE
|
re
.
DOTALL
)
if
subject_alt_names
is
not
None
:
for
san
in
subject_alt_names
.
group
(
1
).
split
(
", "
):
if
san
.
startswith
(
"DNS:"
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment