This commit is contained in:
xiv3r
2024-12-03 15:07:45 +08:00
committed by GitHub
parent ba1e5bc281
commit 05dadb1c07

View File

@@ -19,12 +19,6 @@ Link="https://portswigger-cdn.net/burp/releases/download?product=pro&version=202
# Extract the version from the URL using grep and cut
version=$(echo "$Link" | grep -oP "version=\K[0-9.]+")
# Check if the version was extracted successfully
if [[ -z "$version" ]]; then
echo "Failed to extract the version from the URL."
exit 1
fi
# Download the file with the version in the output filename
wget "$Link" -O burpsuite_pro_v$version.jar --quiet --show-progress