Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kadenzipfel authored Oct 30, 2024
1 parent df5bcaa commit fc7802f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@

A collection of smart contract vulnerabilities along with prevention methods

## Access Control
### Access Control

- [Authorization Through tx.origin](./vulnerabilities/authorization-txorigin.md)
- [Insufficient Access Control](./vulnerabilities/insufficient-access-control.md)
- [Delegatecall to Untrusted Callee](./vulnerabilities/delegatecall-untrusted-callee.md)
- [Signature Malleability](./vulnerabilities/signature-malleability.md)
- [Missing Protection against Signature Replay Attacks](./vulnerabilities/missing-protection-signature-replay.md)

## Math
### Math

- [Integer Overflow and Underflow](./vulnerabilities/overflow-underflow.md)
- [Off-By-One](./vulnerabilities/off-by-one.md)
- [Lack of Precision](./vulnerabilities/lack-of-precision.md)

## Control Flow
### Control Flow

- [Reentrancy](./vulnerabilities/reentrancy.md)
- [DoS with Block Gas Limit](./vulnerabilities/dos-gas-limit.md)
Expand All @@ -25,15 +25,15 @@ A collection of smart contract vulnerabilities along with prevention methods
- [Transaction-Ordering Dependence](./vulnerabilities/transaction-ordering-dependence.md)
- [Insufficient Gas Griefing](./vulnerabilities/insufficient-gas-griefing.md)

## Data Handling
### Data Handling

- [Unchecked Return Value](./vulnerabilities/unchecked-return-values.md)
- [Write to Arbitrary Storage Location](./vulnerabilities/arbitrary-storage-location.md)
- [Unbounded Return Data](./vulnerabilities/unbounded-return-data.md)
- [Uninitialized Storage Pointer](./vulnerabilities/uninitialized-storage-pointer.md)
- [Unexpected `ecrecover` null address](./vulnerabilities/unexpected-ecrecover-null-address.md)

## Unsafe Logic
### Unsafe Logic

- [Weak Sources of Randomness from Chain Attributes](./vulnerabilities/weak-sources-randomness.md)
- [Hash Collision when using abi.encodePacked() with Multiple Variable-Length Arguments](./vulnerabilities/hash-collision.md)
Expand All @@ -43,7 +43,7 @@ A collection of smart contract vulnerabilities along with prevention methods
- [Unencrypted Private Data On-Chain](./vulnerabilities/unencrypted-private-data-on-chain.md)
- [Asserting Contract from Code Size](./vulnerabilities/asserting-contract-from-code-size.md)

## Code Quality
### Code Quality

- [Floating Pragma](./vulnerabilities/floating-pragma.md)
- [Outdated Compiler Version](./vulnerabilities/outdated-compiler-version.md)
Expand Down

0 comments on commit fc7802f

Please sign in to comment.