Created
May 17, 2022 16:59
-
-
Save absane/228d42347ed93244050737f531121558 to your computer and use it in GitHub Desktop.
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 | |
# Source: /usr/share/ubios-udapi-server/ips/bin/getsig.sh | |
# | |
# These are the URLs where the source data is pulled from. | |
# https://assets.unifi-ai.com/idsips/5.0.5/rules.tar.gz | |
# https://assets.unifi-ai.com/reputation/alien.list.gz | |
# https://assets.unifi-ai.com/reputation/tor.list.gz | |
UPDATEURL="https://assets.unifi-ai.com" | |
for TYPE in rules alien tor; do | |
echo "${UPDATEURL}/reputation/${TYPE}.list.gz" | |
echo "${UPDATEURL}/idsips/5.0.5/${TYPE}.tar.gz" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment