Skip to content

Instantly share code, notes, and snippets.

@BastienClement
Last active April 2, 2024 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BastienClement/dfcd85ef6ee4aced02665ca8c256a280 to your computer and use it in GitHub Desktop.
Save BastienClement/dfcd85ef6ee4aced02665ca8c256a280 to your computer and use it in GitHub Desktop.
Check for CVE-2024-3094 vulnerability
#!/bin/bash
# https://www.openwall.com/lists/oss-security/2024/03/29/4
set -eu
# find path to liblzma used by sshd
path="$(ldd $(which sshd) | grep liblzma | grep -o '/[^ ]*')"
# does it even exist?
if [ "$path" == "" ]
then
echo probably not vulnerable
exit
fi
# check for function signature
if hexdump -ve '1/1 "%.2x"' "$path" | grep -q f30f1efa554889f54c89ce5389fb81e7000000804883ec28488954241848894c2410
then
echo probably vulnerable
else
echo probably not vulnerable
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment