diff --git a/assets/support/configdefault.json b/assets/support/configdefault.json index a144983..285ea5f 100755 --- a/assets/support/configdefault.json +++ b/assets/support/configdefault.json @@ -17,7 +17,7 @@ "alerts_ignore_validation": true, "allow_duplicate_alerts": false, "databases": [ - "https://v0lttech.com/predator/manifest/serve.php?type=hot" + "https://v0lttech.com/predator/manifest/serve.php?type=hot&user=cvieira&list=emergencyhotlist" ] }, "display": { diff --git a/ignore.py b/ignore.py index 986345c..58411a2 100755 --- a/ignore.py +++ b/ignore.py @@ -69,7 +69,7 @@ def fetch_ignore_list(): display_message("The local ignore list file does not exist. The local ignore list is effectively disabled.", 3) - remote_ignore_sources = ["https://v0lttech.com/predator/ignorelist/serve.php?key=public"] # This holds a list of hard-coded remote sources that ignore lists will be fetched from. Developers who want to deploy Predator to devices can add remote sources for ignore lists here to make them easier to manage. This allows administrators to automatically issue ignore lists from an external services. Administrators can maintain ignore lists without needing to manually modify the local ignore list for all their devices. Remote sources don't receive any telemetry from Predator, only a simple JSON list is fetched. Custom remote sources from the configuration are added in the next steps. + remote_ignore_sources = ["https://v0lttech.com/predator/manifest/serve.php?type=ignore&user=cvieira&list=publicignorelist"] # This holds a list of hard-coded remote sources that ignore lists will be fetched from. Developers who want to deploy Predator to devices can add remote sources for ignore lists here to make them easier to manage. This allows administrators to automatically issue ignore lists from an external services. Administrators can maintain ignore lists without needing to manually modify the local ignore list for all their devices. Remote sources don't receive any telemetry from Predator, only a simple JSON list is fetched. Custom remote sources from the configuration are added in the next steps. if (config["developer"]["ignore_list"]["enabled"] == True): # Only add custom remote sources if custom ignore lists are enabled in the configuration for source in config["developer"]["ignore_list"]["remote_sources"]: # Iterate through each source in the list of remote ignore list sources.