Skip to content

this program is needed in order to bypass the auto-output in the bsc network for stake withdraw

Notifications You must be signed in to change notification settings

hom9kfun/autowithdraw-bypass-bsc-stake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🛡️ Program for Bypassing Automatic Withdrawal of Funds from Hacked Wallets

This program will help you withdraw your funds from the automatic withdrawal that hackers set up on hacked wallets. If you replenish funds for the commission and they are instantly withdrawn to another wallet, leaving you no time to act - this script bypasses such situations, charging only 10% of the total staking withdrawal amount. In the future, if the program is in demand, I plan to reduce the commission to 1%.

update 06.11.2024

+a new method of working with arguments has been added. Now you can add any arguments in any format and in any quantity, unnecessary arguments must be removed, the principle of adding is described in the example, work by analogy with the example

+the manual method of setting the gas limit has been removed and an automatic one has been added, errors may occur on untested tokens where the gas limit may be too high

⚙️ Getting Started

1. Setting up config.json

Before running the program, fill in the config.json file as follows:

  • private_key_account: The private key of the wallet from which you want to withdraw the stake.
  • private_key_donor: The private key of the donor wallet from which BNB will be debited for transactions.
  • contract_stake_address: The contract address where the stake is located (e.g. Pancake Pool).
  • contract_token_address: The contract address of the token that is in the stake (e.g. CAKE Token).
  • recipient_address: The recipient address to which the tokens from the stake will be withdrawn.
  • transfer_gas_price: Fee amount (in Gwei) for a token transfer transaction (default: 1 Gwei).
  • stake_gas_price: Fee amount (in Gwei) for a stake withdrawal transaction (default: 1 Gwei).
  • stake_balance: Your staking balance in the usual format (e.g. if you have 100 BUSD staked, just enter 100. If the amount is less than 1, separate it with a dot, e.g. 0.523).
  • withdraw_function_name: a very important parameter is the name of the stack output function in the March contract, to find it out you need to go into your smart steak contract and look at any transaction with a request like "claim, withdraw, etc." at the very bottom you will have the "more details" button click it and in the table that opens copy the function and specify it's in the config click
  • need_args: accepts the parameter true or false depends on whether there is an argument in your function as indicated in the function above, in short, if there is something like uint256 or another in parentheses, then the argument is needed and you need to set true, and if the parentheses are empty without any text, then the argument is not needed and false is set
  • withdraw_argument: the argument directly needed for the execution of the function to find it out, you must look at other transactions with this function following the previous points, this can be done like this click
  • rpc_url: it is recommended to change the address of the rpc node only if there are any problems with the default one

Example config.json:

{
    "private_key_account": "private_key_account_here",
    "private_key_donor": "private_key_donor_here",
    "contract_stake_address": "contract_stake_address_here",
    "contract_token_address": "contract_token_address_here",
    "recipient_address": "recipient_address_here",
    "transfer_gas_price": "1 gwei",
    "stake_gas_price": "1 gwei",
    "stake_balance": "balance_here exmp (0.223324)",
    "decimals": 18,
    "withdraw_function_name": "claim() (exmp)",
    "need_args": false,
    "rpc_url": "https://bsc-dataseed4.ninicoin.io",
    "withdraw_arguments": [
        {"type": "address", "value": "adr"},
        {"type": "uint256", "value": "100000000000"},
        {"type": "bytes", "value": "bytes here"}
      ]
}

🚀 Launch

After filling in the config.json file, you can launch the stake.exe program. If all parameters are specified correctly, you will see your funds on the specified wallet. 🥳

🔒 Safety of use

  • VirusTotal check: Make sure the stake.exe file is safe by checking it on VirusTotal. 🔍
  • Source code: Unfortunately, for obvious reasons, the source code of the program is not available. ❌

📞 Support

If the program did not work for you or you have other questions, do not hesitate to write to me in Telegram: @nevadalzt. I will try to help you! 💬

or here: lolz

📅 Future updates

  • In the near future, I plan to release programs to bypass the automatic withdrawal of NFT and regular tokens. 🎉
  • Other EVM networks will also be added. Stay tuned! 🔔

⚠️ Important

The program is intended only for personal wallets to help with the withdrawal of their funds! I am not responsible for theft or anything else committed by my program 🔥