recaptcha

How to inspect all elements in android webview

为君一笑 提交于 2019-12-24 18:28:15
问题 When i inspect an website with Chrome i can to see some iframe data like this: Example Chrome inspect I did the following solutions : I can inspect WebView to get iFrame element, but i cant Log these content (Like input tag, etc...). I try to get new recaptcha token from iframe link, but received token not valid for its services. I tried to get this amount of token using some JavaScript code but I always received null it try to get all content by this code: @Override public void

Recaptcha Uncaught SecurityError: Blocked a frame with origin “https://www.google.com”

偶尔善良 提交于 2019-12-24 15:13:14
问题 I am using recaptcha 2nd version.After posting form date with ajax to server i am getting "Uncaught SecurityError: Blocked a frame with origin "https://www.google.com" from accessing a frame with origin "http://localhost:14656". The frame requesting access has a protocol of "https", the frame being accessed has a protocol of "http". Protocols must match." error. In layout added script as src='//www.google.com/recaptcha/api.js' async defer I am using ASP MVC 4.0 for project. Could you help me?

Get Recaptcha2 Iframe HTML but always EMPTY using GeckoFX Browser in vb.net

本秂侑毒 提交于 2019-12-24 12:05:07
问题 I am using the latest GeckoFX-45 Browser for vb.net. My problem: I can not get the HTML of the Iframe. Here is my code: 'Open Recaptcha2 test site Browser.Navigate("http://patrickhlauke.github.io/recaptcha/") 'Wait for loading (all ways I know) Browser.NavigateFinishedNotifier.BlockUntilNavigationFinished() Dim maxTimeouttime As DateTime = DateTime.Now.AddSeconds(4) While DateTime.Now < maxTimeouttime System.Windows.Forms.Application.DoEvents() System.Threading.Thread.Sleep(100) End While

Wordpress Recaptcha use on form that created using page

邮差的信 提交于 2019-12-24 10:56:54
问题 I am trying to use a wordpress recaptcha plugin. The plugin (like wp-recaptcah, better Wp recaptcha) that I am trying to use is only working for the comment form. But in my case I have created a page and there I have inserted HTML that is managed from the admin panel. I don't understand how I can use the plugin with my form. I did not get any shortcode HTML tag to use it directly on the page. Any suggestion how I can achieve this? I have created a page in the admin panel and inserted this

Prevent automated tools from accessing the website

孤街浪徒 提交于 2019-12-24 03:36:20
问题 The data on our website can easily be scraped. How can we detect whether a human is viewing the site or a tool? One way is by calculating time which a user stays on a page. I do not know how to implement that. Can anyone help to detect and prevent automated tools from scraping data from my website? I used a security image in login section, but even then a human may log in and then use an automated tool. When the recaptcha image appears after a period of time the user may type the security

recaptcha 2.0 - how to display only after n failed attempts/throttling?

跟風遠走 提交于 2019-12-24 03:26:00
问题 I looked around and did not see anything specific for recaptcha 2.0, so let's see if I can get some help with this. I am setting up a signup/login page with multiple forms.To improve security I am installing recaptcha 2.0. It works fine with single forms and when it is rendered on load. For the login form, I only want to deploy recaptcha 2.0 after failed attempts/throttling. It seems that I've set things up properly on the server side and I am getting the correct responses for login delays

strategy to defeat CAPTCHA bypass

≯℡__Kan透↙ 提交于 2019-12-24 02:00:35
问题 I have read the posts and the links about how to decode captcha. What I have not seen are strategies to make it more difficult to do this. In particular strategies that are not really complex. Also, does anyone have any strategies to try to detect if people are bypassing captcha? I am developing browser based game and I need to use something to prevent people from using simple bots to play all day long. There are actually companies out that that sell specialized bots for games. such as this

Google Invisible Recaptcha Using Jquery Ajax and PHP

与世无争的帅哥 提交于 2019-12-24 00:45:39
问题 Trying to get my form which uses google invisible recaptcha to work correctly with my my jQuery AJAX and PHP. From my research it seems that the token is not being sent to my PHP page correctly via AJAX. Keep getting the Error below from my PHP page when form is submitted. array(2) { ["success"]=> bool(false) ["error-codes"]=> array(1) { [0]=> string(22) "invalid-input-response" } } My HTML / jQuery Code Below <!doctype html> <html> <head> <meta charset="utf-8"> <title>Demo</title> <script

Change ReCaptcha language OnClick

孤者浪人 提交于 2019-12-23 23:07:09
问题 I realize that it is trivial to change the Recaptcha language by adding the "hl" option to api.js. https://www.google.com/recaptcha/api.js?hl=fr What I would like to do is change the Recaptcha language when someone clicks on a language picker which is exposed via a QueryString parameter such as "?lang=fr" I have js that will parse the parameter but I cannot seem to reload the script in the head tag to include the param. I've looked at all the conditional IF...ELSE javascript loading articles.

reCaptcha isn't working; it doesn't return success

℡╲_俬逩灬. 提交于 2019-12-23 15:35:21
问题 I need a captcha for my form, and I am having some troubles with the server-side integration. The form takes in four types of data: name email comment. After making sure that none of them are empty, I want to verify the captcha. However, for some reason, it always returns success == false . Can somebody help me spotting what's wrong with my code? function validate($data) { $data = trim($data); $data = stripslashes($data); $data = htmlspecialchars($data); return $data; } $nameMsgErr =