- Products
- Learn
- Local User Groups
- Partners
- More
Firewall Uptime, Reimagined
How AIOps Simplifies Operations and Prevents Outages
Introduction to Lakera:
Securing the AI Frontier!
Check Point Named Leader
2025 Gartner® Magic Quadrant™ for Hybrid Mesh Firewall
HTTPS Inspection
Help us to understand your needs better
CheckMates Go:
SharePoint CVEs and More!
This script shows the recommended and latest versions for JHAs
#!/bin/bash
if [ -f /etc/profile.d/CP.sh ]; then
CURL="curl_cli -s"
else
CURL="curl -s"
fi
clear; printf "
# Recommended & Latest Jumbo Hotfix Accumulators per version
Version | Recommended | Latest
--------+-------------+---------
"
for VER in R80.40 R81 R81.10 R81.20; do
if [ $VER = "R81" ]; then
VER2="R81.00"
else
VER2=$VER
fi
TAKE_URL="http://sc1.checkpoint.com/documents/Jumbo_HFA/$VER/$VER2/"
$CURL "$TAKE_URL/${VER2}_Downloads.htm" |
awk ' /<h1>/ { version=substr($1,5) }
/Take.+Recommended/ { take_r=$2 }
/Take.+Latest/ { take_l=$2 }
END { printf( "%-7s | Take %-6s | Take %s\n", version, take_r, take_l?take_l:take_r) }'
done
printf "\n"
This script shows the recommended and latest versions for JHAs
#!/bin/bash if [ -f /etc/profile.d/CP.sh ]; then CURL="curl_cli -s" else CURL="curl -s" fi clear; printf " # Recommended & Latest Jumbo Hotfix Accumulators per version Version | Recommended | Latest --------+-------------+--------- " for VER in R80.40 R81 R81.10 R81.20; do if [ $VER = "R81" ]; then VER2="R81.00" else VER2=$VER fi TAKE_URL="http://sc1.checkpoint.com/documents/Jumbo_HFA/$VER/$VER2/" $CU
...;
If you want to run this script on a Gaia System you have to change CURL variable from "curl -s" to "curl_cli -s".
I changed the script to automatically detect which binary to use.
hth, Bernhard
About CheckMates
Learn Check Point
Advanced Learning
YOU DESERVE THE BEST SECURITY