Member
- Joined
- Jun 3, 2018
- Messages
- 87
- Thread Author
- #1
This was posted on the storm thought to share it here
[hide][font=Roboto, -apple-system, BlinkMacSystemFont,]Please forgive me for what I am about to do.[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]What you need[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]2Captcha Account w/ Balance[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]Site w/ Recaptcha[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]I prefer you to use 2Captcha instead of AntiCaptcha or others because from my experience, AntiCaptcha is super strict on proxies.[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]The bare minimum to get the recaptcha response is Two Stages[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]Below is the ideal format for Stage-1[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]SPOILER: STAGE-1
Condition = Any
Link = http://2captcha.com/in.php?key=<YOUR 2CAPTCHA KEY>&method=userrecaptcha&googlekey=<RECAPTCHA SITE KEY>&pageurl=<SITE URL> //You have to get this information yourself. You can find more information on in 2Captcha API Docs
isFTP = False
HTTPVersion = 1.1
FollowRedirect = False
HTTPRequestMethod = POST
Timeout = 30
Headers = User-Agent: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134
Variable-1 = $ProxySend= CombineText("proxy=", $ProxyIP#, ":", $ProxyPort#, "&proxytype=", $ProxyType#) //This will send the proxy, if you use one. Don't worry if you don't use one it will still work
PostContent = $ProxySend#
Variable-2 = $GoodForTaskResult = IndexOf($Stage1ResponseHeader#, "X-Powered-By: HPHP") //I made this key so that we know we are good to go to on to Stage-2
Variable-3 = $TaskId = FindTagVal($Stage1ResponseSource#, "|", "") //This is to get the Task ID of the captcha. The response source looks like OK|123456789 where the numbers are the TaskID
Variable-4 = $ProxyBan = FindTagVal($Stage1ResponseSource#, "errorIdchr(double quotes):", "chr(Comma)") //A proxy ban key to prevent a shit ton of unknowns and errors
Practically Stage-1 is universal so I would copy and paste it and replace certain things and get rid of my comments[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]Ideal format for Stage-2[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]SPOILER: STAGE-2
Variable-1 = $Sleep = Sleep(60000) //Very important. Usually for 2Captcha, you need to wait around a minute to get the captcha response. You may change this based on the average waiting time the site gives for recaptcha. The time is in milliseconds
Condition = $GoodForTaskResult# > 0
Variable-2 = $Link = CombineText("http://2captcha.com/res.php?key=<YOUR 2 CAPTCHA KEY>&action=get&id=", $TaskId#)
Link = $Link#
isFTP = False
HTTPVersion = 1.1
FollowRedirect = False
HTTPRequestMethod = GET
Timeout = 30
Headers = User-Agent: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134
Variable-3 = $GoodResponse = IndexOf($Stage2ResponseSource#, "OK")
Variable-4 = $CaptchaResponse = If(($GoodResponse# >= 0), FindTagVal($Stage2ResponseSource#, "|", ""), "") //Just another protection for pad proxies. The response of a good source is OK|RecaptchaResponse you can learn more about it in 2Captcha API Docs
Variable-5 = $CaptchaNotReady = IndexOf($Stage2ResponseSource#, "CAPCHA_NOT_READY") //This will be retry key because sometimes 1 minute is not enough
You can also directly copy and paste this if you want. Below are the conditions I would put at the very bottom of my config once I'm done with everything. These conditions only cover for what might be needed in getting the recaptcha response.
Ban-Condition = $ProxyBan# >= 0 || Len($Stage1ResponseSource#) <= 0
Retry-Condition = $CaptchaRetry# >= 0 || $CaptchaNotReady# >= 0[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]Here are the the 2 stages together[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]SPOILER: FINAL
Code[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]After getting the RecaptchaResponse, just go on as you normally would in making a config except use $CaptchaResponse# in the post request. Granted this will be slow, but you can change the Sleep time or find another captcha solving service as the process is very simple.[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]Original Thread: https://thestorm.app/community/threads/storm-how-to-make-recaptcha-configs.983/
upper: [/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]In Need Of Accounts? Check My sig :kek: [/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]SHOW ME GREEN :hype: [/font]
FUCK OFF LEECHERS
epegun:
[/hide]
[hide][font=Roboto, -apple-system, BlinkMacSystemFont,]Please forgive me for what I am about to do.[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]What you need[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]2Captcha Account w/ Balance[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]Site w/ Recaptcha[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]I prefer you to use 2Captcha instead of AntiCaptcha or others because from my experience, AntiCaptcha is super strict on proxies.[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]The bare minimum to get the recaptcha response is Two Stages[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]Below is the ideal format for Stage-1[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]SPOILER: STAGE-1
Condition = Any
Link = http://2captcha.com/in.php?key=<YOUR 2CAPTCHA KEY>&method=userrecaptcha&googlekey=<RECAPTCHA SITE KEY>&pageurl=<SITE URL> //You have to get this information yourself. You can find more information on in 2Captcha API Docs
isFTP = False
HTTPVersion = 1.1
FollowRedirect = False
HTTPRequestMethod = POST
Timeout = 30
Headers = User-Agent: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134
Variable-1 = $ProxySend= CombineText("proxy=", $ProxyIP#, ":", $ProxyPort#, "&proxytype=", $ProxyType#) //This will send the proxy, if you use one. Don't worry if you don't use one it will still work
PostContent = $ProxySend#
Variable-2 = $GoodForTaskResult = IndexOf($Stage1ResponseHeader#, "X-Powered-By: HPHP") //I made this key so that we know we are good to go to on to Stage-2
Variable-3 = $TaskId = FindTagVal($Stage1ResponseSource#, "|", "") //This is to get the Task ID of the captcha. The response source looks like OK|123456789 where the numbers are the TaskID
Variable-4 = $ProxyBan = FindTagVal($Stage1ResponseSource#, "errorIdchr(double quotes):", "chr(Comma)") //A proxy ban key to prevent a shit ton of unknowns and errors
Practically Stage-1 is universal so I would copy and paste it and replace certain things and get rid of my comments[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]Ideal format for Stage-2[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]SPOILER: STAGE-2
Variable-1 = $Sleep = Sleep(60000) //Very important. Usually for 2Captcha, you need to wait around a minute to get the captcha response. You may change this based on the average waiting time the site gives for recaptcha. The time is in milliseconds
Condition = $GoodForTaskResult# > 0
Variable-2 = $Link = CombineText("http://2captcha.com/res.php?key=<YOUR 2 CAPTCHA KEY>&action=get&id=", $TaskId#)
Link = $Link#
isFTP = False
HTTPVersion = 1.1
FollowRedirect = False
HTTPRequestMethod = GET
Timeout = 30
Headers = User-Agent: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134
Variable-3 = $GoodResponse = IndexOf($Stage2ResponseSource#, "OK")
Variable-4 = $CaptchaResponse = If(($GoodResponse# >= 0), FindTagVal($Stage2ResponseSource#, "|", ""), "") //Just another protection for pad proxies. The response of a good source is OK|RecaptchaResponse you can learn more about it in 2Captcha API Docs
Variable-5 = $CaptchaNotReady = IndexOf($Stage2ResponseSource#, "CAPCHA_NOT_READY") //This will be retry key because sometimes 1 minute is not enough
You can also directly copy and paste this if you want. Below are the conditions I would put at the very bottom of my config once I'm done with everything. These conditions only cover for what might be needed in getting the recaptcha response.
Ban-Condition = $ProxyBan# >= 0 || Len($Stage1ResponseSource#) <= 0
Retry-Condition = $CaptchaRetry# >= 0 || $CaptchaNotReady# >= 0[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]Here are the the 2 stages together[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]SPOILER: FINAL
Code[/font]
Code:
[Stage-1]
Condition = Any
Link = http://2captcha.com/in.php?key=<2CAPTCHA KEY>&method=userrecaptcha&googlekey=<SITE RECAPTCHA KEY>&pageurl=<SITE URL>
isFTP = False
HTTPVersion = 1.1
FollowRedirect = False
HTTPRequestMethod = POST
Timeout = 30
Headers = User-Agent: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134
Variable-1 = $CaptchaSend = CombineText("proxy=", $ProxyIP#, ":", $ProxyPort#, "&proxytype=", $ProxyType#)
PostContent = $CaptchaSend#
Variable-2 = $GoodForTaskResult = IndexOf($Stage1ResponseHeader#, "X-Powered-By: HPHP")
Variable-3 = $TaskId = FindTagVal($Stage1ResponseSource#, "|", "")
Variable-4 = $ProxyBan = FindTagVal($Stage1ResponseSource#, "errorIdchr(double quotes):", "chr(Comma)")
[Stage-2]
Variable-1 = $Sleep = Sleep(60000)
Condition = $GoodForTaskResult# > 0
Variable-2 = $Link = CombineText("http://2captcha.com/res.php?key=<2CAPTCHA KEY>&action=get&id=", $TaskId#)
Link = $Link#
isFTP = False
HTTPVersion = 1.1
FollowRedirect = False
HTTPRequestMethod = GET
Timeout = 30
Headers = User-Agent: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134
Variable-3 = $GoodResponse = IndexOf($Stage2ResponseSource#, "OK")
Variable-4 = $CaptchaResponse = If(($GoodResponse# >= 0), FindTagVal($Stage2ResponseSource#, "|", ""), "")
Variable-5 = $CaptchaNotReady = IndexOf($Stage2ResponseSource#, "CAPCHA_NOT_READY")
Ban-Condition = $ProxyBan# >= 0 || Len($Stage1ResponseSource#) <= 0
Retry-Condition = $CaptchaRetry# >= 0 || $CaptchaNotReady# >= 0
[font=Roboto, -apple-system, BlinkMacSystemFont,]After getting the RecaptchaResponse, just go on as you normally would in making a config except use $CaptchaResponse# in the post request. Granted this will be slow, but you can change the Sleep time or find another captcha solving service as the process is very simple.[/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]Original Thread: https://thestorm.app/community/threads/storm-how-to-make-recaptcha-configs.983/
[font=Roboto, -apple-system, BlinkMacSystemFont,]In Need Of Accounts? Check My sig :kek: [/font]
[font=Roboto, -apple-system, BlinkMacSystemFont,]SHOW ME GREEN :hype: [/font]
FUCK OFF LEECHERS
[/hide]