Skip to content
New issue

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

androwarn segfault in FIPS mode #5

Open
jhumphries opened this issue Aug 6, 2013 · 1 comment
Open

androwarn segfault in FIPS mode #5

jhumphries opened this issue Aug 6, 2013 · 1 comment

Comments

@jhumphries
Copy link

the updates that were made here:
SHA: 6b9845b

cause an error on RHEL6 boxes with FIPS-compliant mode active. In this mode md5 is not allowed, and forces androwarn to segfault.

The most direct fix is the following:

in apk.py line 47:

md5 = hashlib.md5()

update to

md5 = hashlib.md5(usedforsecurity=False)

this has been noted in the commit as well.

@maaaaz
Copy link
Owner

maaaaz commented Dec 30, 2018

Hello @jhumphries,

Can you test the latest version with a pip install androwarn and tell me if the FIPS bug is still valid ?

Best regards.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants