Jump to content

Recommended Posts

Posted
#include <IE.au3>
#include <Array.au3>

; GET
 $oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
 $oHTTP.Open("GET", "https://freebitco.in/?op=signup_page", False);    
 $oHTTP.SetRequestHeader("User-Agent", "User-Agent=Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20100101 Firefox/12.0")
 $oHTTP.SetRequestHeader("Referer", "https://freebitco.in/?op=signup_page")
 $oHTTP.Send(); 
 $HeaderResponses = $oHTTP.GetAllResponseHeaders()

 $resp=$oHTTP.ResponseText
 ;html
 FileWrite("C:\User\Fieo\Desktop\console.html", $resp); 

 ;cookies    in txt
 Sleep(1000)
 FileWriteLine("C:\Users\Fieo\Desktop\kuki.txt", $HeaderResponses);
Hello.

How to get a captcha get request?
<div class="captchasnet_captcha_content">
<img src="//captchas.freebitco.in/botdetect/e/live/index.php?random=OlBaDFtOH9EX9VxbAlthhlb6aMD02yAE" onerror="GenerateCaptchasNetCaptcha('botdetect_signup_captcha', 3, 'OlBaDFtOH9EX9VxbAlthhlb6aMD02yAE');">


$oHTTP.SetRequestHeader("Referer", '<div class="captchasnet_captcha_content"><div>');   
$oHTTP.SetRequestHeader("Content-Type", "multipart/form-data; ")

;jpeg in base64

 

  • Developers
Posted
1 hour ago, Fertum said:

captcha get request?

Please read the forum rules especially the part about  

Quote
  • Bypassing of security measures - log-in and security dialogs, CAPTCHAs, anti-bot agents, software activation, etc.

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

  • Jos locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...