-
Notifications
You must be signed in to change notification settings - Fork 75
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
type error issue (bzar_dce-rpc_consts.zeek) #19
Comments
My zeek version is : zeek version 5.1.1 |
The reason for this is that the string sets are declared incorrectly: This:
Should be
zeek used to permit this, but it was not correct syntax and it only really worked by accident (and depending on exactly what the mismatch was, might crash) |
ah, and https://github.com/mitre-attack/bzar/pull/16/files already has the fixes for this |
Should be fixed with #16 being pulled in now. |
There is type mismatching errors when parsing Sets type arrays.
It should be like : [" "], > " ",
the error messages are here:
error in string and /opt/zeek/share/zeek/site/packages/./bzar/./bzar_dce-rpc_consts.zeek, line 25: type clash (string and drsuapi::DRSReplicaSync) error in /opt/zeek/share/zeek/site/packages/./bzar/./bzar_dce-rpc_consts.zeek, line 25 and string: type mismatch (drsuapi::DRSReplicaSync and string) error in /opt/zeek/share/zeek/site/packages/./bzar/./bzar_dce-rpc_consts.zeek, lines 25-26: inconsistent type in set constructor (set(drsuapi::DRSReplicaSync, drsuapi::DRSGetNCChanges)) error in /opt/zeek/share/zeek/site/packages/./bzar/./bzar_dce-rpc_consts.zeek, lines 25-26: type clash in assignment (BZAR::t1003_006_rpc_strings = set(drsuapi::DRSReplicaSync, drsuapi::DRSGetNCChanges))
The text was updated successfully, but these errors were encountered: