Hi guys, looking for some pointers on a problem i am working on
I am trying to produce a script to crack a captcha and submit the result - it only needs to work on the client
The problem is as follows:
Website has a countdown timer
When timer finishes a button becomes active which i need to click
Once clicked a captcha appears
I need the script to solve the captcha and submit the solved text into a text box on the web page and then hit the submit button
I have got as far as producing a script in python that can take an captcha image file and try to solve the captcha but it involves writing to disk on the client
I was thinking about trying to write a chrome extension that waits for the button to appear (once timer has finished) and then somehow scrapes the captcha image and passes to the python script which then solves the captcha and returns the result to the chrome extension which submits the result
Is this even possible? i seem to have hit a dead end and could do with some advice from some experienced coders
Thanks in advance for your suggestions
I am trying to produce a script to crack a captcha and submit the result - it only needs to work on the client
The problem is as follows:
Website has a countdown timer
When timer finishes a button becomes active which i need to click
Once clicked a captcha appears
I need the script to solve the captcha and submit the solved text into a text box on the web page and then hit the submit button
I have got as far as producing a script in python that can take an captcha image file and try to solve the captcha but it involves writing to disk on the client
I was thinking about trying to write a chrome extension that waits for the button to appear (once timer has finished) and then somehow scrapes the captcha image and passes to the python script which then solves the captcha and returns the result to the chrome extension which submits the result
Is this even possible? i seem to have hit a dead end and could do with some advice from some experienced coders
Thanks in advance for your suggestions