salesforce/ja3

ja3 uses = for comparison instead of ==

ryanpersaud opened this issue · 1 comments

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 ).

Code == fixed!