Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e89970a
Move PBKDF2 computation to blocking thread pool
NikolayS Sep 30, 2025
7fd65e7
Add per-IP rate limiting for authentication attempts
NikolayS Sep 30, 2025
0dc78c7
Make authentication rate limit configurable
NikolayS Sep 30, 2025
5879bb8
Comment out slow rate limiter recovery test
NikolayS Sep 30, 2025
a9ab317
Document auth_rate_limit configuration option
NikolayS Sep 30, 2025
d6c9332
Clarify block_in_place usage with trait constraint note
NikolayS Sep 30, 2025
dd103cf
Fix memory leak in rate limiter using LRU cache
NikolayS Sep 30, 2025
92fdf96
Replace unwrap() with expect() for better error messages
NikolayS Sep 30, 2025
58d5a36
Add validation to prevent disabling auth rate limiting
NikolayS Sep 30, 2025
7178ba5
Improve rate limit error logging with more context
NikolayS Sep 30, 2025
e742aeb
Document why time-based recovery test cannot use mocking
NikolayS Sep 30, 2025
82480c7
Optimize rate limiter to allow concurrent auth attempts
NikolayS Sep 30, 2025
2e23f54
Add IPv6 /64 prefix normalization to prevent bypass attacks
NikolayS Sep 30, 2025
69df07e
Remove unused dashmap dependency to avoid version conflict
NikolayS Sep 30, 2025
b9c3eab
Refactor rate limiter to use governor's keyed limiter
NikolayS Sep 30, 2025
54e85d0
Add config reload support for rate limiter
NikolayS Sep 30, 2025
5cf1a6c
Decouple tests from config defaults
NikolayS Sep 30, 2025
c23e30d
Prevent unbounded memory growth with periodic limiter reset
NikolayS Sep 30, 2025
adfe130
move scram pbkdf2 hashing off the async runtime
cursoragent Oct 25, 2025
a6f5709
make auth rate limiting optional and clarify unit
cursoragent Oct 25, 2025
382e1be
Merge pull request #4 from NikolayS/claude/update-fork-upstream-XqC1M
NikolayS Jan 7, 2026
87787ab
Fix test bugs in rate_limit module
claude Jan 7, 2026
d0416be
Merge pull request #5 from NikolayS/claude/fix-scram-dos-tests-XqC1M
NikolayS Jan 7, 2026
cf67cc0
Merge main into fix/scram-dos-protection
NikolayS Jan 13, 2026
e25bbd3
chore: remove unused Comms import
NikolayS Jan 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
rustflags = ["-C", "link-arg=--ld-path=/usr/bin/mold"]
# Use system default linker for compatibility
# (remove mold-specific flags that break with clang)
Loading
Loading