From c88775bb8a0392800d3807cc01d1a93d089b67f9 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Thu, 20 Mar 2025 16:58:49 -0400 Subject: [PATCH] cmd/anubis: lower default difficulty to 4 Signed-off-by: Xe Iaso --- cmd/anubis/main.go | 2 +- docs/docs/CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/anubis/main.go b/cmd/anubis/main.go index c71d368..52b38d8 100644 --- a/cmd/anubis/main.go +++ b/cmd/anubis/main.go @@ -38,7 +38,7 @@ import ( var ( bind = flag.String("bind", ":8923", "TCP port to bind HTTP to") - challengeDifficulty = flag.Int("difficulty", 5, "difficulty of the challenge") + challengeDifficulty = flag.Int("difficulty", 4, "difficulty of the challenge") metricsBind = flag.String("metrics-bind", ":9090", "TCP port to bind metrics to") robotsTxt = flag.Bool("serve-robots-txt", false, "serve a robots.txt file that disallows all robots") policyFname = flag.String("policy-fname", "", "full path to anubis policy document (defaults to a sensible built-in policy)") diff --git a/docs/docs/CHANGELOG.md b/docs/docs/CHANGELOG.md index 5847c6e..f150564 100644 --- a/docs/docs/CHANGELOG.md +++ b/docs/docs/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- Lower the default difficulty to 4 from 5 - Don't duplicate work across multiple threads [#36](https://github.com/TecharoHQ/anubis/pull/36) - Documentation has been moved to https://anubis.techaro.lol/ with sources in docs/ - Removed several visible AI artifacts (e.g., 6 fingers) [#37](https://github.com/TecharoHQ/anubis/pull/37)