mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00

* origin/topic/robin/bit-1641: Fixing duplicate SSH authentication failure events. I changed the test slightly; the output of uniq is not stable between operating systems (on OS-X, it emits a space, on Linux it apparently emits a tab). I removed the call to uniq - sort by itself is enough to create a difference if there are duplicate entries. Addresses BIT-1641
7 lines
171 B
Text
7 lines
171 B
Text
# @TEST-EXEC: bro -C -r $TRACES/ssh/sshguess.pcap %INPUT | sort >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
event ssh_auth_failed(c: connection)
|
|
{
|
|
print c$uid;
|
|
}
|