Need help figuring out how to submit re-captcha in register step
Hello friends. Happy New Year!
I am working on coding some web 2.0 and ran in to issue. In debug mode the registration step fails to submit the captcha. Coding manual mentions re-captcha site key. I looked in the code and did not see any mention of this site key. I looked in dev tools and saw the web 2.0 site loads captcha.js
The content of that JS file has lots of text such as
var _0x57eb=["\x72\x61\x6E\x64\x6F\x6D","\x66\x6C\x6F\x6F\x72","\x3C\x64\x69\x76
Where do I get that site key and how do I make SER process that re-captcha?
P.S. In source code there is a hidden field that I thought could be a key but it appears to be part of the cookie.
<div class="" id="captcha_div" style="">
<div id="captcha_window"></div>
</div>
<div class="hide_if_succesfuly" style="height:75px; clear:both"></div>
<div>
<input name="sent" value="1" type="hidden">
<input type="hidden" value="394415304a77f739c7da11f6b7a3792b" name="sn_field">
</div>
<div class="form-submit-classic">
<button type="submit" name="signup" value="1">Register & Create</button>
</div>
<div id="captcha_window"></div>
</div>
<div class="hide_if_succesfuly" style="height:75px; clear:both"></div>
<div>
<input name="sent" value="1" type="hidden">
<input type="hidden" value="394415304a77f739c7da11f6b7a3792b" name="sn_field">
</div>
<div class="form-submit-classic">
<button type="submit" name="signup" value="1">Register & Create</button>
</div>
Comments