We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This function called when building certificate chains can (and will) enter an infinite loop, causing parsing to never finish
@staticmethod def build_certificate_chain(start_ca_obj, all_ca_obj): chain = [start_ca_obj] current_ca = start_ca_obj while True: if current_ca.x509Certificate['subject'] == current_ca.x509Certificate['issuer']: # Found a self-signed certificate (root CA) break issuer_ca = ADDS.find_issuer_ca(start_ca_obj, all_ca_obj) if not issuer_ca: break chain.append(issuer_ca) current_ca = issuer_ca return [cert.Properties['certthumbprint'] for cert in chain]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This function called when building certificate chains can (and will) enter an infinite loop, causing parsing to never finish
The text was updated successfully, but these errors were encountered: