You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for this very useful script.
I recently upgraded to debian stretch from jessie. With my now installed openssl version (1.1.0.f) the script fails. It still works with OpenSSL 1.0.1t on a jessie box
It fails in
line 70: common_name = re.search("Subject:.*? CN=([^\s,;/]+)", out)
because format of CN changed
from CN=([^\s,;/]+)
to CN = ([^\s,;/]+)
the = sign is surrounded by blanks
I do not know if I am the only one with this issue, but changing the regex works for me
Thank you
Josef
The text was updated successfully, but these errors were encountered:
Hi
Thank you for this very useful script.
I recently upgraded to debian stretch from jessie. With my now installed openssl version (1.1.0.f) the script fails. It still works with OpenSSL 1.0.1t on a jessie box
It fails in
line 70:
common_name = re.search("Subject:.*? CN=([^\s,;/]+)", out)
because format of CN changed
from
CN=([^\s,;/]+)
to
CN = ([^\s,;/]+)
the = sign is surrounded by blanks
I do not know if I am the only one with this issue, but changing the regex works for me
Thank you
Josef
The text was updated successfully, but these errors were encountered: