@snovon/solast 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +190 -0
- package/dist/api.d.ts +89 -0
- package/dist/api.js +33 -0
- package/dist/ast/resolve-return-names.d.ts +2 -0
- package/dist/ast/resolve-return-names.js +199 -0
- package/dist/ast/solc-walker.d.ts +17 -0
- package/dist/ast/solc-walker.js +497 -0
- package/dist/ast/storage-layout.d.ts +21 -0
- package/dist/ast/storage-layout.js +64 -0
- package/dist/cli.d.ts +65 -0
- package/dist/cli.js +755 -0
- package/dist/config.d.ts +9 -0
- package/dist/config.js +284 -0
- package/dist/dedup/files.d.ts +1 -0
- package/dist/dedup/files.js +74 -0
- package/dist/dedup/findings.d.ts +41 -0
- package/dist/dedup/findings.js +211 -0
- package/dist/detectors/_common/access-control.d.ts +204 -0
- package/dist/detectors/_common/access-control.js +377 -0
- package/dist/detectors/_common/ast.d.ts +139 -0
- package/dist/detectors/_common/ast.js +239 -0
- package/dist/detectors/_common/compiler-profile.d.ts +14 -0
- package/dist/detectors/_common/compiler-profile.js +66 -0
- package/dist/detectors/_common/dataflow.d.ts +75 -0
- package/dist/detectors/_common/dataflow.js +57 -0
- package/dist/detectors/_common/fhe.d.ts +7 -0
- package/dist/detectors/_common/fhe.js +40 -0
- package/dist/detectors/_common/integer-overflow-helpers.d.ts +58 -0
- package/dist/detectors/_common/integer-overflow-helpers.js +422 -0
- package/dist/detectors/_common/loop-call-stack.d.ts +9 -0
- package/dist/detectors/_common/loop-call-stack.js +132 -0
- package/dist/detectors/_common/oracle.d.ts +5 -0
- package/dist/detectors/_common/oracle.js +64 -0
- package/dist/detectors/_common/price-rate.d.ts +116 -0
- package/dist/detectors/_common/price-rate.js +446 -0
- package/dist/detectors/_common/source-text.d.ts +11 -0
- package/dist/detectors/_common/source-text.js +82 -0
- package/dist/detectors/_common/weighted-pool-invariant.d.ts +21 -0
- package/dist/detectors/_common/weighted-pool-invariant.js +105 -0
- package/dist/detectors/aave-v2-reentrancy.d.ts +7 -0
- package/dist/detectors/aave-v2-reentrancy.js +286 -0
- package/dist/detectors/access-control.d.ts +103 -0
- package/dist/detectors/access-control.js +983 -0
- package/dist/detectors/add-reentrancy-on-weth-contract.d.ts +7 -0
- package/dist/detectors/add-reentrancy-on-weth-contract.js +536 -0
- package/dist/detectors/ai-generated-randomness.d.ts +32 -0
- package/dist/detectors/ai-generated-randomness.js +239 -0
- package/dist/detectors/amm-spot-oracle-manipulation.d.ts +52 -0
- package/dist/detectors/amm-spot-oracle-manipulation.js +420 -0
- package/dist/detectors/analyzing-the-uniswap-v3-exploit.d.ts +26 -0
- package/dist/detectors/analyzing-the-uniswap-v3-exploit.js +279 -0
- package/dist/detectors/any-token-is-destroyed.d.ts +34 -0
- package/dist/detectors/any-token-is-destroyed.js +527 -0
- package/dist/detectors/anyswap-anytoken-permit-allowance-drain.d.ts +7 -0
- package/dist/detectors/anyswap-anytoken-permit-allowance-drain.js +524 -0
- package/dist/detectors/anyswap-insufficient-token-validation.d.ts +24 -0
- package/dist/detectors/anyswap-insufficient-token-validation.js +342 -0
- package/dist/detectors/approval-based-drain.d.ts +7 -0
- package/dist/detectors/approval-based-drain.js +772 -0
- package/dist/detectors/arbitrary-account-balance-transfer.d.ts +7 -0
- package/dist/detectors/arbitrary-account-balance-transfer.js +485 -0
- package/dist/detectors/arbitrary-address-spoofing-attack.d.ts +7 -0
- package/dist/detectors/arbitrary-address-spoofing-attack.js +444 -0
- package/dist/detectors/arbitrary-address-spoofing.d.ts +9 -0
- package/dist/detectors/arbitrary-address-spoofing.js +657 -0
- package/dist/detectors/arbitrary-call-error.d.ts +127 -0
- package/dist/detectors/arbitrary-call-error.js +1163 -0
- package/dist/detectors/arbitrary-call.d.ts +4 -0
- package/dist/detectors/arbitrary-call.js +11 -0
- package/dist/detectors/arbitrary-delegatecall-target.d.ts +35 -0
- package/dist/detectors/arbitrary-delegatecall-target.js +554 -0
- package/dist/detectors/arbitrary-recipient-no-access-control.d.ts +7 -0
- package/dist/detectors/arbitrary-recipient-no-access-control.js +638 -0
- package/dist/detectors/arbitrary-storage-proof-forgery.d.ts +35 -0
- package/dist/detectors/arbitrary-storage-proof-forgery.js +340 -0
- package/dist/detectors/arbitrary-transfer-from.d.ts +38 -0
- package/dist/detectors/arbitrary-transfer-from.js +339 -0
- package/dist/detectors/arbitrum-cross-chain-message-replay.d.ts +22 -0
- package/dist/detectors/arbitrum-cross-chain-message-replay.js +477 -0
- package/dist/detectors/avs-slashing-without-quorum-check.d.ts +50 -0
- package/dist/detectors/avs-slashing-without-quorum-check.js +386 -0
- package/dist/detectors/bad-debt-propagation.d.ts +13 -0
- package/dist/detectors/bad-debt-propagation.js +480 -0
- package/dist/detectors/bad-k-value-verification.d.ts +7 -0
- package/dist/detectors/bad-k-value-verification.js +512 -0
- package/dist/detectors/bad-randomness-zero-blockhash.d.ts +29 -0
- package/dist/detectors/bad-randomness-zero-blockhash.js +115 -0
- package/dist/detectors/balancer-flash-loan-manipulation.d.ts +33 -0
- package/dist/detectors/balancer-flash-loan-manipulation.js +178 -0
- package/dist/detectors/balancer-pause-guard.d.ts +33 -0
- package/dist/detectors/balancer-pause-guard.js +307 -0
- package/dist/detectors/balancer-weighted-pool-flash-loan.d.ts +42 -0
- package/dist/detectors/balancer-weighted-pool-flash-loan.js +275 -0
- package/dist/detectors/batch-transfer-overflow.d.ts +7 -0
- package/dist/detectors/batch-transfer-overflow.js +465 -0
- package/dist/detectors/beneficiary-validation.d.ts +7 -0
- package/dist/detectors/beneficiary-validation.js +696 -0
- package/dist/detectors/borrow-behalf-consent.d.ts +7 -0
- package/dist/detectors/borrow-behalf-consent.js +400 -0
- package/dist/detectors/break-continue-scope.d.ts +7 -0
- package/dist/detectors/break-continue-scope.js +194 -0
- package/dist/detectors/bridge-accounting-bypass.d.ts +65 -0
- package/dist/detectors/bridge-accounting-bypass.js +449 -0
- package/dist/detectors/bridge-business-logic-flaw-incorrect-acc.d.ts +43 -0
- package/dist/detectors/bridge-business-logic-flaw-incorrect-acc.js +394 -0
- package/dist/detectors/bridge-collateral-drain.d.ts +7 -0
- package/dist/detectors/bridge-collateral-drain.js +630 -0
- package/dist/detectors/bridge-forged-proof.d.ts +7 -0
- package/dist/detectors/bridge-forged-proof.js +754 -0
- package/dist/detectors/bridge-missing-message-nonce.d.ts +57 -0
- package/dist/detectors/bridge-missing-message-nonce.js +638 -0
- package/dist/detectors/bridge-swap-metapool-attack.d.ts +20 -0
- package/dist/detectors/bridge-swap-metapool-attack.js +230 -0
- package/dist/detectors/business-logic-flaw-flashloan-price-mani.d.ts +7 -0
- package/dist/detectors/business-logic-flaw-flashloan-price-mani.js +353 -0
- package/dist/detectors/business-logic-flaw-incorrect-recipient-balance.d.ts +7 -0
- package/dist/detectors/business-logic-flaw-incorrect-recipient-balance.js +403 -0
- package/dist/detectors/business-logic-flaw.d.ts +21 -0
- package/dist/detectors/business-logic-flaw.js +339 -0
- package/dist/detectors/business-logic.d.ts +17 -0
- package/dist/detectors/business-logic.js +22 -0
- package/dist/detectors/bypassed-insolvency-check.d.ts +30 -0
- package/dist/detectors/bypassed-insolvency-check.js +232 -0
- package/dist/detectors/bytecode-divergence-risk.d.ts +32 -0
- package/dist/detectors/bytecode-divergence-risk.js +150 -0
- package/dist/detectors/cache-array-length.d.ts +30 -0
- package/dist/detectors/cache-array-length.js +177 -0
- package/dist/detectors/cache-storage-reads.d.ts +46 -0
- package/dist/detectors/cache-storage-reads.js +323 -0
- package/dist/detectors/calldata-secret-access-control.d.ts +36 -0
- package/dist/detectors/calldata-secret-access-control.js +446 -0
- package/dist/detectors/capital-cross-contract-reentrancy.d.ts +34 -0
- package/dist/detectors/capital-cross-contract-reentrancy.js +481 -0
- package/dist/detectors/cartel-custom-approval-logic.d.ts +7 -0
- package/dist/detectors/cartel-custom-approval-logic.js +407 -0
- package/dist/detectors/ccip-receiver-missing-replay-guard.d.ts +22 -0
- package/dist/detectors/ccip-receiver-missing-replay-guard.js +413 -0
- package/dist/detectors/chain-coupling-risk.d.ts +8 -0
- package/dist/detectors/chain-coupling-risk.js +203 -0
- package/dist/detectors/chainlink-deprecated-function.d.ts +7 -0
- package/dist/detectors/chainlink-deprecated-function.js +205 -0
- package/dist/detectors/chainlink-tx-origin.d.ts +7 -0
- package/dist/detectors/chainlink-tx-origin.js +363 -0
- package/dist/detectors/check-effects-interactions.d.ts +39 -0
- package/dist/detectors/check-effects-interactions.js +783 -0
- package/dist/detectors/check-permit-missing-chainid.d.ts +27 -0
- package/dist/detectors/check-permit-missing-chainid.js +456 -0
- package/dist/detectors/classic-reentrancy.d.ts +93 -0
- package/dist/detectors/classic-reentrancy.js +645 -0
- package/dist/detectors/coinbase-morpho-wethloan-policy.d.ts +29 -0
- package/dist/detectors/coinbase-morpho-wethloan-policy.js +368 -0
- package/dist/detectors/compoundv2-inflation-attack.d.ts +7 -0
- package/dist/detectors/compoundv2-inflation-attack.js +675 -0
- package/dist/detectors/constructor-address-validation.d.ts +24 -0
- package/dist/detectors/constructor-address-validation.js +335 -0
- package/dist/detectors/constructor-interface-no-address-validation.d.ts +32 -0
- package/dist/detectors/constructor-interface-no-address-validation.js +283 -0
- package/dist/detectors/cross-chain-arbitrary-call.d.ts +7 -0
- package/dist/detectors/cross-chain-arbitrary-call.js +601 -0
- package/dist/detectors/cross-chain-input-validation.d.ts +31 -0
- package/dist/detectors/cross-chain-input-validation.js +347 -0
- package/dist/detectors/cross-chain-intent-replay.d.ts +38 -0
- package/dist/detectors/cross-chain-intent-replay.js +453 -0
- package/dist/detectors/cross-chain-intent-stale-resolution.d.ts +7 -0
- package/dist/detectors/cross-chain-intent-stale-resolution.js +463 -0
- package/dist/detectors/cross-chain-message-order-dependency.d.ts +8 -0
- package/dist/detectors/cross-chain-message-order-dependency.js +472 -0
- package/dist/detectors/cross-chain-message-replay.d.ts +8 -0
- package/dist/detectors/cross-chain-message-replay.js +568 -0
- package/dist/detectors/cross-chain-messaging.d.ts +7 -0
- package/dist/detectors/cross-chain-messaging.js +663 -0
- package/dist/detectors/cross-chain-msg-truncation.d.ts +7 -0
- package/dist/detectors/cross-chain-msg-truncation.js +453 -0
- package/dist/detectors/cross-chain-truncation.d.ts +7 -0
- package/dist/detectors/cross-chain-truncation.js +422 -0
- package/dist/detectors/cross-contract-integer-overflow.d.ts +76 -0
- package/dist/detectors/cross-contract-integer-overflow.js +554 -0
- package/dist/detectors/cross-contract-reentrancy-trusted-callee.d.ts +39 -0
- package/dist/detectors/cross-contract-reentrancy-trusted-callee.js +385 -0
- package/dist/detectors/cross-contract-reentrancy.d.ts +63 -0
- package/dist/detectors/cross-contract-reentrancy.js +631 -0
- package/dist/detectors/cross-function-reentrancy.d.ts +37 -0
- package/dist/detectors/cross-function-reentrancy.js +648 -0
- package/dist/detectors/cross-protocol-contagion.d.ts +20 -0
- package/dist/detectors/cross-protocol-contagion.js +445 -0
- package/dist/detectors/cross-protocol-oracle-collateral.d.ts +38 -0
- package/dist/detectors/cross-protocol-oracle-collateral.js +487 -0
- package/dist/detectors/cross-vm-reentrancy.d.ts +7 -0
- package/dist/detectors/cross-vm-reentrancy.js +484 -0
- package/dist/detectors/decimals-mismatch.d.ts +89 -0
- package/dist/detectors/decimals-mismatch.js +451 -0
- package/dist/detectors/deferred-state-update.d.ts +16 -0
- package/dist/detectors/deferred-state-update.js +35 -0
- package/dist/detectors/deflationary-token.d.ts +27 -0
- package/dist/detectors/deflationary-token.js +751 -0
- package/dist/detectors/delegate-transfer-unrestricted-caller.d.ts +44 -0
- package/dist/detectors/delegate-transfer-unrestricted-caller.js +410 -0
- package/dist/detectors/delegatecall-fallback-reentrancy-bypass.d.ts +14 -0
- package/dist/detectors/delegatecall-fallback-reentrancy-bypass.js +241 -0
- package/dist/detectors/delegatecall-in-loops.d.ts +7 -0
- package/dist/detectors/delegatecall-in-loops.js +129 -0
- package/dist/detectors/delegatecall-init-owner-mutator.d.ts +8 -0
- package/dist/detectors/delegatecall-init-owner-mutator.js +655 -0
- package/dist/detectors/delegatecall-init.d.ts +7 -0
- package/dist/detectors/delegatecall-init.js +769 -0
- package/dist/detectors/delegatecall-untrusted-implementation.d.ts +41 -0
- package/dist/detectors/delegatecall-untrusted-implementation.js +888 -0
- package/dist/detectors/delegated-authorization-bypass.d.ts +7 -0
- package/dist/detectors/delegated-authorization-bypass.js +370 -0
- package/dist/detectors/denial-of-service.d.ts +117 -0
- package/dist/detectors/denial-of-service.js +947 -0
- package/dist/detectors/division-before-multiplication.d.ts +7 -0
- package/dist/detectors/division-before-multiplication.js +303 -0
- package/dist/detectors/dn404-mirror-access-control.d.ts +26 -0
- package/dist/detectors/dn404-mirror-access-control.js +315 -0
- package/dist/detectors/doge-flashloan.d.ts +29 -0
- package/dist/detectors/doge-flashloan.js +329 -0
- package/dist/detectors/donate-inflation-exchangerate-roundin.d.ts +7 -0
- package/dist/detectors/donate-inflation-exchangerate-roundin.js +621 -0
- package/dist/detectors/donation-share-inflation.d.ts +24 -0
- package/dist/detectors/donation-share-inflation.js +466 -0
- package/dist/detectors/dont-let-eth-get-rekt.d.ts +84 -0
- package/dist/detectors/dont-let-eth-get-rekt.js +1151 -0
- package/dist/detectors/dos-unbounded-loop-external-call-revert.d.ts +37 -0
- package/dist/detectors/dos-unbounded-loop-external-call-revert.js +541 -0
- package/dist/detectors/eip1167-proxy-reentrancy.d.ts +7 -0
- package/dist/detectors/eip1167-proxy-reentrancy.js +508 -0
- package/dist/detectors/eip4626-vault-reentrancy.d.ts +32 -0
- package/dist/detectors/eip4626-vault-reentrancy.js +312 -0
- package/dist/detectors/eip5792-auth-replay.d.ts +45 -0
- package/dist/detectors/eip5792-auth-replay.js +519 -0
- package/dist/detectors/eip712-domain-separator.d.ts +42 -0
- package/dist/detectors/eip712-domain-separator.js +524 -0
- package/dist/detectors/eip712-signature-verification.d.ts +49 -0
- package/dist/detectors/eip712-signature-verification.js +689 -0
- package/dist/detectors/eip7702-auth-replay.d.ts +7 -0
- package/dist/detectors/eip7702-auth-replay.js +768 -0
- package/dist/detectors/eip7702-cross-chain-replay.d.ts +27 -0
- package/dist/detectors/eip7702-cross-chain-replay.js +307 -0
- package/dist/detectors/eip7702-delegated-eoa-approval-race.d.ts +39 -0
- package/dist/detectors/eip7702-delegated-eoa-approval-race.js +413 -0
- package/dist/detectors/eip7702-delegation-reentrancy.d.ts +21 -0
- package/dist/detectors/eip7702-delegation-reentrancy.js +705 -0
- package/dist/detectors/eip7702-delegation-risk.d.ts +7 -0
- package/dist/detectors/eip7702-delegation-risk.js +745 -0
- package/dist/detectors/eip7702-eoa-assumption.d.ts +57 -0
- package/dist/detectors/eip7702-eoa-assumption.js +461 -0
- package/dist/detectors/erc1155-batch-missing-per-id-approval.d.ts +23 -0
- package/dist/detectors/erc1155-batch-missing-per-id-approval.js +343 -0
- package/dist/detectors/erc1155-reentrancy.d.ts +31 -0
- package/dist/detectors/erc1155-reentrancy.js +217 -0
- package/dist/detectors/erc1271-stub-implementation.d.ts +21 -0
- package/dist/detectors/erc1271-stub-implementation.js +268 -0
- package/dist/detectors/erc20-safe-wrapper-return-unchecked.d.ts +43 -0
- package/dist/detectors/erc20-safe-wrapper-return-unchecked.js +368 -0
- package/dist/detectors/erc20-unchecked-non-standard-return.d.ts +55 -0
- package/dist/detectors/erc20-unchecked-non-standard-return.js +454 -0
- package/dist/detectors/erc2612-permit-frontrunning.d.ts +23 -0
- package/dist/detectors/erc2612-permit-frontrunning.js +246 -0
- package/dist/detectors/erc2771-context-spoofing.d.ts +41 -0
- package/dist/detectors/erc2771-context-spoofing.js +510 -0
- package/dist/detectors/erc4337-validation-storage-access.d.ts +35 -0
- package/dist/detectors/erc4337-validation-storage-access.js +232 -0
- package/dist/detectors/erc4626-totalassets-stub.d.ts +17 -0
- package/dist/detectors/erc4626-totalassets-stub.js +216 -0
- package/dist/detectors/erc6909-balance-overflow.d.ts +7 -0
- package/dist/detectors/erc6909-balance-overflow.js +688 -0
- package/dist/detectors/erc6909-operator-scope.d.ts +49 -0
- package/dist/detectors/erc6909-operator-scope.js +494 -0
- package/dist/detectors/erc721-unchecked-transfer.d.ts +38 -0
- package/dist/detectors/erc721-unchecked-transfer.js +364 -0
- package/dist/detectors/erc7579-module-install-without-threshold.d.ts +40 -0
- package/dist/detectors/erc7579-module-install-without-threshold.js +338 -0
- package/dist/detectors/erc7683-fill-validation.d.ts +53 -0
- package/dist/detectors/erc7683-fill-validation.js +758 -0
- package/dist/detectors/erc7683-intent-resolution.d.ts +7 -0
- package/dist/detectors/erc7683-intent-resolution.js +457 -0
- package/dist/detectors/erc777-callback-reentrancy.d.ts +8 -0
- package/dist/detectors/erc777-callback-reentrancy.js +439 -0
- package/dist/detectors/erc777-reentrancy.d.ts +7 -0
- package/dist/detectors/erc777-reentrancy.js +488 -0
- package/dist/detectors/erc777-tokens-to-send-reentrancy.d.ts +47 -0
- package/dist/detectors/erc777-tokens-to-send-reentrancy.js +674 -0
- package/dist/detectors/estuary-token-flaw.d.ts +16 -0
- package/dist/detectors/estuary-token-flaw.js +547 -0
- package/dist/detectors/euler-debt-token-manipulation.d.ts +32 -0
- package/dist/detectors/euler-debt-token-manipulation.js +347 -0
- package/dist/detectors/exploiting-a-vulnerability-in-curve-fina.d.ts +29 -0
- package/dist/detectors/exploiting-a-vulnerability-in-curve-fina.js +210 -0
- package/dist/detectors/fallback-delegatecall-reentrancy.d.ts +14 -0
- package/dist/detectors/fallback-delegatecall-reentrancy.js +236 -0
- package/dist/detectors/farm-business-logic-flaw-lack-of-access.d.ts +7 -0
- package/dist/detectors/farm-business-logic-flaw-lack-of-access.js +665 -0
- package/dist/detectors/fee-mechanism-exploitation.d.ts +20 -0
- package/dist/detectors/fee-mechanism-exploitation.js +400 -0
- package/dist/detectors/fee-on-transfer-balance-mismatch.d.ts +49 -0
- package/dist/detectors/fee-on-transfer-balance-mismatch.js +394 -0
- package/dist/detectors/fhe-encrypted-input-validation.d.ts +29 -0
- package/dist/detectors/fhe-encrypted-input-validation.js +210 -0
- package/dist/detectors/fhe-handle-leakage.d.ts +44 -0
- package/dist/detectors/fhe-handle-leakage.js +315 -0
- package/dist/detectors/fhe-oz-pattern-misuse.d.ts +26 -0
- package/dist/detectors/fhe-oz-pattern-misuse.js +311 -0
- package/dist/detectors/fhe-state-leakage.d.ts +8 -0
- package/dist/detectors/fhe-state-leakage.js +400 -0
- package/dist/detectors/fi-bridges.d.ts +33 -0
- package/dist/detectors/fi-bridges.js +428 -0
- package/dist/detectors/finance-access-control-price-oracle-man.d.ts +9 -0
- package/dist/detectors/finance-access-control-price-oracle-man.js +640 -0
- package/dist/detectors/finance-bridge-address0safetransferfrom.d.ts +8 -0
- package/dist/detectors/finance-bridge-address0safetransferfrom.js +574 -0
- package/dist/detectors/finance-business-logic-in-mint.d.ts +54 -0
- package/dist/detectors/finance-business-logic-in-mint.js +687 -0
- package/dist/detectors/finance-erc667-reentrancy.d.ts +7 -0
- package/dist/detectors/finance-erc667-reentrancy.js +509 -0
- package/dist/detectors/finance-flashloan-price-oracle-manipul.d.ts +7 -0
- package/dist/detectors/finance-flashloan-price-oracle-manipul.js +546 -0
- package/dist/detectors/finance-flashloan-reentrancy.d.ts +7 -0
- package/dist/detectors/finance-flashloan-reentrancy.js +547 -0
- package/dist/detectors/finance-swap-metapool-attack.d.ts +19 -0
- package/dist/detectors/finance-swap-metapool-attack.js +321 -0
- package/dist/detectors/flashloan-price-manipulation.d.ts +7 -0
- package/dist/detectors/flashloan-price-manipulation.js +950 -0
- package/dist/detectors/flashloan-reentrancy-rari.d.ts +28 -0
- package/dist/detectors/flashloan-reentrancy-rari.js +577 -0
- package/dist/detectors/flashloan-reentrancy.d.ts +7 -0
- package/dist/detectors/flashloan-reentrancy.js +383 -0
- package/dist/detectors/flashloan-token-migrate.d.ts +7 -0
- package/dist/detectors/flashloan-token-migrate.js +274 -0
- package/dist/detectors/force-fed-eth-state-corruption.d.ts +32 -0
- package/dist/detectors/force-fed-eth-state-corruption.js +293 -0
- package/dist/detectors/free-mint-bug.d.ts +41 -0
- package/dist/detectors/free-mint-bug.js +483 -0
- package/dist/detectors/front-running-orderbook-state-update.d.ts +37 -0
- package/dist/detectors/front-running-orderbook-state-update.js +471 -0
- package/dist/detectors/front-running-shared-collateral-write.d.ts +41 -0
- package/dist/detectors/front-running-shared-collateral-write.js +508 -0
- package/dist/detectors/fusion-v1-settlement-arbitrary-yul-calld.d.ts +30 -0
- package/dist/detectors/fusion-v1-settlement-arbitrary-yul-calld.js +354 -0
- package/dist/detectors/generalized-frontrunning.d.ts +7 -0
- package/dist/detectors/generalized-frontrunning.js +836 -0
- package/dist/detectors/governance-flash-loan.d.ts +62 -0
- package/dist/detectors/governance-flash-loan.js +452 -0
- package/dist/detectors/governance-flashloan-vote.d.ts +41 -0
- package/dist/detectors/governance-flashloan-vote.js +272 -0
- package/dist/detectors/halborn-security-report-aave-v3.d.ts +6 -0
- package/dist/detectors/halborn-security-report-aave-v3.js +357 -0
- package/dist/detectors/incorrect-access-control.d.ts +26 -0
- package/dist/detectors/incorrect-access-control.js +328 -0
- package/dist/detectors/incorrect-burn-accounting.d.ts +10 -0
- package/dist/detectors/incorrect-burn-accounting.js +387 -0
- package/dist/detectors/incorrect-dividends-calculation.d.ts +27 -0
- package/dist/detectors/incorrect-dividends-calculation.js +524 -0
- package/dist/detectors/incorrect-dividends.d.ts +27 -0
- package/dist/detectors/incorrect-dividends.js +485 -0
- package/dist/detectors/incorrect-input-validation.d.ts +23 -0
- package/dist/detectors/incorrect-input-validation.js +312 -0
- package/dist/detectors/incorrect-signature-verification.d.ts +26 -0
- package/dist/detectors/incorrect-signature-verification.js +530 -0
- package/dist/detectors/infinite-loop.d.ts +7 -0
- package/dist/detectors/infinite-loop.js +440 -0
- package/dist/detectors/infinite-number-of-loans.d.ts +13 -0
- package/dist/detectors/infinite-number-of-loans.js +565 -0
- package/dist/detectors/inheritance-override.d.ts +26 -0
- package/dist/detectors/inheritance-override.js +320 -0
- package/dist/detectors/initialization-access-control.d.ts +8 -0
- package/dist/detectors/initialization-access-control.js +659 -0
- package/dist/detectors/insecure-randomness.d.ts +73 -0
- package/dist/detectors/insecure-randomness.js +610 -0
- package/dist/detectors/insufficient-access-control-trusted-param.d.ts +39 -0
- package/dist/detectors/insufficient-access-control-trusted-param.js +356 -0
- package/dist/detectors/insufficient-dvn-threshold.d.ts +32 -0
- package/dist/detectors/insufficient-dvn-threshold.js +585 -0
- package/dist/detectors/integer-overflow-detector.d.ts +45 -0
- package/dist/detectors/integer-overflow-detector.js +284 -0
- package/dist/detectors/integer-overflow.d.ts +95 -0
- package/dist/detectors/integer-overflow.js +344 -0
- package/dist/detectors/integer-underflow.d.ts +7 -0
- package/dist/detectors/integer-underflow.js +422 -0
- package/dist/detectors/intent-settlement-balance-manipulation.d.ts +22 -0
- package/dist/detectors/intent-settlement-balance-manipulation.js +548 -0
- package/dist/detectors/l1-to-l2-message-reentrancy.d.ts +7 -0
- package/dist/detectors/l1-to-l2-message-reentrancy.js +545 -0
- package/dist/detectors/l2-withdrawal-validation.d.ts +8 -0
- package/dist/detectors/l2-withdrawal-validation.js +303 -0
- package/dist/detectors/lack-of-access-control.d.ts +7 -0
- package/dist/detectors/lack-of-access-control.js +425 -0
- package/dist/detectors/lack-of-calldata-validation.d.ts +16 -0
- package/dist/detectors/lack-of-calldata-validation.js +914 -0
- package/dist/detectors/lack-of-input-validation-reentrancy.d.ts +7 -0
- package/dist/detectors/lack-of-input-validation-reentrancy.js +637 -0
- package/dist/detectors/lack-of-slippage-control.d.ts +7 -0
- package/dist/detectors/lack-of-slippage-control.js +513 -0
- package/dist/detectors/lack-of-slippage-protection.d.ts +7 -0
- package/dist/detectors/lack-of-slippage-protection.js +474 -0
- package/dist/detectors/lack-of-validation-data.d.ts +23 -0
- package/dist/detectors/lack-of-validation-data.js +391 -0
- package/dist/detectors/lack-of-validation-pool.d.ts +7 -0
- package/dist/detectors/lack-of-validation-pool.js +492 -0
- package/dist/detectors/lack-of-validation-userdata.d.ts +7 -0
- package/dist/detectors/lack-of-validation-userdata.js +583 -0
- package/dist/detectors/lack-of-validation.d.ts +27 -0
- package/dist/detectors/lack-of-validation.js +609 -0
- package/dist/detectors/layerzero-dvn-quorum-missing.d.ts +22 -0
- package/dist/detectors/layerzero-dvn-quorum-missing.js +464 -0
- package/dist/detectors/layerzero-v2-unverified-origin.d.ts +40 -0
- package/dist/detectors/layerzero-v2-unverified-origin.js +368 -0
- package/dist/detectors/liquidation-accounting-desync.d.ts +14 -0
- package/dist/detectors/liquidation-accounting-desync.js +145 -0
- package/dist/detectors/liquidation-gain-manipulation.d.ts +42 -0
- package/dist/detectors/liquidation-gain-manipulation.js +606 -0
- package/dist/detectors/liquidation-price-rounding-advantage.d.ts +26 -0
- package/dist/detectors/liquidation-price-rounding-advantage.js +283 -0
- package/dist/detectors/liquidity-poisoning.d.ts +25 -0
- package/dist/detectors/liquidity-poisoning.js +339 -0
- package/dist/detectors/loans-malicious-proposal-price-oracle.d.ts +44 -0
- package/dist/detectors/loans-malicious-proposal-price-oracle.js +813 -0
- package/dist/detectors/logic-flaw.d.ts +186 -0
- package/dist/detectors/logic-flaw.js +3356 -0
- package/dist/detectors/manipulation-of-funds.d.ts +31 -0
- package/dist/detectors/manipulation-of-funds.js +304 -0
- package/dist/detectors/merkl-unsafe-claim-callback.d.ts +22 -0
- package/dist/detectors/merkl-unsafe-claim-callback.js +94 -0
- package/dist/detectors/mev-boost-timestamp.d.ts +7 -0
- package/dist/detectors/mev-boost-timestamp.js +318 -0
- package/dist/detectors/mev-merge-exploit.d.ts +29 -0
- package/dist/detectors/mev-merge-exploit.js +397 -0
- package/dist/detectors/mev-sandwich-vulnerability.d.ts +24 -0
- package/dist/detectors/mev-sandwich-vulnerability.js +648 -0
- package/dist/detectors/mev-slot-manipulation.d.ts +36 -0
- package/dist/detectors/mev-slot-manipulation.js +691 -0
- package/dist/detectors/mevbot-insufficient-validation.d.ts +48 -0
- package/dist/detectors/mevbot-insufficient-validation.js +574 -0
- package/dist/detectors/migration-rebalance-without-bound.d.ts +7 -0
- package/dist/detectors/migration-rebalance-without-bound.js +514 -0
- package/dist/detectors/mint-hardcoded-asset-parity.d.ts +31 -0
- package/dist/detectors/mint-hardcoded-asset-parity.js +356 -0
- package/dist/detectors/miscalculation-on-spendallowance.d.ts +7 -0
- package/dist/detectors/miscalculation-on-spendallowance.js +188 -0
- package/dist/detectors/misconfiguration.d.ts +27 -0
- package/dist/detectors/misconfiguration.js +410 -0
- package/dist/detectors/missing-access-control-caller-supplied-auth.d.ts +7 -0
- package/dist/detectors/missing-access-control-caller-supplied-auth.js +550 -0
- package/dist/detectors/missing-access-control-receiver-payout.d.ts +7 -0
- package/dist/detectors/missing-access-control-receiver-payout.js +460 -0
- package/dist/detectors/missing-access-control-role-or-transferfrom.d.ts +7 -0
- package/dist/detectors/missing-access-control-role-or-transferfrom.js +663 -0
- package/dist/detectors/missing-access-control.d.ts +19 -0
- package/dist/detectors/missing-access-control.js +781 -0
- package/dist/detectors/missing-sequencer-uptime-check.d.ts +30 -0
- package/dist/detectors/missing-sequencer-uptime-check.js +348 -0
- package/dist/detectors/missing-storage-gap.d.ts +19 -0
- package/dist/detectors/missing-storage-gap.js +193 -0
- package/dist/detectors/missing-swap-deadline-slippage.d.ts +31 -0
- package/dist/detectors/missing-swap-deadline-slippage.js +231 -0
- package/dist/detectors/missing-zk-proof-verification.d.ts +60 -0
- package/dist/detectors/missing-zk-proof-verification.js +547 -0
- package/dist/detectors/my-experience-with-yearn-finance.d.ts +7 -0
- package/dist/detectors/my-experience-with-yearn-finance.js +552 -0
- package/dist/detectors/network-bridge-ronin.d.ts +7 -0
- package/dist/detectors/network-bridge-ronin.js +408 -0
- package/dist/detectors/network-bridge.d.ts +7 -0
- package/dist/detectors/network-bridge.js +444 -0
- package/dist/detectors/network-underflow.d.ts +7 -0
- package/dist/detectors/network-underflow.js +517 -0
- package/dist/detectors/nft-denial-of-service.d.ts +7 -0
- package/dist/detectors/nft-denial-of-service.js +223 -0
- package/dist/detectors/nft-marketplace-order-reentrancy.d.ts +7 -0
- package/dist/detectors/nft-marketplace-order-reentrancy.js +427 -0
- package/dist/detectors/nft-token-standard-access-control.d.ts +7 -0
- package/dist/detectors/nft-token-standard-access-control.js +455 -0
- package/dist/detectors/oracle-manipulation-amm-spot-price.d.ts +42 -0
- package/dist/detectors/oracle-manipulation-amm-spot-price.js +321 -0
- package/dist/detectors/oracle-manipulation-liquidity-withdrawal.d.ts +27 -0
- package/dist/detectors/oracle-manipulation-liquidity-withdrawal.js +192 -0
- package/dist/detectors/oracle-manipulation.d.ts +90 -0
- package/dist/detectors/oracle-manipulation.js +1023 -0
- package/dist/detectors/oracle-vortex-manipulation.d.ts +30 -0
- package/dist/detectors/oracle-vortex-manipulation.js +473 -0
- package/dist/detectors/overpriced-asset-in-oracle.d.ts +41 -0
- package/dist/detectors/overpriced-asset-in-oracle.js +420 -0
- package/dist/detectors/oz-access-control-roles.d.ts +33 -0
- package/dist/detectors/oz-access-control-roles.js +359 -0
- package/dist/detectors/pair-manipulation-transfer-hook.d.ts +38 -0
- package/dist/detectors/pair-manipulation-transfer-hook.js +366 -0
- package/dist/detectors/parameter-access-control.d.ts +47 -0
- package/dist/detectors/parameter-access-control.js +511 -0
- package/dist/detectors/parameter-manipulation.d.ts +7 -0
- package/dist/detectors/parameter-manipulation.js +505 -0
- package/dist/detectors/parity-multisig-delegatecall.d.ts +7 -0
- package/dist/detectors/parity-multisig-delegatecall.js +707 -0
- package/dist/detectors/permissionless-claim-amm-spot-pricing.d.ts +7 -0
- package/dist/detectors/permissionless-claim-amm-spot-pricing.js +351 -0
- package/dist/detectors/permit-future-dated-deadline.d.ts +31 -0
- package/dist/detectors/permit-future-dated-deadline.js +339 -0
- package/dist/detectors/phishing-attack-bybit.d.ts +37 -0
- package/dist/detectors/phishing-attack-bybit.js +513 -0
- package/dist/detectors/post-insolvency-check.d.ts +7 -0
- package/dist/detectors/post-insolvency-check.js +277 -0
- package/dist/detectors/precision-loss-vulnerability.d.ts +7 -0
- package/dist/detectors/precision-loss-vulnerability.js +472 -0
- package/dist/detectors/precision-truncation.d.ts +8 -0
- package/dist/detectors/precision-truncation.js +425 -0
- package/dist/detectors/price-dependency-veth.d.ts +41 -0
- package/dist/detectors/price-dependency-veth.js +588 -0
- package/dist/detectors/price-feed-verification.d.ts +7 -0
- package/dist/detectors/price-feed-verification.js +557 -0
- package/dist/detectors/price-manipulation-reentrancy.d.ts +32 -0
- package/dist/detectors/price-manipulation-reentrancy.js +445 -0
- package/dist/detectors/price-manipulation-via-reentranc.d.ts +7 -0
- package/dist/detectors/price-manipulation-via-reentranc.js +569 -0
- package/dist/detectors/price-oracle-manipulation.d.ts +25 -0
- package/dist/detectors/price-oracle-manipulation.js +530 -0
- package/dist/detectors/project-instant-rewards-unlocked.d.ts +6 -0
- package/dist/detectors/project-instant-rewards-unlocked.js +462 -0
- package/dist/detectors/protocol-reentrancy.d.ts +7 -0
- package/dist/detectors/protocol-reentrancy.js +457 -0
- package/dist/detectors/proxy-init-race.d.ts +11 -0
- package/dist/detectors/proxy-init-race.js +634 -0
- package/dist/detectors/proxy-storage-slot-collision.d.ts +7 -0
- package/dist/detectors/proxy-storage-slot-collision.js +135 -0
- package/dist/detectors/public-internal-function.d.ts +39 -0
- package/dist/detectors/public-internal-function.js +233 -0
- package/dist/detectors/quote-silent-zero.d.ts +25 -0
- package/dist/detectors/quote-silent-zero.js +156 -0
- package/dist/detectors/readonly-reentrancy.d.ts +9 -0
- package/dist/detectors/readonly-reentrancy.js +108 -0
- package/dist/detectors/receipt-redemption-missing-validation.d.ts +31 -0
- package/dist/detectors/receipt-redemption-missing-validation.js +453 -0
- package/dist/detectors/reentrancy-balance.d.ts +36 -0
- package/dist/detectors/reentrancy-balance.js +577 -0
- package/dist/detectors/reentrancy-business-logic-game.d.ts +36 -0
- package/dist/detectors/reentrancy-business-logic-game.js +616 -0
- package/dist/detectors/reentrancy-on-sell-nft.d.ts +23 -0
- package/dist/detectors/reentrancy-on-sell-nft.js +510 -0
- package/dist/detectors/reflection-token-balance-desync.d.ts +28 -0
- package/dist/detectors/reflection-token-balance-desync.js +246 -0
- package/dist/detectors/registry-engine.d.ts +34 -0
- package/dist/detectors/registry-engine.js +388 -0
- package/dist/detectors/rollup-unvalidated-state-update.d.ts +35 -0
- package/dist/detectors/rollup-unvalidated-state-update.js +286 -0
- package/dist/detectors/s-horizon-bridge-private-key-compromis.d.ts +8 -0
- package/dist/detectors/s-horizon-bridge-private-key-compromis.js +615 -0
- package/dist/detectors/share-price-manipulation.d.ts +7 -0
- package/dist/detectors/share-price-manipulation.js +653 -0
- package/dist/detectors/signature-replay.d.ts +30 -0
- package/dist/detectors/signature-replay.js +367 -0
- package/dist/detectors/simpleswap-unverified-approval.d.ts +27 -0
- package/dist/detectors/simpleswap-unverified-approval.js +198 -0
- package/dist/detectors/single-spot-oracle-collateral-valuation.d.ts +22 -0
- package/dist/detectors/single-spot-oracle-collateral-valuation.js +419 -0
- package/dist/detectors/skim-token-balance.d.ts +7 -0
- package/dist/detectors/skim-token-balance.js +788 -0
- package/dist/detectors/sky-oft-governance-payload.d.ts +7 -0
- package/dist/detectors/sky-oft-governance-payload.js +515 -0
- package/dist/detectors/sky-oft-governance-truncation.d.ts +32 -0
- package/dist/detectors/sky-oft-governance-truncation.js +377 -0
- package/dist/detectors/solana-evm-bridge-truncation.d.ts +7 -0
- package/dist/detectors/solana-evm-bridge-truncation.js +638 -0
- package/dist/detectors/solhint-unchecked-low-level-call.d.ts +74 -0
- package/dist/detectors/solhint-unchecked-low-level-call.js +463 -0
- package/dist/detectors/stablecoin-pair-spot-oracle.d.ts +7 -0
- package/dist/detectors/stablecoin-pair-spot-oracle.js +364 -0
- package/dist/detectors/staked-rate-as-oracle.d.ts +44 -0
- package/dist/detectors/staked-rate-as-oracle.js +497 -0
- package/dist/detectors/stale-oracle.d.ts +63 -0
- package/dist/detectors/stale-oracle.js +649 -0
- package/dist/detectors/starkware-proof-validation-gap.d.ts +18 -0
- package/dist/detectors/starkware-proof-validation-gap.js +629 -0
- package/dist/detectors/steth-transfer-reentrancy.d.ts +8 -0
- package/dist/detectors/steth-transfer-reentrancy.js +317 -0
- package/dist/detectors/storage-collision-malicious-proposal.d.ts +27 -0
- package/dist/detectors/storage-collision-malicious-proposal.js +386 -0
- package/dist/detectors/timestamp-manipulation.d.ts +49 -0
- package/dist/detectors/timestamp-manipulation.js +383 -0
- package/dist/detectors/token-access-control.d.ts +7 -0
- package/dist/detectors/token-access-control.js +544 -0
- package/dist/detectors/token-incorrect-signature-verification.d.ts +23 -0
- package/dist/detectors/token-incorrect-signature-verification.js +434 -0
- package/dist/detectors/token-transfer-logic-flaw.d.ts +33 -0
- package/dist/detectors/token-transfer-logic-flaw.js +267 -0
- package/dist/detectors/transfer-double-debit-pool-recipient.d.ts +7 -0
- package/dist/detectors/transfer-double-debit-pool-recipient.js +542 -0
- package/dist/detectors/treasury-reentrancy.d.ts +7 -0
- package/dist/detectors/treasury-reentrancy.js +442 -0
- package/dist/detectors/tstore-poison.d.ts +32 -0
- package/dist/detectors/tstore-poison.js +417 -0
- package/dist/detectors/tstore-race-condition.d.ts +7 -0
- package/dist/detectors/tstore-race-condition.js +632 -0
- package/dist/detectors/types.d.ts +85 -0
- package/dist/detectors/types.js +20 -0
- package/dist/detectors/unauthorized-payer-transferfrom.d.ts +66 -0
- package/dist/detectors/unauthorized-payer-transferfrom.js +339 -0
- package/dist/detectors/unauthorized-transferfrom-shell.d.ts +7 -0
- package/dist/detectors/unauthorized-transferfrom-shell.js +504 -0
- package/dist/detectors/unauthorized-transferfrom.d.ts +16 -0
- package/dist/detectors/unauthorized-transferfrom.js +838 -0
- package/dist/detectors/unbound-zk-verifier-input.d.ts +7 -0
- package/dist/detectors/unbound-zk-verifier-input.js +445 -0
- package/dist/detectors/unbounded-share-price-collateral-oracle.d.ts +48 -0
- package/dist/detectors/unbounded-share-price-collateral-oracle.js +566 -0
- package/dist/detectors/uncapped-reward-emission.d.ts +7 -0
- package/dist/detectors/uncapped-reward-emission.js +493 -0
- package/dist/detectors/unchecked-call-forwarding.d.ts +31 -0
- package/dist/detectors/unchecked-call-forwarding.js +330 -0
- package/dist/detectors/unchecked-external-call-unconditional-state-mutation.d.ts +18 -0
- package/dist/detectors/unchecked-external-call-unconditional-state-mutation.js +311 -0
- package/dist/detectors/unchecked-external-call.d.ts +66 -0
- package/dist/detectors/unchecked-external-call.js +389 -0
- package/dist/detectors/unchecked-oft-return.d.ts +13 -0
- package/dist/detectors/unchecked-oft-return.js +118 -0
- package/dist/detectors/unguarded-governance-execution.d.ts +35 -0
- package/dist/detectors/unguarded-governance-execution.js +422 -0
- package/dist/detectors/unguarded-governance-executor.d.ts +35 -0
- package/dist/detectors/unguarded-governance-executor.js +349 -0
- package/dist/detectors/unindexed-event-address.d.ts +7 -0
- package/dist/detectors/unindexed-event-address.js +268 -0
- package/dist/detectors/uninitialized-implementation.d.ts +27 -0
- package/dist/detectors/uninitialized-implementation.js +333 -0
- package/dist/detectors/uninitialized-storage-pointer.d.ts +7 -0
- package/dist/detectors/uninitialized-storage-pointer.js +110 -0
- package/dist/detectors/uniswap-skim-token-balance-attack.d.ts +8 -0
- package/dist/detectors/uniswap-skim-token-balance-attack.js +331 -0
- package/dist/detectors/uniswap-v4-hook-state-manipulation.d.ts +7 -0
- package/dist/detectors/uniswap-v4-hook-state-manipulation.js +296 -0
- package/dist/detectors/unprotected-admin-or-fund-sink.d.ts +7 -0
- package/dist/detectors/unprotected-admin-or-fund-sink.js +643 -0
- package/dist/detectors/unprotected-dex-swap.d.ts +43 -0
- package/dist/detectors/unprotected-dex-swap.js +334 -0
- package/dist/detectors/unprotected-initializer.d.ts +7 -0
- package/dist/detectors/unprotected-initializer.js +707 -0
- package/dist/detectors/unprotected-pair-initializer.d.ts +22 -0
- package/dist/detectors/unprotected-pair-initializer.js +359 -0
- package/dist/detectors/unprotected-upgrade-function.d.ts +7 -0
- package/dist/detectors/unprotected-upgrade-function.js +180 -0
- package/dist/detectors/unreachable-code-0.8.28.d.ts +19 -0
- package/dist/detectors/unreachable-code-0.8.28.js +206 -0
- package/dist/detectors/unsafe-proxy-storage.d.ts +7 -0
- package/dist/detectors/unsafe-proxy-storage.js +436 -0
- package/dist/detectors/unsafe-transient-storage.d.ts +7 -0
- package/dist/detectors/unsafe-transient-storage.js +1052 -0
- package/dist/detectors/unsafe-tx-origin.d.ts +9 -0
- package/dist/detectors/unsafe-tx-origin.js +179 -0
- package/dist/detectors/unsigned-validity-window.d.ts +20 -0
- package/dist/detectors/unsigned-validity-window.js +220 -0
- package/dist/detectors/unvalidated-interface-address.d.ts +25 -0
- package/dist/detectors/unvalidated-interface-address.js +377 -0
- package/dist/detectors/uups-uninitialized-storage.d.ts +9 -0
- package/dist/detectors/uups-uninitialized-storage.js +366 -0
- package/dist/detectors/v2-error-k-value-attack.d.ts +33 -0
- package/dist/detectors/v2-error-k-value-attack.js +276 -0
- package/dist/detectors/v2-k-invariant-bypass.d.ts +33 -0
- package/dist/detectors/v2-k-invariant-bypass.js +283 -0
- package/dist/detectors/v4-hook-reentrancy.d.ts +9 -0
- package/dist/detectors/v4-hook-reentrancy.js +488 -0
- package/dist/detectors/vault-inflation-rounding.d.ts +23 -0
- package/dist/detectors/vault-inflation-rounding.js +477 -0
- package/dist/detectors/vault-share-price-manipulation.d.ts +7 -0
- package/dist/detectors/vault-share-price-manipulation.js +332 -0
- package/dist/detectors/vortex-interaction-guard.d.ts +45 -0
- package/dist/detectors/vortex-interaction-guard.js +275 -0
- package/dist/detectors/vortex-protocol-reentrancy-guard.d.ts +27 -0
- package/dist/detectors/vortex-protocol-reentrancy-guard.js +408 -0
- package/dist/detectors/vulnerable-price-dependency.d.ts +41 -0
- package/dist/detectors/vulnerable-price-dependency.js +473 -0
- package/dist/detectors/weak-random-mint.d.ts +37 -0
- package/dist/detectors/weak-random-mint.js +271 -0
- package/dist/detectors/withdraw-be-to-withdraw.d.ts +26 -0
- package/dist/detectors/withdraw-be-to-withdraw.js +329 -0
- package/dist/detectors/wrong-function-visibility.d.ts +29 -0
- package/dist/detectors/wrong-function-visibility.js +147 -0
- package/dist/detectors/wrong-price-calculation.d.ts +42 -0
- package/dist/detectors/wrong-price-calculation.js +387 -0
- package/dist/detectors/yearn-vault-v2-share-price-manipulation.d.ts +32 -0
- package/dist/detectors/yearn-vault-v2-share-price-manipulation.js +248 -0
- package/dist/detectors/zero-fee.d.ts +7 -0
- package/dist/detectors/zero-fee.js +596 -0
- package/dist/detectors/zetachain-gateway-hack-analysis.d.ts +7 -0
- package/dist/detectors/zetachain-gateway-hack-analysis.js +629 -0
- package/dist/detectors/zk-rollup-da-gap.d.ts +8 -0
- package/dist/detectors/zk-rollup-da-gap.js +322 -0
- package/dist/detectors/zksync-batch-validation.d.ts +8 -0
- package/dist/detectors/zksync-batch-validation.js +461 -0
- package/dist/detectors/zksync-era-rollup-state-update.d.ts +60 -0
- package/dist/detectors/zksync-era-rollup-state-update.js +360 -0
- package/dist/detectors/zksync-simulation-drift.d.ts +35 -0
- package/dist/detectors/zksync-simulation-drift.js +309 -0
- package/dist/exit-codes.d.ts +15 -0
- package/dist/exit-codes.js +18 -0
- package/dist/formatters/github-actions.d.ts +2 -0
- package/dist/formatters/github-actions.js +61 -0
- package/dist/formatters/sarif.d.ts +24 -0
- package/dist/formatters/sarif.js +670 -0
- package/dist/formatters/text.d.ts +14 -0
- package/dist/formatters/text.js +152 -0
- package/dist/fp-rates.json +70 -0
- package/dist/identity/diff-baseline.d.ts +16 -0
- package/dist/identity/diff-baseline.js +152 -0
- package/dist/identity/hashing.d.ts +39 -0
- package/dist/identity/hashing.js +96 -0
- package/dist/index.d.ts +174 -0
- package/dist/index.js +358 -0
- package/dist/parallel-scan.d.ts +66 -0
- package/dist/parallel-scan.js +227 -0
- package/dist/registry.d.ts +17 -0
- package/dist/registry.js +118 -0
- package/dist/rules/glob.d.ts +5 -0
- package/dist/rules/glob.js +76 -0
- package/dist/rules/suppressions.d.ts +23 -0
- package/dist/rules/suppressions.js +136 -0
- package/dist/rules/tiers.d.ts +23 -0
- package/dist/rules/tiers.js +341 -0
- package/dist/scan-worker.d.ts +1 -0
- package/dist/scan-worker.js +61 -0
- package/dist/scan.d.ts +24 -0
- package/dist/scan.js +558 -0
- package/dist/semantic/contracts.d.ts +10 -0
- package/dist/semantic/contracts.js +141 -0
- package/dist/semantic/diagnostics.d.ts +29 -0
- package/dist/semantic/diagnostics.js +25 -0
- package/dist/semantic/eog.d.ts +56 -0
- package/dist/semantic/eog.js +545 -0
- package/dist/semantic/imports.d.ts +88 -0
- package/dist/semantic/imports.js +246 -0
- package/dist/semantic/index.d.ts +2 -0
- package/dist/semantic/index.js +8 -0
- package/dist/semantic/inheritance.d.ts +33 -0
- package/dist/semantic/inheritance.js +137 -0
- package/dist/semantic/model.d.ts +95 -0
- package/dist/semantic/model.js +232 -0
- package/dist/semantic/taint-tracker.d.ts +49 -0
- package/dist/semantic/taint-tracker.js +410 -0
- package/dist/semantic/types.d.ts +119 -0
- package/dist/semantic/types.js +18 -0
- package/dist/severity.d.ts +10 -0
- package/dist/severity.js +78 -0
- package/package.json +52 -0
|
@@ -0,0 +1,1052 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UnsafeTransientStorageDetector = void 0;
|
|
4
|
+
const RULE_ID = 'unsafe-transient-storage';
|
|
5
|
+
const ASSIGN_OPS = new Set(['=', '+=', '-=', '*=', '/=', '%=', '&=', '|=', '^=', '<<=', '>>=', '>>>=']);
|
|
6
|
+
const BUILTIN_NAMESPACES = new Set(['msg', 'block', 'tx', 'abi', 'this', 'super', 'type']);
|
|
7
|
+
const LOW_LEVEL_CALL_MEMBERS = new Set(['call', 'delegatecall', 'staticcall', 'send', 'transfer']);
|
|
8
|
+
const INTERNAL_MEMBER_CALL_MEMBERS = new Set([
|
|
9
|
+
'push', 'pop', 'length', 'at',
|
|
10
|
+
'bump', 'increment', 'decrement', 'update', 'add', 'sub', 'mul', 'div', 'mod',
|
|
11
|
+
'get', 'set', 'append', 'extend', 'remove', 'delete', 'contains', 'indexOf',
|
|
12
|
+
'keys', 'values', 'entries', 'snapshot', 'commit', 'revert',
|
|
13
|
+
]);
|
|
14
|
+
class UnsafeTransientStorageDetector {
|
|
15
|
+
id = RULE_ID;
|
|
16
|
+
patternKey = RULE_ID;
|
|
17
|
+
supportedAstKinds = ['parser'];
|
|
18
|
+
scanAst(ast, file) {
|
|
19
|
+
if (!ast || ast.type !== 'SourceUnit')
|
|
20
|
+
return [];
|
|
21
|
+
if (!hasTransientPragma(ast))
|
|
22
|
+
return [];
|
|
23
|
+
const findings = [];
|
|
24
|
+
const contractIndex = collectContractsByName(ast);
|
|
25
|
+
for (const child of ast.children || []) {
|
|
26
|
+
if (child?.type !== 'ContractDefinition')
|
|
27
|
+
continue;
|
|
28
|
+
if (child.kind === 'interface' || child.kind === 'library')
|
|
29
|
+
continue;
|
|
30
|
+
let info;
|
|
31
|
+
try {
|
|
32
|
+
info = buildContractInfo(child, contractIndex);
|
|
33
|
+
precomputeWriterMaps(info);
|
|
34
|
+
}
|
|
35
|
+
catch (_) {
|
|
36
|
+
continue;
|
|
37
|
+
}
|
|
38
|
+
for (const fn of info.functions) {
|
|
39
|
+
if (!fn.body)
|
|
40
|
+
continue;
|
|
41
|
+
try {
|
|
42
|
+
findings.push(...analyzeFunction(file, info, fn));
|
|
43
|
+
}
|
|
44
|
+
catch (_) {
|
|
45
|
+
// Defensive: parser anomalies must not crash the scan.
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
return findings;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
exports.UnsafeTransientStorageDetector = UnsafeTransientStorageDetector;
|
|
53
|
+
function hasTransientPragma(ast) {
|
|
54
|
+
for (const child of ast.children || []) {
|
|
55
|
+
if (child?.type !== 'PragmaDirective')
|
|
56
|
+
continue;
|
|
57
|
+
if (child.name !== 'solidity')
|
|
58
|
+
continue;
|
|
59
|
+
return pragmaPermitsTransient(String(child.value || ''));
|
|
60
|
+
}
|
|
61
|
+
return false;
|
|
62
|
+
}
|
|
63
|
+
// `transient` storage was added in 0.8.24 (Cancun). The detector only fires
|
|
64
|
+
// when every alternative in the pragma's lower bound is at least 0.8.24, so
|
|
65
|
+
// projects that compile with 0.8.23 still produce zero findings even if the
|
|
66
|
+
// parser happily accepts `tstore`/`tload` syntactically.
|
|
67
|
+
function pragmaPermitsTransient(value) {
|
|
68
|
+
if (!value)
|
|
69
|
+
return false;
|
|
70
|
+
const branches = value.split('||').map(s => s.trim()).filter(Boolean);
|
|
71
|
+
if (branches.length === 0)
|
|
72
|
+
return false;
|
|
73
|
+
return branches.every(branchPermitsTransient);
|
|
74
|
+
}
|
|
75
|
+
function branchPermitsTransient(branch) {
|
|
76
|
+
const tokens = branch.split(/\s+/).filter(Boolean);
|
|
77
|
+
let lowerMinor = -1;
|
|
78
|
+
let lowerPatch = -1;
|
|
79
|
+
for (const token of tokens) {
|
|
80
|
+
const m = token.match(/^([\^~]|>=|>|<=|<|=)?\s*0\.(\d+)(?:\.(\d+))?/);
|
|
81
|
+
if (!m)
|
|
82
|
+
continue;
|
|
83
|
+
const op = m[1] || '=';
|
|
84
|
+
const minor = parseInt(m[2], 10);
|
|
85
|
+
const patch = m[3] ? parseInt(m[3], 10) : 0;
|
|
86
|
+
if (op === '<' || op === '<=')
|
|
87
|
+
continue;
|
|
88
|
+
if (lowerMinor < 0 || minor > lowerMinor || (minor === lowerMinor && patch > lowerPatch)) {
|
|
89
|
+
lowerMinor = minor;
|
|
90
|
+
lowerPatch = patch;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
if (lowerMinor < 0)
|
|
94
|
+
return false;
|
|
95
|
+
if (lowerMinor > 8)
|
|
96
|
+
return true;
|
|
97
|
+
if (lowerMinor === 8 && lowerPatch >= 24)
|
|
98
|
+
return true;
|
|
99
|
+
return false;
|
|
100
|
+
}
|
|
101
|
+
function buildContractInfo(contractNode, contractIndex) {
|
|
102
|
+
const transientStateVars = resolveTransientVars(contractNode, contractIndex);
|
|
103
|
+
const modifiers = resolveModifiers(contractNode, contractIndex);
|
|
104
|
+
const functions = [];
|
|
105
|
+
for (const sub of contractNode.subNodes || []) {
|
|
106
|
+
if (!sub || typeof sub !== 'object')
|
|
107
|
+
continue;
|
|
108
|
+
if (sub.type === 'FunctionDefinition') {
|
|
109
|
+
functions.push(sub);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
return {
|
|
113
|
+
node: contractNode,
|
|
114
|
+
name: String(contractNode.name || '<anonymous>'),
|
|
115
|
+
transientStateVars,
|
|
116
|
+
stateVariableTypes: resolveStateVariableTypes(contractNode, contractIndex),
|
|
117
|
+
stateVariableUserDefinedTypes: resolveStateVariableUserDefinedTypes(contractNode, contractIndex),
|
|
118
|
+
internalOnlyTypes: collectInternalOnlyTypes(contractIndex),
|
|
119
|
+
modifiers,
|
|
120
|
+
functions,
|
|
121
|
+
nonClearWriters: new Map(),
|
|
122
|
+
clearers: new Map(),
|
|
123
|
+
};
|
|
124
|
+
}
|
|
125
|
+
function collectInternalOnlyTypes(contractIndex) {
|
|
126
|
+
const names = new Set();
|
|
127
|
+
for (const node of contractIndex.values()) {
|
|
128
|
+
collectInternalOnlyTypesFromSubNodes(node?.subNodes, names);
|
|
129
|
+
}
|
|
130
|
+
return names;
|
|
131
|
+
}
|
|
132
|
+
function collectInternalOnlyTypesFromSubNodes(subNodes, names) {
|
|
133
|
+
for (const sub of subNodes || []) {
|
|
134
|
+
if (!sub || typeof sub !== 'object')
|
|
135
|
+
continue;
|
|
136
|
+
if ((sub.type === 'StructDefinition' || sub.type === 'EnumDefinition') && sub.name) {
|
|
137
|
+
names.add(String(sub.name));
|
|
138
|
+
}
|
|
139
|
+
if (Array.isArray(sub.subNodes))
|
|
140
|
+
collectInternalOnlyTypesFromSubNodes(sub.subNodes, names);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
function collectContractsByName(ast) {
|
|
144
|
+
const map = new Map();
|
|
145
|
+
for (const child of ast.children || []) {
|
|
146
|
+
if (child?.type === 'ContractDefinition' && child.name) {
|
|
147
|
+
map.set(String(child.name), child);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
return map;
|
|
151
|
+
}
|
|
152
|
+
function resolveStateVariableUserDefinedTypes(contractNode, contractIndex, visited = new Set()) {
|
|
153
|
+
const vars = new Set();
|
|
154
|
+
const contractName = String(contractNode?.name || '');
|
|
155
|
+
if (contractName) {
|
|
156
|
+
if (visited.has(contractName))
|
|
157
|
+
return vars;
|
|
158
|
+
visited.add(contractName);
|
|
159
|
+
}
|
|
160
|
+
for (const base of contractNode?.baseContracts || []) {
|
|
161
|
+
const baseName = baseContractName(base);
|
|
162
|
+
if (!baseName)
|
|
163
|
+
continue;
|
|
164
|
+
const baseContract = contractIndex.get(baseName);
|
|
165
|
+
if (!baseContract)
|
|
166
|
+
continue;
|
|
167
|
+
for (const name of resolveStateVariableUserDefinedTypes(baseContract, contractIndex, visited)) {
|
|
168
|
+
vars.add(name);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
for (const sub of contractNode?.subNodes || []) {
|
|
172
|
+
if (sub?.type !== 'StateVariableDeclaration')
|
|
173
|
+
continue;
|
|
174
|
+
for (const v of sub.variables || []) {
|
|
175
|
+
if (v?.isStateVar && v?.name && isUserDefinedTypeName(v?.typeName)) {
|
|
176
|
+
vars.add(String(v.name));
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
return vars;
|
|
181
|
+
}
|
|
182
|
+
function resolveTransientVars(contractNode, contractIndex, visited = new Set()) {
|
|
183
|
+
const vars = new Set();
|
|
184
|
+
const contractName = String(contractNode?.name || '');
|
|
185
|
+
if (contractName) {
|
|
186
|
+
if (visited.has(contractName))
|
|
187
|
+
return vars;
|
|
188
|
+
visited.add(contractName);
|
|
189
|
+
}
|
|
190
|
+
for (const base of contractNode?.baseContracts || []) {
|
|
191
|
+
const baseName = baseContractName(base);
|
|
192
|
+
if (!baseName)
|
|
193
|
+
continue;
|
|
194
|
+
const baseContract = contractIndex.get(baseName);
|
|
195
|
+
if (!baseContract)
|
|
196
|
+
continue;
|
|
197
|
+
for (const name of resolveTransientVars(baseContract, contractIndex, visited)) {
|
|
198
|
+
vars.add(name);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
for (const sub of contractNode?.subNodes || []) {
|
|
202
|
+
if (sub?.type !== 'StateVariableDeclaration')
|
|
203
|
+
continue;
|
|
204
|
+
for (const v of sub.variables || []) {
|
|
205
|
+
if (v?.isStateVar && v?.isTransient && v?.name) {
|
|
206
|
+
vars.add(String(v.name));
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
return vars;
|
|
211
|
+
}
|
|
212
|
+
function resolveStateVariableTypes(contractNode, contractIndex, visited = new Set()) {
|
|
213
|
+
const vars = new Map();
|
|
214
|
+
const contractName = String(contractNode?.name || '');
|
|
215
|
+
if (contractName) {
|
|
216
|
+
if (visited.has(contractName))
|
|
217
|
+
return vars;
|
|
218
|
+
visited.add(contractName);
|
|
219
|
+
}
|
|
220
|
+
for (const base of contractNode?.baseContracts || []) {
|
|
221
|
+
const baseName = baseContractName(base);
|
|
222
|
+
if (!baseName)
|
|
223
|
+
continue;
|
|
224
|
+
const baseContract = contractIndex.get(baseName);
|
|
225
|
+
if (!baseContract)
|
|
226
|
+
continue;
|
|
227
|
+
for (const [name, typeName] of resolveStateVariableTypes(baseContract, contractIndex, visited)) {
|
|
228
|
+
vars.set(name, typeName);
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
for (const sub of contractNode?.subNodes || []) {
|
|
232
|
+
if (sub?.type !== 'StateVariableDeclaration')
|
|
233
|
+
continue;
|
|
234
|
+
for (const v of sub.variables || []) {
|
|
235
|
+
const typeName = typeNameToString(v?.typeName);
|
|
236
|
+
if (v?.isStateVar && v?.name && typeName)
|
|
237
|
+
vars.set(String(v.name), typeName);
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
return vars;
|
|
241
|
+
}
|
|
242
|
+
function resolveModifiers(contractNode, contractIndex, visited = new Set()) {
|
|
243
|
+
const modifiers = new Map();
|
|
244
|
+
const contractName = String(contractNode?.name || '');
|
|
245
|
+
if (contractName) {
|
|
246
|
+
if (visited.has(contractName))
|
|
247
|
+
return modifiers;
|
|
248
|
+
visited.add(contractName);
|
|
249
|
+
}
|
|
250
|
+
for (const base of contractNode?.baseContracts || []) {
|
|
251
|
+
const baseName = baseContractName(base);
|
|
252
|
+
if (!baseName)
|
|
253
|
+
continue;
|
|
254
|
+
const baseContract = contractIndex.get(baseName);
|
|
255
|
+
if (!baseContract)
|
|
256
|
+
continue;
|
|
257
|
+
for (const [name, def] of resolveModifiers(baseContract, contractIndex, visited)) {
|
|
258
|
+
modifiers.set(name, def);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
for (const sub of contractNode?.subNodes || []) {
|
|
262
|
+
if (sub?.type === 'ModifierDefinition' && sub.name) {
|
|
263
|
+
modifiers.set(String(sub.name), sub);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
return modifiers;
|
|
267
|
+
}
|
|
268
|
+
function baseContractName(base) {
|
|
269
|
+
const namePath = base?.baseName?.namePath;
|
|
270
|
+
if (namePath)
|
|
271
|
+
return String(namePath).split('.').pop() || '';
|
|
272
|
+
const name = base?.baseName?.name;
|
|
273
|
+
if (name)
|
|
274
|
+
return String(name).split('.').pop() || '';
|
|
275
|
+
return '';
|
|
276
|
+
}
|
|
277
|
+
function precomputeWriterMaps(info) {
|
|
278
|
+
for (const fn of info.functions) {
|
|
279
|
+
if (!fn.body)
|
|
280
|
+
continue;
|
|
281
|
+
let events;
|
|
282
|
+
try {
|
|
283
|
+
events = collectFunctionEvents(info, fn);
|
|
284
|
+
}
|
|
285
|
+
catch (_) {
|
|
286
|
+
continue;
|
|
287
|
+
}
|
|
288
|
+
const fnName = String(fn.name || '');
|
|
289
|
+
for (const ev of events) {
|
|
290
|
+
if (ev.kind !== 'tWrite')
|
|
291
|
+
continue;
|
|
292
|
+
const map = ev.isClear ? info.clearers : info.nonClearWriters;
|
|
293
|
+
let set = map.get(ev.var);
|
|
294
|
+
if (!set) {
|
|
295
|
+
set = new Set();
|
|
296
|
+
map.set(ev.var, set);
|
|
297
|
+
}
|
|
298
|
+
set.add(fnName);
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
function analyzeFunction(file, info, fn) {
|
|
303
|
+
const events = collectFunctionEvents(info, fn);
|
|
304
|
+
if (events.length === 0)
|
|
305
|
+
return [];
|
|
306
|
+
const findings = [];
|
|
307
|
+
const fnName = String(fn.name || '<anonymous>');
|
|
308
|
+
const guarded = hasReentrancyGuard(fn);
|
|
309
|
+
const varsInEvents = new Set();
|
|
310
|
+
for (const ev of events) {
|
|
311
|
+
if (ev.kind !== 'externalCall' && ev.var)
|
|
312
|
+
varsInEvents.add(ev.var);
|
|
313
|
+
}
|
|
314
|
+
const hasExternalCall = events.some(ev => ev.kind === 'externalCall');
|
|
315
|
+
// Rule 1: access-control flag (high). Transient flag is asserted in
|
|
316
|
+
// require/if and a non-clear write exists somewhere in the function or its
|
|
317
|
+
// modifiers, the function performs an external action, and no clear runs.
|
|
318
|
+
const accessControlVars = new Set();
|
|
319
|
+
for (const v of varsInEvents) {
|
|
320
|
+
const usedAsGuard = events.some(ev => ev.kind === 'tRequireUse' && ev.var === v);
|
|
321
|
+
if (!usedAsGuard)
|
|
322
|
+
continue;
|
|
323
|
+
const hasNonClearWrite = events.some(ev => ev.kind === 'tWrite' && ev.var === v && !ev.isClear);
|
|
324
|
+
if (!hasNonClearWrite)
|
|
325
|
+
continue;
|
|
326
|
+
if (!hasExternalCall)
|
|
327
|
+
continue;
|
|
328
|
+
const hasClearWrite = events.some(ev => ev.kind === 'tWrite' && ev.var === v && ev.isClear);
|
|
329
|
+
if (hasClearWrite)
|
|
330
|
+
continue;
|
|
331
|
+
accessControlVars.add(v);
|
|
332
|
+
}
|
|
333
|
+
const suppressed = new Set(accessControlVars);
|
|
334
|
+
for (const v of accessControlVars) {
|
|
335
|
+
findings.push(makeFinding({
|
|
336
|
+
file,
|
|
337
|
+
contract: info.name,
|
|
338
|
+
function: fnName,
|
|
339
|
+
loc: locOf(fn),
|
|
340
|
+
severity: 'high',
|
|
341
|
+
message: `Transient state variable '${v}' is used as an authorization flag in '${info.name}.${fnName}' without a paired clear before exit, leaving authorization stuck for the rest of the transaction.`,
|
|
342
|
+
rationale: 'Transient storage resets at transaction end but persists across same-transaction calls; using it as an unconditional authorization flag without clearing leaks authority to subsequent calls.',
|
|
343
|
+
suggestedFix: `Reset '${v}' to a falsey value at the end of the function or in a modifier epilogue, or replace the transient flag with a non-transient guarded check.`,
|
|
344
|
+
}));
|
|
345
|
+
}
|
|
346
|
+
// Rule 2: write-reaches-external-call (medium).
|
|
347
|
+
const rule2Vars = new Set();
|
|
348
|
+
if (!guarded) {
|
|
349
|
+
for (let i = 0; i < events.length; i++) {
|
|
350
|
+
const ev = events[i];
|
|
351
|
+
if (ev.kind !== 'tWrite' || ev.isClear)
|
|
352
|
+
continue;
|
|
353
|
+
if (suppressed.has(ev.var))
|
|
354
|
+
continue;
|
|
355
|
+
let crossesCall = false;
|
|
356
|
+
for (let j = i + 1; j < events.length; j++) {
|
|
357
|
+
const next = events[j];
|
|
358
|
+
if (next.kind === 'tWrite' && next.var === ev.var && next.isClear)
|
|
359
|
+
break;
|
|
360
|
+
if (next.kind === 'externalCall') {
|
|
361
|
+
crossesCall = true;
|
|
362
|
+
break;
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
if (crossesCall)
|
|
366
|
+
rule2Vars.add(ev.var);
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
for (const v of rule2Vars) {
|
|
370
|
+
findings.push(makeFinding({
|
|
371
|
+
file,
|
|
372
|
+
contract: info.name,
|
|
373
|
+
function: fnName,
|
|
374
|
+
loc: locOf(fn),
|
|
375
|
+
severity: 'medium',
|
|
376
|
+
message: `Transient write of '${v}' in '${info.name}.${fnName}' reaches an external-call boundary before being cleared.`,
|
|
377
|
+
rationale: 'A transient slot left set across an external call can be observed or reused by a re-entered or attacker-influenced caller within the same transaction.',
|
|
378
|
+
suggestedFix: `Clear '${v}' (set it to zero/false, or call the equivalent assembly tstore(slot, 0)) before invoking external code.`,
|
|
379
|
+
}));
|
|
380
|
+
suppressed.add(v);
|
|
381
|
+
}
|
|
382
|
+
// Rule 3: read-after-external-call (medium). Suppressed if the function
|
|
383
|
+
// carries a recognized reentrancy guard modifier.
|
|
384
|
+
const rule3Vars = new Set();
|
|
385
|
+
if (!guarded) {
|
|
386
|
+
let firstCallIdx = -1;
|
|
387
|
+
for (let i = 0; i < events.length; i++) {
|
|
388
|
+
if (events[i].kind === 'externalCall') {
|
|
389
|
+
firstCallIdx = i;
|
|
390
|
+
break;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
if (firstCallIdx >= 0) {
|
|
394
|
+
for (let i = firstCallIdx + 1; i < events.length; i++) {
|
|
395
|
+
const ev = events[i];
|
|
396
|
+
if (ev.kind !== 'tRead' && ev.kind !== 'tRequireUse')
|
|
397
|
+
continue;
|
|
398
|
+
if (accessControlVars.has(ev.var))
|
|
399
|
+
continue;
|
|
400
|
+
rule3Vars.add(ev.var);
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
for (const v of rule3Vars) {
|
|
405
|
+
findings.push(makeFinding({
|
|
406
|
+
file,
|
|
407
|
+
contract: info.name,
|
|
408
|
+
function: fnName,
|
|
409
|
+
loc: locOf(fn),
|
|
410
|
+
severity: 'medium',
|
|
411
|
+
message: `Transient read of '${v}' in '${info.name}.${fnName}' occurs after an external call without a reentrancy guard.`,
|
|
412
|
+
rationale: 'Reading transient state after an external call exposes the function to a re-entered caller overwriting the slot in the same transaction.',
|
|
413
|
+
suggestedFix: 'Read the transient slot before performing the external call, gate the function with a reentrancy guard, or revalidate the value with an immutable check.',
|
|
414
|
+
}));
|
|
415
|
+
}
|
|
416
|
+
// Rule 4: missing exit clear (medium). Only fires when the contract never
|
|
417
|
+
// clears the variable anywhere — otherwise we treat the producer/consumer
|
|
418
|
+
// pair as an intentional cross-function pattern (rule 5 handles the consumer).
|
|
419
|
+
const rule4Vars = new Set();
|
|
420
|
+
for (const v of varsInEvents) {
|
|
421
|
+
if (suppressed.has(v))
|
|
422
|
+
continue;
|
|
423
|
+
const hasNonClearWrite = events.some(ev => ev.kind === 'tWrite' && ev.var === v && !ev.isClear);
|
|
424
|
+
if (!hasNonClearWrite)
|
|
425
|
+
continue;
|
|
426
|
+
const clearedInThisFn = events.some(ev => ev.kind === 'tWrite' && ev.var === v && ev.isClear);
|
|
427
|
+
const clearedAnywhere = (info.clearers.get(v)?.size || 0) > 0;
|
|
428
|
+
if (clearedInThisFn || clearedAnywhere)
|
|
429
|
+
continue;
|
|
430
|
+
rule4Vars.add(v);
|
|
431
|
+
}
|
|
432
|
+
for (const v of rule4Vars) {
|
|
433
|
+
findings.push(makeFinding({
|
|
434
|
+
file,
|
|
435
|
+
contract: info.name,
|
|
436
|
+
function: fnName,
|
|
437
|
+
loc: locOf(fn),
|
|
438
|
+
severity: 'medium',
|
|
439
|
+
message: `Transient write of '${v}' in '${info.name}.${fnName}' is never cleared before function exit.`,
|
|
440
|
+
rationale: 'Transient storage persists for the rest of the transaction; failing to reset it before returning leaks the value to subsequent calls in the same transaction.',
|
|
441
|
+
suggestedFix: `Reset '${v}' at the end of the function, or pair it with a modifier epilogue that runs after the function body.`,
|
|
442
|
+
}));
|
|
443
|
+
}
|
|
444
|
+
// Rule 5: cross-function assumption (medium). Function reads transient
|
|
445
|
+
// state before writing it locally and the producer lives in another
|
|
446
|
+
// function in the same contract.
|
|
447
|
+
if (!guarded) {
|
|
448
|
+
const rule5Vars = new Set();
|
|
449
|
+
for (let i = 0; i < events.length; i++) {
|
|
450
|
+
const ev = events[i];
|
|
451
|
+
if (ev.kind !== 'tRead' && ev.kind !== 'tRequireUse')
|
|
452
|
+
continue;
|
|
453
|
+
const v = ev.var;
|
|
454
|
+
if (suppressed.has(v) || rule3Vars.has(v) || rule5Vars.has(v))
|
|
455
|
+
continue;
|
|
456
|
+
const writeBefore = events.slice(0, i).some(e => e.kind === 'tWrite' && e.var === v);
|
|
457
|
+
if (writeBefore)
|
|
458
|
+
continue;
|
|
459
|
+
const writers = info.nonClearWriters.get(v);
|
|
460
|
+
if (!writers)
|
|
461
|
+
continue;
|
|
462
|
+
let hasOtherWriter = false;
|
|
463
|
+
for (const name of writers) {
|
|
464
|
+
if (name !== fnName) {
|
|
465
|
+
hasOtherWriter = true;
|
|
466
|
+
break;
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
if (hasOtherWriter)
|
|
470
|
+
rule5Vars.add(v);
|
|
471
|
+
}
|
|
472
|
+
for (const v of rule5Vars) {
|
|
473
|
+
findings.push(makeFinding({
|
|
474
|
+
file,
|
|
475
|
+
contract: info.name,
|
|
476
|
+
function: fnName,
|
|
477
|
+
loc: locOf(fn),
|
|
478
|
+
severity: 'medium',
|
|
479
|
+
message: `Transient read of '${v}' in '${info.name}.${fnName}' depends on a value set by another function within the same transaction.`,
|
|
480
|
+
rationale: 'Cross-function dependence on transient storage assumes the producing call ran first in the same transaction; that ordering is not enforced and the consumer may see stale or unset state.',
|
|
481
|
+
suggestedFix: 'Replace the transient cross-function assumption with explicit per-call parameters or a session pattern that initializes and clears the slot atomically.',
|
|
482
|
+
}));
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
return findings;
|
|
486
|
+
}
|
|
487
|
+
function collectFunctionEvents(info, fn) {
|
|
488
|
+
const events = [];
|
|
489
|
+
const typeContext = buildFunctionTypeContext(info, fn);
|
|
490
|
+
const preludes = [];
|
|
491
|
+
const epilogues = [];
|
|
492
|
+
for (const inv of fn.modifiers || []) {
|
|
493
|
+
const modName = modifierInvocationName(inv);
|
|
494
|
+
if (!modName)
|
|
495
|
+
continue;
|
|
496
|
+
const def = info.modifiers.get(modName);
|
|
497
|
+
if (!def?.body)
|
|
498
|
+
continue;
|
|
499
|
+
const split = splitModifierBody(def.body);
|
|
500
|
+
preludes.push(split.prelude);
|
|
501
|
+
// Epilogues unwind in reverse of the modifier list to match Solidity's
|
|
502
|
+
// wrapping order: outer modifier prelude, inner modifier prelude, body,
|
|
503
|
+
// inner modifier epilogue, outer modifier epilogue.
|
|
504
|
+
epilogues.unshift(split.epilogue);
|
|
505
|
+
}
|
|
506
|
+
for (const stmts of preludes) {
|
|
507
|
+
for (const stmt of stmts)
|
|
508
|
+
walkStmt(stmt, info, events, typeContext);
|
|
509
|
+
}
|
|
510
|
+
if (fn.body)
|
|
511
|
+
walkStmt(fn.body, info, events, typeContext);
|
|
512
|
+
for (const stmts of epilogues) {
|
|
513
|
+
for (const stmt of stmts)
|
|
514
|
+
walkStmt(stmt, info, events, typeContext);
|
|
515
|
+
}
|
|
516
|
+
return events;
|
|
517
|
+
}
|
|
518
|
+
function buildFunctionTypeContext(info, fn) {
|
|
519
|
+
const variableTypes = new Map(info.stateVariableTypes);
|
|
520
|
+
const userDefinedVariables = new Set(info.stateVariableUserDefinedTypes);
|
|
521
|
+
for (const parameter of fn.parameters || []) {
|
|
522
|
+
const typeName = typeNameToString(parameter?.typeName);
|
|
523
|
+
if (parameter?.name && typeName)
|
|
524
|
+
variableTypes.set(String(parameter.name), typeName);
|
|
525
|
+
if (parameter?.name && isUserDefinedTypeName(parameter?.typeName))
|
|
526
|
+
userDefinedVariables.add(String(parameter.name));
|
|
527
|
+
}
|
|
528
|
+
for (const parameter of fn.returnParameters || []) {
|
|
529
|
+
const typeName = typeNameToString(parameter?.typeName);
|
|
530
|
+
if (parameter?.name && typeName)
|
|
531
|
+
variableTypes.set(String(parameter.name), typeName);
|
|
532
|
+
if (parameter?.name && isUserDefinedTypeName(parameter?.typeName))
|
|
533
|
+
userDefinedVariables.add(String(parameter.name));
|
|
534
|
+
}
|
|
535
|
+
collectLocalVariableTypes(fn.body, variableTypes, userDefinedVariables);
|
|
536
|
+
return { variableTypes, userDefinedVariables, internalOnlyTypes: info.internalOnlyTypes };
|
|
537
|
+
}
|
|
538
|
+
function collectLocalVariableTypes(node, variableTypes, userDefinedVariables) {
|
|
539
|
+
if (!node || typeof node !== 'object')
|
|
540
|
+
return;
|
|
541
|
+
if (node.type === 'VariableDeclarationStatement') {
|
|
542
|
+
for (const variable of node.variables || []) {
|
|
543
|
+
const typeName = typeNameToString(variable?.typeName);
|
|
544
|
+
if (variable?.name && typeName)
|
|
545
|
+
variableTypes.set(String(variable.name), typeName);
|
|
546
|
+
if (variable?.name && isUserDefinedTypeName(variable?.typeName))
|
|
547
|
+
userDefinedVariables.add(String(variable.name));
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
for (const c of childrenOf(node))
|
|
551
|
+
collectLocalVariableTypes(c, variableTypes, userDefinedVariables);
|
|
552
|
+
}
|
|
553
|
+
function modifierInvocationName(inv) {
|
|
554
|
+
if (!inv)
|
|
555
|
+
return '';
|
|
556
|
+
if (typeof inv.name === 'string')
|
|
557
|
+
return inv.name;
|
|
558
|
+
if (inv.name?.name)
|
|
559
|
+
return String(inv.name.name);
|
|
560
|
+
if (inv.name?.namePath)
|
|
561
|
+
return String(inv.name.namePath);
|
|
562
|
+
return '';
|
|
563
|
+
}
|
|
564
|
+
function splitModifierBody(body) {
|
|
565
|
+
const stmts = Array.isArray(body?.statements) ? body.statements : [];
|
|
566
|
+
let placeholder = -1;
|
|
567
|
+
for (let i = 0; i < stmts.length; i++) {
|
|
568
|
+
const s = stmts[i];
|
|
569
|
+
if (!s || typeof s !== 'object')
|
|
570
|
+
continue;
|
|
571
|
+
if (s.type === 'PlaceholderStatement') {
|
|
572
|
+
placeholder = i;
|
|
573
|
+
break;
|
|
574
|
+
}
|
|
575
|
+
if (s.type === 'ExpressionStatement' && s.expression?.type === 'Identifier' && s.expression.name === '_') {
|
|
576
|
+
placeholder = i;
|
|
577
|
+
break;
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
if (placeholder < 0)
|
|
581
|
+
return { prelude: stmts.slice(), epilogue: [] };
|
|
582
|
+
return { prelude: stmts.slice(0, placeholder), epilogue: stmts.slice(placeholder + 1) };
|
|
583
|
+
}
|
|
584
|
+
function walkStmt(node, info, events, typeContext) {
|
|
585
|
+
if (!node || typeof node !== 'object')
|
|
586
|
+
return;
|
|
587
|
+
switch (node.type) {
|
|
588
|
+
case 'Block':
|
|
589
|
+
for (const s of node.statements || [])
|
|
590
|
+
walkStmt(s, info, events, typeContext);
|
|
591
|
+
return;
|
|
592
|
+
case 'ExpressionStatement':
|
|
593
|
+
walkExpr(node.expression, info, events, typeContext);
|
|
594
|
+
return;
|
|
595
|
+
case 'IfStatement':
|
|
596
|
+
gatherTransientUses(node.condition, info, events);
|
|
597
|
+
walkExpr(node.condition, info, events, typeContext);
|
|
598
|
+
walkStmt(node.trueBody, info, events, typeContext);
|
|
599
|
+
walkStmt(node.falseBody, info, events, typeContext);
|
|
600
|
+
return;
|
|
601
|
+
case 'ForStatement':
|
|
602
|
+
walkStmt(node.initExpression, info, events, typeContext);
|
|
603
|
+
walkExpr(node.conditionExpression, info, events, typeContext);
|
|
604
|
+
walkStmt(node.body, info, events, typeContext);
|
|
605
|
+
walkStmt(node.loopExpression, info, events, typeContext);
|
|
606
|
+
return;
|
|
607
|
+
case 'WhileStatement':
|
|
608
|
+
gatherTransientUses(node.condition, info, events);
|
|
609
|
+
walkExpr(node.condition, info, events, typeContext);
|
|
610
|
+
walkStmt(node.body, info, events, typeContext);
|
|
611
|
+
return;
|
|
612
|
+
case 'DoWhileStatement':
|
|
613
|
+
walkStmt(node.body, info, events, typeContext);
|
|
614
|
+
walkExpr(node.condition, info, events, typeContext);
|
|
615
|
+
return;
|
|
616
|
+
case 'VariableDeclarationStatement':
|
|
617
|
+
walkExpr(node.initialValue, info, events, typeContext);
|
|
618
|
+
return;
|
|
619
|
+
case 'ReturnStatement':
|
|
620
|
+
case 'EmitStatement':
|
|
621
|
+
case 'RevertStatement':
|
|
622
|
+
walkExpr(node.expression, info, events, typeContext);
|
|
623
|
+
return;
|
|
624
|
+
case 'InlineAssemblyStatement':
|
|
625
|
+
walkAssembly(node.body, events);
|
|
626
|
+
return;
|
|
627
|
+
case 'TryStatement':
|
|
628
|
+
walkExpr(node.expression, info, events, typeContext);
|
|
629
|
+
walkStmt(node.body, info, events, typeContext);
|
|
630
|
+
for (const clause of node.catchClauses || [])
|
|
631
|
+
walkStmt(clause?.body, info, events, typeContext);
|
|
632
|
+
return;
|
|
633
|
+
case 'UncheckedStatement':
|
|
634
|
+
walkStmt(node.body, info, events, typeContext);
|
|
635
|
+
return;
|
|
636
|
+
default:
|
|
637
|
+
for (const c of childrenOf(node))
|
|
638
|
+
walkStmt(c, info, events, typeContext);
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
function walkExpr(node, info, events, typeContext) {
|
|
642
|
+
if (!node || typeof node !== 'object')
|
|
643
|
+
return;
|
|
644
|
+
switch (node.type) {
|
|
645
|
+
case 'BinaryOperation': {
|
|
646
|
+
if (ASSIGN_OPS.has(String(node.operator || ''))) {
|
|
647
|
+
walkExpr(node.right, info, events, typeContext);
|
|
648
|
+
const lhs = node.left;
|
|
649
|
+
if (lhs?.type === 'Identifier' && info.transientStateVars.has(String(lhs.name))) {
|
|
650
|
+
const isClear = node.operator === '=' && isFalseyLiteral(node.right);
|
|
651
|
+
events.push({ kind: 'tWrite', var: String(lhs.name), isClear, loc: locOf(node), node });
|
|
652
|
+
}
|
|
653
|
+
else if (lhs && lhs.type !== 'Identifier') {
|
|
654
|
+
// Walk index keys etc. so transient identifiers used as map keys
|
|
655
|
+
// still register; the outer write target is non-transient so we
|
|
656
|
+
// don't synthesize a write event.
|
|
657
|
+
walkExpr(lhs, info, events, typeContext);
|
|
658
|
+
}
|
|
659
|
+
return;
|
|
660
|
+
}
|
|
661
|
+
walkExpr(node.left, info, events, typeContext);
|
|
662
|
+
walkExpr(node.right, info, events, typeContext);
|
|
663
|
+
return;
|
|
664
|
+
}
|
|
665
|
+
case 'UnaryOperation':
|
|
666
|
+
if (node.operator === 'delete') {
|
|
667
|
+
const target = transientTargetName(node.subExpression, info);
|
|
668
|
+
if (target) {
|
|
669
|
+
events.push({ kind: 'tWrite', var: target, isClear: true, loc: locOf(node), node });
|
|
670
|
+
return;
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
if ((node.operator === '++' || node.operator === '--') &&
|
|
674
|
+
node.subExpression?.type === 'Identifier' &&
|
|
675
|
+
info.transientStateVars.has(String(node.subExpression.name))) {
|
|
676
|
+
events.push({ kind: 'tWrite', var: String(node.subExpression.name), isClear: false, loc: locOf(node), node });
|
|
677
|
+
return;
|
|
678
|
+
}
|
|
679
|
+
walkExpr(node.subExpression, info, events, typeContext);
|
|
680
|
+
return;
|
|
681
|
+
case 'FunctionCall': {
|
|
682
|
+
const callee = node.expression;
|
|
683
|
+
const calleeName = callee?.type === 'Identifier' ? String(callee.name || '') : '';
|
|
684
|
+
if (calleeName === 'require' || calleeName === 'assert') {
|
|
685
|
+
for (const arg of node.arguments || []) {
|
|
686
|
+
gatherTransientUses(arg, info, events);
|
|
687
|
+
walkExpr(arg, info, events, typeContext);
|
|
688
|
+
}
|
|
689
|
+
return;
|
|
690
|
+
}
|
|
691
|
+
if (isExternalCallExpr(node, typeContext)) {
|
|
692
|
+
// Walk callee/argument identifiers first so any read events register
|
|
693
|
+
// before the externalCall marker.
|
|
694
|
+
if (callee?.type === 'MemberAccess') {
|
|
695
|
+
walkExpr(callee.expression, info, events, typeContext);
|
|
696
|
+
}
|
|
697
|
+
else if (callee?.type === 'NameValueExpression') {
|
|
698
|
+
const inner = callee.expression;
|
|
699
|
+
if (inner?.type === 'MemberAccess')
|
|
700
|
+
walkExpr(inner.expression, info, events, typeContext);
|
|
701
|
+
}
|
|
702
|
+
for (const arg of node.arguments || [])
|
|
703
|
+
walkExpr(arg, info, events, typeContext);
|
|
704
|
+
events.push({ kind: 'externalCall', loc: locOf(node), node });
|
|
705
|
+
return;
|
|
706
|
+
}
|
|
707
|
+
walkExpr(callee, info, events, typeContext);
|
|
708
|
+
for (const arg of node.arguments || [])
|
|
709
|
+
walkExpr(arg, info, events, typeContext);
|
|
710
|
+
return;
|
|
711
|
+
}
|
|
712
|
+
case 'Identifier':
|
|
713
|
+
if (info.transientStateVars.has(String(node.name || ''))) {
|
|
714
|
+
events.push({ kind: 'tRead', var: String(node.name), loc: locOf(node), node });
|
|
715
|
+
}
|
|
716
|
+
return;
|
|
717
|
+
case 'TupleExpression':
|
|
718
|
+
for (const c of node.components || [])
|
|
719
|
+
walkExpr(c, info, events, typeContext);
|
|
720
|
+
return;
|
|
721
|
+
case 'IndexAccess':
|
|
722
|
+
walkExpr(node.base, info, events, typeContext);
|
|
723
|
+
walkExpr(node.index, info, events, typeContext);
|
|
724
|
+
return;
|
|
725
|
+
case 'IndexRangeAccess':
|
|
726
|
+
walkExpr(node.base, info, events, typeContext);
|
|
727
|
+
walkExpr(node.indexStart, info, events, typeContext);
|
|
728
|
+
walkExpr(node.indexEnd, info, events, typeContext);
|
|
729
|
+
return;
|
|
730
|
+
case 'MemberAccess':
|
|
731
|
+
walkExpr(node.expression, info, events, typeContext);
|
|
732
|
+
return;
|
|
733
|
+
case 'NameValueExpression':
|
|
734
|
+
walkExpr(node.expression, info, events, typeContext);
|
|
735
|
+
return;
|
|
736
|
+
case 'Conditional':
|
|
737
|
+
walkExpr(node.condition, info, events, typeContext);
|
|
738
|
+
walkExpr(node.trueExpression, info, events, typeContext);
|
|
739
|
+
walkExpr(node.falseExpression, info, events, typeContext);
|
|
740
|
+
return;
|
|
741
|
+
case 'NewExpression':
|
|
742
|
+
walkExpr(node.typeName, info, events, typeContext);
|
|
743
|
+
return;
|
|
744
|
+
default:
|
|
745
|
+
for (const c of childrenOf(node))
|
|
746
|
+
walkExpr(c, info, events, typeContext);
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
function transientTargetName(node, info) {
|
|
750
|
+
if (!node || typeof node !== 'object')
|
|
751
|
+
return null;
|
|
752
|
+
if (node.type === 'Identifier' && info.transientStateVars.has(String(node.name || ''))) {
|
|
753
|
+
return String(node.name);
|
|
754
|
+
}
|
|
755
|
+
if (node.type === 'MemberAccess' &&
|
|
756
|
+
node.expression?.type === 'Identifier' &&
|
|
757
|
+
node.expression.name === 'this' &&
|
|
758
|
+
info.transientStateVars.has(String(node.memberName || ''))) {
|
|
759
|
+
return String(node.memberName);
|
|
760
|
+
}
|
|
761
|
+
return null;
|
|
762
|
+
}
|
|
763
|
+
function gatherTransientUses(node, info, events) {
|
|
764
|
+
if (!node || typeof node !== 'object')
|
|
765
|
+
return;
|
|
766
|
+
if (node.type === 'Identifier' && info.transientStateVars.has(String(node.name || ''))) {
|
|
767
|
+
events.push({ kind: 'tRequireUse', var: String(node.name), loc: locOf(node), node });
|
|
768
|
+
return;
|
|
769
|
+
}
|
|
770
|
+
for (const c of childrenOf(node))
|
|
771
|
+
gatherTransientUses(c, info, events);
|
|
772
|
+
}
|
|
773
|
+
function walkAssembly(node, events) {
|
|
774
|
+
if (!node || typeof node !== 'object')
|
|
775
|
+
return;
|
|
776
|
+
switch (node.type) {
|
|
777
|
+
case 'AssemblyBlock':
|
|
778
|
+
for (const s of node.operations || [])
|
|
779
|
+
walkAssembly(s, events);
|
|
780
|
+
return;
|
|
781
|
+
case 'AssemblyCall': {
|
|
782
|
+
const fname = String(node.functionName || '');
|
|
783
|
+
const args = node.arguments || [];
|
|
784
|
+
if (fname === 'tstore') {
|
|
785
|
+
const slot = assemblySlotKey(args[0]);
|
|
786
|
+
if (slot) {
|
|
787
|
+
const isClear = isAssemblyZero(args[1]);
|
|
788
|
+
events.push({ kind: 'tWrite', var: slot, isClear, loc: locOf(node), node });
|
|
789
|
+
}
|
|
790
|
+
for (const arg of args)
|
|
791
|
+
walkAssembly(arg, events);
|
|
792
|
+
return;
|
|
793
|
+
}
|
|
794
|
+
if (fname === 'tload') {
|
|
795
|
+
const slot = assemblySlotKey(args[0]);
|
|
796
|
+
if (slot)
|
|
797
|
+
events.push({ kind: 'tRead', var: slot, loc: locOf(node), node });
|
|
798
|
+
for (const arg of args)
|
|
799
|
+
walkAssembly(arg, events);
|
|
800
|
+
return;
|
|
801
|
+
}
|
|
802
|
+
for (const arg of args)
|
|
803
|
+
walkAssembly(arg, events);
|
|
804
|
+
return;
|
|
805
|
+
}
|
|
806
|
+
case 'AssemblyAssignment':
|
|
807
|
+
walkAssembly(node.expression, events);
|
|
808
|
+
return;
|
|
809
|
+
case 'AssemblyLocalDefinition':
|
|
810
|
+
walkAssembly(node.expression, events);
|
|
811
|
+
return;
|
|
812
|
+
case 'AssemblyIf':
|
|
813
|
+
walkAssembly(node.condition, events);
|
|
814
|
+
walkAssembly(node.body, events);
|
|
815
|
+
return;
|
|
816
|
+
case 'AssemblyFor':
|
|
817
|
+
walkAssembly(node.pre, events);
|
|
818
|
+
walkAssembly(node.condition, events);
|
|
819
|
+
walkAssembly(node.body, events);
|
|
820
|
+
walkAssembly(node.post, events);
|
|
821
|
+
return;
|
|
822
|
+
case 'AssemblySwitch':
|
|
823
|
+
walkAssembly(node.expression, events);
|
|
824
|
+
for (const c of node.cases || [])
|
|
825
|
+
walkAssembly(c, events);
|
|
826
|
+
return;
|
|
827
|
+
case 'AssemblyCase':
|
|
828
|
+
walkAssembly(node.value, events);
|
|
829
|
+
walkAssembly(node.block, events);
|
|
830
|
+
return;
|
|
831
|
+
case 'AssemblyFunctionDefinition':
|
|
832
|
+
walkAssembly(node.body, events);
|
|
833
|
+
return;
|
|
834
|
+
default:
|
|
835
|
+
for (const c of childrenOf(node))
|
|
836
|
+
walkAssembly(c, events);
|
|
837
|
+
}
|
|
838
|
+
}
|
|
839
|
+
function assemblySlotKey(node) {
|
|
840
|
+
if (!node || typeof node !== 'object')
|
|
841
|
+
return null;
|
|
842
|
+
if (node.type === 'AssemblyCall' && (!Array.isArray(node.arguments) || node.arguments.length === 0)
|
|
843
|
+
&& typeof node.functionName === 'string' && node.functionName.length > 0) {
|
|
844
|
+
return 'id:' + node.functionName;
|
|
845
|
+
}
|
|
846
|
+
if (node.type === 'HexNumber' && typeof node.value === 'string') {
|
|
847
|
+
try {
|
|
848
|
+
return 'lit:' + BigInt(node.value).toString();
|
|
849
|
+
}
|
|
850
|
+
catch {
|
|
851
|
+
return null;
|
|
852
|
+
}
|
|
853
|
+
}
|
|
854
|
+
if (node.type === 'DecimalNumber' && typeof node.value === 'string') {
|
|
855
|
+
try {
|
|
856
|
+
return 'lit:' + BigInt(node.value).toString();
|
|
857
|
+
}
|
|
858
|
+
catch {
|
|
859
|
+
return null;
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
if (node.type === 'Identifier' && typeof node.name === 'string')
|
|
863
|
+
return 'id:' + node.name;
|
|
864
|
+
return null;
|
|
865
|
+
}
|
|
866
|
+
function isAssemblyZero(node) {
|
|
867
|
+
if (!node || typeof node !== 'object')
|
|
868
|
+
return false;
|
|
869
|
+
if (node.type === 'HexNumber' || node.type === 'DecimalNumber') {
|
|
870
|
+
try {
|
|
871
|
+
return BigInt(node.value).toString() === '0';
|
|
872
|
+
}
|
|
873
|
+
catch {
|
|
874
|
+
return false;
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
return false;
|
|
878
|
+
}
|
|
879
|
+
function isFalseyLiteral(node) {
|
|
880
|
+
if (!node || typeof node !== 'object')
|
|
881
|
+
return false;
|
|
882
|
+
if (node.type === 'BooleanLiteral')
|
|
883
|
+
return node.value === false;
|
|
884
|
+
if (node.type === 'NumberLiteral') {
|
|
885
|
+
const raw = String(node.number ?? node.value ?? '').trim();
|
|
886
|
+
if (raw === '')
|
|
887
|
+
return false;
|
|
888
|
+
try {
|
|
889
|
+
return BigInt(raw).toString() === '0';
|
|
890
|
+
}
|
|
891
|
+
catch {
|
|
892
|
+
return /^0(x0+)?$/i.test(raw);
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
if (node.type === 'HexLiteral') {
|
|
896
|
+
const raw = String(node.value ?? '').trim();
|
|
897
|
+
return /^0x0+$/i.test(raw) || raw === '0';
|
|
898
|
+
}
|
|
899
|
+
if (node.type === 'StringLiteral')
|
|
900
|
+
return false;
|
|
901
|
+
// address(0), uint256(0), bytes32(0). The parser emits these casts as
|
|
902
|
+
// FunctionCall whose expression is either ElementaryTypeName or an
|
|
903
|
+
// Identifier whose name happens to be a built-in type token.
|
|
904
|
+
if (node.type === 'FunctionCall') {
|
|
905
|
+
const args = node.arguments || [];
|
|
906
|
+
if (args.length !== 1)
|
|
907
|
+
return false;
|
|
908
|
+
const callee = node.expression;
|
|
909
|
+
if (callee?.type === 'ElementaryTypeName')
|
|
910
|
+
return isFalseyLiteral(args[0]);
|
|
911
|
+
if (callee?.type === 'Identifier' && isBuiltinTypeName(String(callee.name || ''))) {
|
|
912
|
+
return isFalseyLiteral(args[0]);
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
return false;
|
|
916
|
+
}
|
|
917
|
+
function isBuiltinTypeName(name) {
|
|
918
|
+
if (!name)
|
|
919
|
+
return false;
|
|
920
|
+
if (name === 'address' || name === 'bool')
|
|
921
|
+
return true;
|
|
922
|
+
if (/^u?int(8|16|24|32|40|48|56|64|72|80|88|96|104|112|120|128|136|144|152|160|168|176|184|192|200|208|216|224|232|240|248|256)?$/.test(name))
|
|
923
|
+
return true;
|
|
924
|
+
if (/^bytes([1-9]|[12][0-9]|3[0-2])?$/.test(name))
|
|
925
|
+
return true;
|
|
926
|
+
return false;
|
|
927
|
+
}
|
|
928
|
+
function isExternalCallExpr(node, typeContext) {
|
|
929
|
+
if (!node || node.type !== 'FunctionCall')
|
|
930
|
+
return false;
|
|
931
|
+
let target = node.expression;
|
|
932
|
+
if (!target)
|
|
933
|
+
return false;
|
|
934
|
+
if (target.type === 'NameValueExpression')
|
|
935
|
+
target = target.expression;
|
|
936
|
+
if (target?.type !== 'MemberAccess')
|
|
937
|
+
return false;
|
|
938
|
+
const member = String(target.memberName || '');
|
|
939
|
+
if (LOW_LEVEL_CALL_MEMBERS.has(member))
|
|
940
|
+
return true;
|
|
941
|
+
if (INTERNAL_MEMBER_CALL_MEMBERS.has(member))
|
|
942
|
+
return false;
|
|
943
|
+
const base = target.expression;
|
|
944
|
+
if (!base)
|
|
945
|
+
return false;
|
|
946
|
+
if (base.type === 'Identifier' && BUILTIN_NAMESPACES.has(String(base.name || '')))
|
|
947
|
+
return false;
|
|
948
|
+
if (base.type === 'Identifier') {
|
|
949
|
+
const baseName = String(base.name || '');
|
|
950
|
+
const typeName = typeContext.variableTypes.get(baseName);
|
|
951
|
+
if (typeName) {
|
|
952
|
+
if (!typeContext.userDefinedVariables.has(baseName))
|
|
953
|
+
return false;
|
|
954
|
+
if (typeContext.internalOnlyTypes.has(typeName))
|
|
955
|
+
return false;
|
|
956
|
+
return true;
|
|
957
|
+
}
|
|
958
|
+
return true;
|
|
959
|
+
}
|
|
960
|
+
if (base.type === 'MemberAccess' || base.type === 'IndexAccess' || base.type === 'FunctionCall')
|
|
961
|
+
return true;
|
|
962
|
+
return false;
|
|
963
|
+
}
|
|
964
|
+
function typeNameToString(typeName) {
|
|
965
|
+
if (!typeName || typeof typeName !== 'object')
|
|
966
|
+
return null;
|
|
967
|
+
if (typeName.type === 'ElementaryTypeName')
|
|
968
|
+
return normalizeTypeName(typeName.name);
|
|
969
|
+
if (typeName.type === 'UserDefinedTypeName')
|
|
970
|
+
return normalizeTypeName(typeName.namePath || typeName.name);
|
|
971
|
+
if (typeName.type === 'ArrayTypeName')
|
|
972
|
+
return typeNameToString(typeName.baseTypeName);
|
|
973
|
+
if (typeName.type === 'Mapping')
|
|
974
|
+
return 'mapping';
|
|
975
|
+
return null;
|
|
976
|
+
}
|
|
977
|
+
function isUserDefinedTypeName(typeName) {
|
|
978
|
+
if (!typeName || typeof typeName !== 'object')
|
|
979
|
+
return false;
|
|
980
|
+
if (typeName.type === 'UserDefinedTypeName')
|
|
981
|
+
return true;
|
|
982
|
+
if (typeName.type === 'ArrayTypeName')
|
|
983
|
+
return isUserDefinedTypeName(typeName.baseTypeName);
|
|
984
|
+
return false;
|
|
985
|
+
}
|
|
986
|
+
function normalizeTypeName(typeName) {
|
|
987
|
+
if (!typeName)
|
|
988
|
+
return null;
|
|
989
|
+
const last = String(typeName).split('.').pop() || '';
|
|
990
|
+
if (last === 'uint')
|
|
991
|
+
return 'uint256';
|
|
992
|
+
if (last === 'int')
|
|
993
|
+
return 'int256';
|
|
994
|
+
return last || null;
|
|
995
|
+
}
|
|
996
|
+
function hasReentrancyGuard(fn) {
|
|
997
|
+
for (const m of fn.modifiers || []) {
|
|
998
|
+
const name = modifierInvocationName(m).toLowerCase();
|
|
999
|
+
if (!name)
|
|
1000
|
+
continue;
|
|
1001
|
+
if (name === 'nonreentrant' || name.includes('reentrancyguard'))
|
|
1002
|
+
return true;
|
|
1003
|
+
}
|
|
1004
|
+
return false;
|
|
1005
|
+
}
|
|
1006
|
+
function makeFinding(input) {
|
|
1007
|
+
const loc = input.loc || { line: 0, column: 0 };
|
|
1008
|
+
return {
|
|
1009
|
+
file: input.file,
|
|
1010
|
+
contract: input.contract,
|
|
1011
|
+
'function': input.function,
|
|
1012
|
+
line: loc.line,
|
|
1013
|
+
endLine: loc.line,
|
|
1014
|
+
column: loc.column,
|
|
1015
|
+
pattern: RULE_ID,
|
|
1016
|
+
confidence: 'high',
|
|
1017
|
+
ruleId: RULE_ID,
|
|
1018
|
+
severity: input.severity,
|
|
1019
|
+
message: input.message,
|
|
1020
|
+
rationale: input.rationale,
|
|
1021
|
+
suggestedFix: input.suggestedFix,
|
|
1022
|
+
contractName: input.contract,
|
|
1023
|
+
functionName: input.function,
|
|
1024
|
+
sourceLocation: { line: loc.line, column: loc.column },
|
|
1025
|
+
findingId: '',
|
|
1026
|
+
contractHash: '',
|
|
1027
|
+
};
|
|
1028
|
+
}
|
|
1029
|
+
function locOf(node) {
|
|
1030
|
+
const start = node?.loc?.start;
|
|
1031
|
+
if (!start)
|
|
1032
|
+
return null;
|
|
1033
|
+
return { line: Number(start.line || 0), column: Number(start.column || 0) };
|
|
1034
|
+
}
|
|
1035
|
+
function childrenOf(node) {
|
|
1036
|
+
const out = [];
|
|
1037
|
+
for (const [key, value] of Object.entries(node)) {
|
|
1038
|
+
if (key === 'loc' || key === 'range')
|
|
1039
|
+
continue;
|
|
1040
|
+
if (Array.isArray(value)) {
|
|
1041
|
+
for (const item of value) {
|
|
1042
|
+
if (item && typeof item === 'object')
|
|
1043
|
+
out.push(item);
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
else if (value && typeof value === 'object') {
|
|
1047
|
+
out.push(value);
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
return out;
|
|
1051
|
+
}
|
|
1052
|
+
//# sourceMappingURL=unsafe-transient-storage.js.map
|