├── .DS_Store ├── README.md ├── contracts ├── DoSBlockGasLimit │ └── Bank.sol ├── DoSRevert │ ├── Auction.sol │ └── AuctionAttacker.sol ├── IntUnderflow │ └── IntUnderflow.sol ├── Migrations.sol └── Reentrance │ ├── Reentrance.sol │ └── ReentranceAttacker.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── test ├── dosgaslimit.js ├── dosrevert.js ├── intunderflow.js └── reentrancy.js └── truffle.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/README.md -------------------------------------------------------------------------------- /contracts/DoSBlockGasLimit/Bank.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/contracts/DoSBlockGasLimit/Bank.sol -------------------------------------------------------------------------------- /contracts/DoSRevert/Auction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/contracts/DoSRevert/Auction.sol -------------------------------------------------------------------------------- /contracts/DoSRevert/AuctionAttacker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/contracts/DoSRevert/AuctionAttacker.sol -------------------------------------------------------------------------------- /contracts/IntUnderflow/IntUnderflow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/contracts/IntUnderflow/IntUnderflow.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Reentrance/Reentrance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/contracts/Reentrance/Reentrance.sol -------------------------------------------------------------------------------- /contracts/Reentrance/ReentranceAttacker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/contracts/Reentrance/ReentranceAttacker.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /test/dosgaslimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/test/dosgaslimit.js -------------------------------------------------------------------------------- /test/dosrevert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/test/dosrevert.js -------------------------------------------------------------------------------- /test/intunderflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/test/intunderflow.js -------------------------------------------------------------------------------- /test/reentrancy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/test/reentrancy.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvonpentz/solidity-exploits/HEAD/truffle.js --------------------------------------------------------------------------------