06 2021 档案

摘要:合约部署 要部署的合约 pragma solidity ^0.4.23; contract test { uint256 value; function setValue(uint256 _value) public{ value = _value; } function getValue() pu 阅读全文
posted @ 2021-06-16 17:23 ACai_sec 阅读(856) 评论(0) 推荐(0)
摘要:工具简介 Slither 是一个 python3 开发,用于检测智能合约(solidity)漏洞的静态分析框架。 Slither 的 Github 地址:https://github.com/crytic/slither 工具安装 它有三种安装方式(pip, git, docker),我们为了方便, 阅读全文
posted @ 2021-06-03 13:44 ACai_sec 阅读(1121) 评论(0) 推荐(0)
摘要:论文简介 论文标题:ContractFuzzer: Fuzzing Smart Contracts for Vulnerability Detection 论文链接:ContractFuzzer: Fuzzing Smart Contracts for Vulnerability Detection 阅读全文
posted @ 2021-06-01 10:28 ACai_sec 阅读(1298) 评论(0) 推荐(0)