summaryrefslogtreecommitdiffstats
path: root/tests/setkey2esp-secrets.pl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 17:13:01 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 17:13:01 +0000
commit7adcb5b605cc1328a3084c334f4697ec9771936c (patch)
tree03e681bfda053978ba896745828e09cb056ad156 /tests/setkey2esp-secrets.pl
parentInitial commit. (diff)
downloadtcpdump-upstream.tar.xz
tcpdump-upstream.zip
Adding upstream version 4.99.4.upstream/4.99.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/setkey2esp-secrets.pl')
-rwxr-xr-xtests/setkey2esp-secrets.pl24
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;
+ }
+}