Help with a bot for website

dino102

Newbie
Joined
Sep 2, 2019
Messages
4
Reaction score
1
Hi All,
I have been developing a bot.
here are my attempts so far.

  • Developed a simple JavaScript bot. site detects it immediately.
  • Developed a bot with c# winforms using geckoweb browser control. site detects it.(they check user agent, browser fingerprint andstuff)
  • made a java script to download the source and get the location of button i need to click every 300 ms and then use a c# app to simulate mouse movements using WIn32API and still got banned. now, its clear they are detecting mouse movements.
  • made the above bot with human like mouse movements.
My question is is there a way to get data from a chrome tab that is open without using JS extensions and send it to a c# app somehow?
or are there any better ideas?
 
Last edited by a moderator:
Developed a simple JavaScript bot
Developed a bot with c#
made a java script
made the above bot with human like mouse movements

that-escalated-quickly-300x300.jpg


The technology you use is not the problem.

(they check user agent, browser fingerprint andstuff)

Here's ur answer.
Spoof everything and you're good to go.
 
we've discussed various spoofing techniques here : https://www.blackhatworld.com/seo/guide-how-ad-networks-and-everyone-else-knows-youre-a-bot.1119582/
 
A few years back I used selenium web Automation in my c# project. I didn't get any issue. Have a look if this could help you.
Selenium is detected by many sites. Unfortunately that is the case here.
 
we've discussed various spoofing techniques here : https://www.blackhatworld.com/seo/guide-how-ad-networks-and-everyone-else-knows-youre-a-bot.1119582/
I'm taking care of most of the stuff mentioned in that post now.
- spoofing my user agent, I run the bot in a VM so all the fonts and stuff are there. the spoofing works perfectly
- plugins, no problem
- referrer URLs, no problem
- Automated Browsers, no problem

The only think i can see is
- Data centers- im using nord VPN, but its a dedicated IP. I don't know if the website detects its from a data center.(how would i possibly spoof this considering my current IP is blacklisted?)
 
- Data centers- im using nord VPN, but its a dedicated IP. I don't know if the website detects its from a data center.(how would i possibly spoof this considering my current IP is blacklisted?)

VPN's ips are usually useless for scraping or botting because they're already been used & abused. Try dedicated proxies instead or make ur own with squid-proxy setup.
 
Selenium detection is actually pretty low-brow:

stackoverflow com/questions/33225947/can-a-website-detect-when-you-are-using-selenium-with-chromedriver#41220267

As for your network .. you should be using something like a residential IP address. They can be a bit pricey but are way less blacklisted and often aren't reused as much as VPN IP's (even dedicated) are. The issue is that even if you are the only one on the IP, most websites already have some IP abuse detection that will automatically query what IP range that IP is associated with. NordVPN has a specific range that it owns (I believe) so it is likely rather trivial to detect.
 
Back
Top