ja3 uses = for comparison instead of ==
ryanpersaud opened this issue · 1 comments
ryanpersaud commented
Throughout ja3.bro, single equals (assignment) is used for comparison in situations like:
if ( is_orig = T ) {
where I believe that == (equality) is the intended operator. I think this has been working because is_orig is always true (see issue #19 ).
jalthouse-sfdc commented
Code == fixed!