Skip to content

Instantly share code, notes, and snippets.

@absane
Created May 17, 2022 16:59
Show Gist options
  • Save absane/228d42347ed93244050737f531121558 to your computer and use it in GitHub Desktop.
Save absane/228d42347ed93244050737f531121558 to your computer and use it in GitHub Desktop.
#!/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