Side cash through a dating site bot

What do you mean, what does it look like?
Yes, I have to collect the conversations. Otherwise it becomes very obvious very fast it's a bot talking

Arent you using selenium? I thought it is simulating a browser? If so it should have an useragent. And I am just curious what is sas in the useragent because this one basic thing to check for and change when creating a bot I guess.
I think you can use this code:

Code:
user_agent = driver.execute_script("return navigator.userAgent;")
 
Can you get banned by the dating sites for these kinds of things?
 
Arent you using selenium? I thought it is simulating a browser? If so it should have an useragent. And I am just curious what is sas in the useragent because this one basic thing to check for and change when creating a bot I guess.
I think you can use this code:

Code:
user_agent = driver.execute_script("return navigator.userAgent;")

Sorry, my brain was on weekend mode. I'm using chrome 78

Can you get banned by the dating sites for these kinds of things?

Yes, very much so. That's actually the weak part of the process: sending the cam link.
 
Sorry, my brain was on weekend mode. I'm using chrome 78

Thats not enough ;)
Make shure that the user Agent looks correctly
this is better
Code:
 Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/78.0.3904.108 Safari/537.36
than this one(I made this one up):
Code:
 Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/78 SELENIUM
You can use this site to get correct and often used useragents
Code:
 techblog.willshouse.com/2012/01/03/most-common-user-agents/


Yes, very much so. That's actually the weak part of the process: sending the cam link.
are you using this method for the cam link? https://www.blackhatworld.com/seo/h...-sites-without-getting-domain-banned.1072962/
 
Thats not enough ;)
Make shure that the user Agent looks correctly
this is better
Code:
 Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/78.0.3904.108 Safari/537.36
than this one(I made this one up):
Code:
 Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML%2C like Gecko) Chrome/78 SELENIUM
You can use this site to get correct and often used useragents
Code:
 techblog.willshouse.com/2012/01/03/most-common-user-agents/



are you using this method for the cam link? https://www.blackhatworld.com/seo/h...-sites-without-getting-domain-banned.1072962/
OK, my full user agent reads like this: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36

So I think it looks ok.

Thanks for the link! Really appreciate it!
 
Back
Top