salesforce / ja3

JA3 is a standard for creating SSL client fingerprints in an easy to produce and shareable way.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ja3 uses = for comparison instead of ==

ryanpersaud opened this issue · 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!