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 | |
# Script to check for vulnerable package versions affected by supply chain attack | |
# Run this script to identify potentially compromised dependencies | |
# | |
# Usage: | |
# ./check-vulnerable-packages.sh [--pnpm|--npm] | |
# | |
# Flags: | |
# --pnpm Use pnpm package manager (default if no flag specified) |
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 | |
# Script to check for vulnerable package versions affected by supply chain attack | |
# Run this script to identify potentially compromised dependencies | |
# | |
# Usage: | |
# ./check-vulnerable-packages.sh [--pnpm|--npm] | |
# | |
# Flags: | |
# --pnpm Use pnpm package manager (default if no flag specified) |