Skip to content

Commit dee7627

Browse files
committed
ja4 - ja4h / fix issue where number of headers in A field was hex
1 parent 5da48a8 commit dee7627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inspect/fp/ja4.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ namespace sx::ja4 {
6464

6565
std::string to_dec_2B(size_t w) {
6666
std::stringstream ss;
67-
ss << std::hex << std::setw(2) << std::setfill('0') << w;
67+
ss << std::setw(2) << std::setfill('0') << w;
6868
return ss.str();
6969
}
7070

0 commit comments

Comments
 (0)