This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Set the URL for the latest list of compromised packages | |
| COMPROMISED_LIST_URL="https://raw.githubusercontent.com/Cobenian/shai-hulud-detect/main/compromised-packages.txt" | |
| # Inform the user that the list is being downloaded | |
| echo "Downloading latest compromised packages list..." | |
| # Download the compromised packages list to a local file | |
| curl -s "$COMPROMISED_LIST_URL" -o compromised-packages.txt |