Posting here on the off chance some one would know.

I have a script (autobuyer) which loads captchas into an image, which is then parsed to get the coordinates. Recently, this script has stopped working because the image doesn't seem to get loaded properly on my end. I essentially have the below code:

Code:
var captcha = new Image();
    
    captcha.crossOrigin = '';
    captcha.src = url;

    captcha.onload = function () {
      // processing
    }
I'm assuming that there's been a change in how images are served from the server side, but I can't seem to figure it out. Anyone have any ideas please?