diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:13:01 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:13:01 +0000 |
commit | 7adcb5b605cc1328a3084c334f4697ec9771936c (patch) | |
tree | 03e681bfda053978ba896745828e09cb056ad156 /tests/setkey2esp-secrets.pl | |
parent | Initial commit. (diff) | |
download | tcpdump-7adcb5b605cc1328a3084c334f4697ec9771936c.tar.xz tcpdump-7adcb5b605cc1328a3084c334f4697ec9771936c.zip |
Adding upstream version 4.99.4.upstream/4.99.4
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/setkey2esp-secrets.pl')
-rwxr-xr-x | tests/setkey2esp-secrets.pl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/setkey2esp-secrets.pl b/tests/setkey2esp-secrets.pl new file mode 100755 index 0000000..92fa385 --- /dev/null +++ b/tests/setkey2esp-secrets.pl @@ -0,0 +1,24 @@ +#!/usr/local/bin/perl +# +# usage: +# setkey -D | perl thisfile > secrets.txt +# tcpdump -n -E "file secrets.txt" +# +while (<>) { + if (/^(\S+)\s+(\S+)/) { + $src = $1; + $dst = $2; + next; + } + if (/^\s+esp.*spi=(\d+)/) { + $spi = $1; + next; + } + if (/^\s+E:\s+(\S+)\s+(.*)$/) { + $algo = $1. "-hmac96"; + ($secret = $2) =~ s/\s+//g; + + printf"0x%x@%s %s:0x%s\n", $spi, $dst, $algo, $secret; + next; + } +} |