thebrumby / HotWalletClaimer

Looking to optimize your earnings with HOT tokens on the Near Protocol? How about Wave on SUI? Tree on BSC? Or Vertus on Ton? This Python script simplifies the process by monitoring your account status within popular Telegram apps, ensuring rewards are claimed at the correct time.
MIT License
84 stars 31 forks source link

safety? #74

Closed mentalityStyle closed 20 hours ago

mentalityStyle commented 4 days ago

Does this script use random user agent?

thebrumby commented 4 days ago

Hi,

No the script generally uses a recent iPhone user agent and if you use the in-built proxy it will attempt to rewrite references to the TG Web platform to be iOS amongst some other tricks.

Hexacore and Oxygen let you set your own user agent per account as these games are sensitive to the bot working from the same UA that the user had when using the GUI - we might extend this to all games. We believe Oxygen also requires the same IP address as the GUI user.

If you intend to operate a lot of accounts from the same computer and prefer a random user agent, you’ll have to modify the setup_driver() function to meet your needs. You could also look to use the python module SQUID to spoof some different IP address - but this didn’t universally play well on different host computers so you’ll have to implement this on your own, but you can see the code we used in last weeks enable-proxy.py script history.

Thanks

mentalityStyle commented 2 days ago

can i use this bot with token bot (bot father) instead phone number?

thebrumby commented 2 days ago

Hi,

The script initiates a virtual browser session to access each Crypto game via the official Telegram sign-in link. It simulates mouse movements and clicks within this virtual environment, mimicking human interactions. This helps to comply with anti-bot checks implemented by game developers, particularly those concerning mouse movements. Unlike some scripts that require API interactions or users to obtain their access tokens, this script operates without direct API calls.

Telegram supports login methods either via QR code or a one-time password, (the OTP method requires the country code and registered telephone number), both Telegram methods are available in this script.

Thanks.