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
During fuzzing, I've found the following with -fsanitize=undefined:
-fsanitize=undefined
runtime error: load of misaligned address 0x7b025caee261 for type 'uint16_t' (aka 'unsigned short'), which requires 2 byte alignment
at the code position in yh_util_import_wrapped():
yh_util_import_wrapped()
yubihsm-shell/lib/yubihsm.c
Line 2738 in c409285
This is undefined behavior (UB) and therefore a bug.
yh_util_import_rsa_wrapped() appears to have a second instance of this pattern that is also triggered:
yh_util_import_rsa_wrapped()
Line 2797 in c409285
The text was updated successfully, but these errors were encountered:
No branches or pull requests
During fuzzing, I've found the following with
-fsanitize=undefined
:at the code position in
yh_util_import_wrapped()
:yubihsm-shell/lib/yubihsm.c
Line 2738 in c409285
This is undefined behavior (UB) and therefore a bug.
yh_util_import_rsa_wrapped()
appears to have a second instance of this pattern that is also triggered:yubihsm-shell/lib/yubihsm.c
Line 2797 in c409285
The text was updated successfully, but these errors were encountered: