Skip to content

Instantly share code, notes, and snippets.

@nrnw
nrnw / gist:524a6cd7b00ff27f12740d699db7ebdf
Created March 30, 2024 16:40
backdoor vulnerablity check for xz-utils
#!/bin/bash
#Check xz-utils installed
if ! command -v xz &> /dev/null
then
echo "xz-utils is not installed on this system."
exit 1
fi
# Get the version of xz-utils