rahuljoshua77 / Kick.com-Automation-Register-and-follow

Kick.com Automation Register and follow using Selenium
2 stars 0 forks source link

Kick restricted email formats #1

Open unknwon00 opened 1 year ago

unknwon00 commented 1 year ago

you can no longer use email addresses that have more than 1 "." in the name. Also you can`t use "+" at all.

Is there a way of changing the email generation process to remove these?

TheMysteryPanda commented 1 year ago

You can add another line in kick.py above
xpath_el('//input[@name="plusGmail"]')

Add this line: xpath_el('//input[@name="dotGmail"]')

Most of the domains from this website are already blacklisted.

unknwon00 commented 1 year ago

ya, none of the gmail accounts from this site are working anymore.

rahuljoshua77 commented 1 year ago

Hi, any website email working to registrate kick.com?

unknwon00 commented 1 year ago

outlook.com works, but the capcatcha is crazy and cant be done automatically. hell i fail it 5/10 times my self. Also you have to keep trying different proxies until you find one that doesnt ask for a phone number.

Even after that, i created 50 accounts on Outlook/kick, over 30 of them where banned in less than a day.

TheMysteryPanda commented 1 year ago

Hey everyone,

I can give you a small instruction on how to create your own bot army.

You need proxies, some domains, a server and some knowledge.

First of all you setup roundcube on your server. If you don't know how to do this, use ChatGPT. Buy some domains (I buy them from namecheap or godaddy) and point their nameserver to your rundcube server. Add the domains in your rundcube, turn of the catch all emails function for each domain. And last step, change the code so it uses your domains after the @ (like username@yourdomain.info), open roundcube, login and get the first 6 numbers from the last email.

Sounds like a lot, is a lot, but it works. Also use more than 1 domain, as there's a pretty high chance your domain get blacklisted after a few accounts!

TheMysteryPanda commented 1 year ago

Another thing I forgot to mention. For the recaptcha there's a chrome extension called "Buster". It doesn't work 100%, but it's still better resolving that shit on your own. Just get the id of the Buster icon (which you'll see in the recaptcha) and let selenium click on it. Also add time.sleep(10) after the click, so Buster got some time resolving it. Cheers.