Transaction logs can be tampered with to reset rate limits #66

Open
opened 2026-04-05 16:23:08 +00:00 by Skipper · 0 comments
Owner

Info

Severity: LOW
Attack vector: offline

Impact

Allows an attacker with database write access to reset rate-limit counters and restore spending capacity.

Description

evm_transaction_log and evm_token_transfer_log are not integrity-protected even though rate and volume checks rely on them to count prior activity. Deleting rows silently reduces the observed historical usage.

Example flow

  1. Open the SQLite database offline.
  2. Delete rows from evm_transaction_log or evm_token_transfer_log.
  3. Submit new signing requests.
  4. Pass rate-limit checks because prior usage has been erased.

Mitigation

Protect log records with integrity metadata or move the counters into a tamper-evident store.

# Info **Severity**: **LOW** Attack vector: offline ## Impact Allows an attacker with database write access to reset rate-limit counters and restore spending capacity. ## Description `evm_transaction_log` and `evm_token_transfer_log` are not integrity-protected even though rate and volume checks rely on them to count prior activity. Deleting rows silently reduces the observed historical usage. ## Example flow 1. Open the SQLite database offline. 2. Delete rows from `evm_transaction_log` or `evm_token_transfer_log`. 3. Submit new signing requests. 4. Pass rate-limit checks because prior usage has been erased. ## Mitigation Protect log records with integrity metadata or move the counters into a tamper-evident store.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: MarketTakers/arbiter#66