No CAPTCHA reCAPTCHA: Painless to Humans, Painful for Bots!

No CAPTCHA reCAPTCHA: Painless to Humans, Painful for Bots!

Many companies including Gmail, Yahoo, Rediffmail, etc. offer free email services. However, leveraging on this, both bots and human create thousands of free email accounts every day. It was creating lots of havocs on the internet.

But with the inception of CAPTCHA, at present internet users need to complete a CAPTCHA before being able to get a free email account. However, among these internet users, CAPTCHA is programmed to be unreadable for bots and other machines. Thus, it prevents the misusages of the free services.

We have also observed that hackers use programs to create online polls in favor of a certain opinion, party or vote. Even though IP addresses are recorded to prevent people from voting more than once. However, with the use of bots, one can bypass this policy easily.  Thus, online polls become untrustable.

If we implement CAPTCHA codes in such polls, the bots cannot solve the puzzles and the polls get the right votes.

What is Captcha and Why We Need It?

Most of the applications nowadays display a captcha or CAPTCHA box every time you are trying to log into something orwriting a comment for any post on the internet. What exactly are these strange puzzles and why are they so popular?

CAPTCHA or Completely Automated Public Turing test to Tell Computers and Humans Apart is a smart way to identify between humans and bots.

Google also has a CAPTCHA technology devised to prevent automated access, hacks, abuse, and it gives safeguard against the bots. The self-defined risk analysis technique identifies the user as either a human or a bot.

Captcha was started with the scanned text, numbers and few mathematical equations.

Moving Forward to Invisible reCAPTCHA?

Invisible reCAPTCHACaptcha

Invisible reCAPTCHA is the new system of Google.  This new system uses photographs from Google street view in addition to text and numbers. Further, Google implemented a program to ask the user to select the related images from a grid of nine images. With reCAPTCHA, Google has implemented behavioral analysis of user interaction on the browser with CAPTCHA. It can judge the user behavior before displaying the Captcha images. 

 

Let’s learn how to implement reCAPTCHA:

  1. Register yourself in Google for the reCAPTCHA implementation. reCAPTCHA implementation

  1. Once the registration is successfully completed, one can add owners and set security preferences. reCAPTCHA - security preferences
  1. Post registration, the site displays two keys.
  • Site Key - Used in HTML code.
  • Secret Key – It helps Google to identify the requesting site.Keys
  1. Integration in code:
  • Client Side Integration:

Include the below script tag in the HTML file6

Add a div tag with the ‘g-recaptcha’ class and the below provided Site KeyIntegration in code

 (b) Server Side Integration:

Use the below validation code on form submit:Server Side Integration

 

 

  1. Upon debugging the website, the screen displays the below in the placeholder added on the HTML page.reCAPTCHA screen

Upon ticking the checkbox based on the behavioral analysis calculations, Google prompts the following images grid for selection to the user:image grid

Once the selection is validated, we can get the response on form submission in the “g-recaptcha-response” attribute.

While implementing the project, we have identified the below behavioral analysis patterns:

  • The captcha that we are implementing is Nocaptcha / Invisible Recaptcha and the image selection pop-up might not appear always. It is based on behavioral based logic. Hence, it only asks to select images manually if it suspects the non-human activities.
  • Captcha creates cookies every time when they are validated on the machine. So, the browser creates a browsing history and treats you as a human. Bots usually don’t have a browsing history.
  • If you have signed in with an appropriate Google account, the captcha might again be skipped.
  • We can see a major differentiation between human and bot’s behavior. A human will scroll up or down and shall take some time before actually ticking the checkbox ‘I am not a robot’. He/she never deadly click a checkbox as soon as the page loads.

Common Challenges:

  1. If the captcha loads in an iframe, we face a hard time playing around with its styling.

Below is the css styling that can be attempted.Common Challenges

  1. Penetration testing vulnerability:

The key that we have used above during the implementation step 4(a), leads to website vulnerability.

To avoid this, add a JavaScript function to bind the site key on the document load instead of making it readable on the screen directly.JavaScript function

 To sum up, we can say that CAPTCHA or Captcha is a strong user filter that separates humans from bots. With the advent of the deep learning bots, CAPTCHA cannot directly prevent hacking or other such malicious activities on the internet. It can just create a barrier for the bots which try access the internet to manipulate its services.

 In a nutshell, it decreases the non-human activities on the internet.  

Author

Talk To Our Experts