NRDAX
CLI Submit

← registry

NRDAX-T0329 - Unbounded RPC Response Amplification

Response amplification · RPC and public API · no bound · active · first seen 2025-01-01

provenance: Reproduced in NullRabbit's attack-reproduction pipeline

mechanism

The node's JSON-RPC handler for batched account-lookup calls (e.g. getMultipleAccounts) imposes no response-size accounting or cost weighting relative to request size, only a flat cap on key count. An attacker submits a small request (~4.8KB) listing well-known large program accounts (Token/BPFLoader2/BPFLoaderUpgradeable), whose ELF/program data stubs are echoed in full, driving a single request to a ~17.8MB response (3,708x amplification) and sustained ~830MB/s egress under parallel workers. The fix-class is response-size-aware rate limiting/cost accounting on batched read RPCs (weighting by bytes returned, not just item count), not a request-count cap.

live exposure

No exposure data. Slashr ↗ has no risk signal mapped to this technique yet — absence of data is not absence of exposure.

research

In-depth write-ups of this attack on nullrabbit.ai.

instances (20)

chainprimitivefidelityoriginreproducer (bundle)source
aptos aptos_f10_modules_amp lab NullRabbit Labs aptos_f10_modules_amp aptos.dev ↗
ethereum eth_call_stateoverride_large_return_buffer_amp lab NullRabbit Labs eth_call_stateoverride_large_return_buffer_amp -
ethereum eth_createaccesslist_storagekey_cardinality_fanout_amp lab NullRabbit Labs eth_createaccesslist_storagekey_cardinality_fanout_amp -
ethereum eth_getblockreceipts_full_block_receipt_log_fanout_amp lab NullRabbit Labs eth_getblockreceipts_full_block_receipt_log_fanout_amp -
ethereum eth_getlogs_response_amp lab NullRabbit Labs eth_getlogs_response_amp geth.ethereum.org ↗
ethereum eth_getlogs_wide_blockrange_full_log_return_amp lab NullRabbit Labs eth_getlogs_wide_blockrange_full_log_return_amp -
ethereum eth_simulateV1_gapblock_autofill_header_breadth_amp lab NullRabbit Labs eth_simulateV1_gapblock_autofill_header_breadth_amp -
ethereum geth_eth_receipt_flood lab reverse-engineered-cve geth_eth_receipt_flood reports.immunefi.com ↗
iota iota_f10_grpc_batch_amp lab NullRabbit Labs iota_f10_grpc_batch_amp docs.iota.org ↗
iota iota_f10_multiget_amp lab NullRabbit Labs iota_f10_multiget_amp docs.iota.org ↗
solana SOL_F10_multi_get_accounts_amp lab NullRabbit Labs SOL_F10_multi_get_accounts_amp -
solana sol_getsigs_response_amp lab NullRabbit Labs sol_getsigs_response_amp github.com ↗
solana sol_gpa_response_amp lab NullRabbit Labs sol_gpa_response_amp github.com ↗
sui sui_f10_multiget_response_amp lab NullRabbit Labs sui_f10_multiget_response_amp github.com ↗
sui sui_p05_multiget_txblocks_amp lab NullRabbit Labs sui_p05_multiget_txblocks_amp github.com ↗
xrp rippled_batch_response_amp lab NullRabbit Labs rippled_batch_response_amp github.com ↗
zcash zcash_zebra_getaddresstxids_response_amp lab NullRabbit Labs zcash_zebra_getaddresstxids_response_amp zcash.github.io ↗
zcash zcash_zebra_getaddressutxos_response_amp lab NullRabbit Labs zcash_zebra_getaddressutxos_response_amp zcash.github.io ↗
zcash zcash_zebra_getblocktemplate_response_amp lab NullRabbit Labs zcash_zebra_getblocktemplate_response_amp -
zcash zcash_zebra_getrawmempool_verbose_response_amp lab NullRabbit Labs zcash_zebra_getrawmempool_verbose_response_amp -

references

cve: CVE-2025-26819
vendor-advisory: GHPR-matter-labs-zksync-era-4860

related (Response amplification)

cite

https://nrdax.com/techniques/NRDAX-T0329

plain

NRDAX Registry. Technique NRDAX-T0329.

bibtex
@misc{nrdax_NRDAX_T0329,
  title = {Unbounded RPC Response Amplification (NRDAX-T0329)},
  howpublished = {NRDAX Registry},
  url = {https://nrdax.com/techniques/NRDAX-T0329},
}
json (csl)
{
  "id": "nrdax-NRDAX-T0329",
  "type": "dataset",
  "title": "Unbounded RPC Response Amplification (NRDAX-T0329)",
  "URL": "https://nrdax.com/techniques/NRDAX-T0329",
  "publisher": "NRDAX Registry"
}
badge

NRDAX-T0329 in the NRDAX registry

[![NRDAX-T0329 in the NRDAX registry](https://nrdax.com/badge/NRDAX-T0329.svg)](https://nrdax.com/techniques/NRDAX-T0329-unbounded-rpc-response-amplification)

use from the CLI

Retrieve or cite this technique from a script or the terminal with the NRDAX Python library & CLI.

Retrieve this technique
nrdax get NRDAX-T0329
Cite it (BibTeX)
nrdax cite NRDAX-T0329 --format bibtex

CLI guide → GitHub ↗