Passeando no site encontrei esse tópico meu do mês passado, postando aqui como resolvi para pegar a imagem do captcha diretamente do webbrowser ao invés de baixar pela URL, obrigado a quem leu e não falou um A, só assim tive que persistir e pesquisar mais:
 
	 Sub PegaCaptcha() 
	        Dim Doc As mshtml.IHTMLDocument2 = WebBrowser1.Document.DomDocument 
	        Dim imgRange As mshtml.IHTMLControlRange = CType(Doc.body, mshtml.HTMLBody).createControlRange 
	        For Each img As mshtml.IHTMLImgElement In Doc.images
 
	            If img.GetAttribute("src").ToString.Contains(Referencia) Then 'a variavel referencia é a string com a URL da imagem  
	                imgRange.add(img) 
	                imgRange.execCommand("Copy", False, Nothing) 
	                PictureBox1.Image = Clipboard.GetDataObject.GetData(DataFormats.Bitmap) 
	                Exit For 
	            End If 
	        Next 
	    End Sub
 
	 
 
	Feliz Natal!