摘要:
赛题地址:https://blockchain-ctf.securityinnovation.com/#/dashboard Donation 源码解析 我们只需要用外部账户调用 withdrawDonationsFromTheSuckersWhoFellForIt() 把钱取出来,就算是挑战成功啦 阅读全文
摘要:
论文简介 论文题目:A survey of Blockchain consensus algorithms: mechanism, design and applications 本篇论文提出来一个三段式的分类模型对主流的共识算法进行分类,并对其优缺点、安全性以及应用场景进行了分析。 区块链类型 按 阅读全文
摘要:
合约部署 要部署的合约 pragma solidity ^0.4.23; contract test { uint256 value; function setValue(uint256 _value) public{ value = _value; } function getValue() pu 阅读全文
摘要:
工具简介 Slither 是一个 python3 开发,用于检测智能合约(solidity)漏洞的静态分析框架。 Slither 的 Github 地址:https://github.com/crytic/slither 工具安装 它有三种安装方式(pip, git, docker),我们为了方便, 阅读全文
摘要:
论文简介 论文标题:ContractFuzzer: Fuzzing Smart Contracts for Vulnerability Detection 论文链接:ContractFuzzer: Fuzzing Smart Contracts for Vulnerability Detection 阅读全文
摘要:
论文简介 论文题目:Analysis and Takeover of the Bitcoin-Coordinated Pony Malware PDF地址:https://www.cyber-threat-intelligence.com/publications/AsiaCCS2021-pony. 阅读全文