Generate Captcha using Golang

A detailed guide on how to generate Captcha using Golang to protect your web application from automated attacks and bots.

In this article, we'll learn how to create a simple Captcha using the github.com/dchest/captcha library in Golang. This guide provides a clear example to help you integrate Captcha into your web application.

Golang Code

package main

import (
	"net/http"
	"github.com/dchest/captcha"
)

func captchaHandler(w http.ResponseWriter, r *http.Request) {
	captchaID := captcha.New()
	http.ServeFile(w, r, "./index.html")
}

func captchaImageHandler(w http.ResponseWriter, r *http.Request) {
	captchaID := r.URL.Query().Get("id")
	captcha.WriteImage(w, captchaID, 240, 80)
}

func main() {
	http.HandleFunc("/captcha", captchaHandler)
	http.HandleFunc("/captcha/image", captchaImageHandler)
	http.Handle("/captchaFiles/", http.StripPrefix("/captchaFiles/", http.FileServer(http.Dir("./"))))

	http.ListenAndServe(":8080", nil)
}

index.html

<!DOCTYPE html>
<html>
<head>
    <title>Captcha Demo</title>
</head>
<body>
    <h1>Captcha Example</h1>
    <form action="/verify" method="post">
        <img src="/captcha/image?id={{.CaptchaID}}" alt="Captcha Image">
        <input type="text" name="captcha" placeholder="Enter Captcha">
        <input type="submit" value="Submit">
    </form>
</body>
</html>

Detailed explanation:

  1. captcha.New(): Creates a new Captcha ID.
  2. captcha.WriteImage: Converts the Captcha ID into an image and sends it to the user's browser.
  3. http.HandleFunc: Registers the handler functions for the endpoints.
  4. http.ListenAndServe(":8080", nil): Starts the server on port 8080.

System Requirements:

  • Golang 1.15 or later
  • Library github.com/dchest/captcha

How to install the libraries needed to run the Golang code above:

Run the command:

go get github.com/dchest/captcha

Tips:

  • Ensure you keep the captcha library updated to avoid security vulnerabilities.
  • Adjust the Captcha size to fit your user interface appropriately.
Tags: Golang, Captcha


Related

How to write data to an Excel file using Golang

A detailed guide on how to write data to an Excel file using Golang with the excelize library.
Common Functions When Using Selenium Chrome in Golang

This article compiles commonly used functions when working with Selenium Chrome in Golang, including installation, creating a session, navigating web pages, and interacting with page elements.
Converting a string variable into Boolean, Integer or Float type in Golang

A guide on how to convert a string into Boolean, Integer, or Float types in Golang. This article will help you understand how to use Go's built-in functions to work with different data types.
How to SELECT data from a MySQL database using Golang

A guide on how to use Golang to query data from a MySQL database using Prepared Statements with multiple parameters.
How to pass Authentication Header Token when POSTing data to an API using Golang

This guide explains how to pass an Authentication Header Token when making a POST request to an API using Golang. It covers handling HTTP requests, adding a token to the Header for authentication, and sending data to an API.
How to split a string in Golang using the SplitAfter function

A guide on how to use the `SplitAfter` function in Golang to split a string based on a specific character or substring. This article provides a detailed explanation of how the function works, along with examples.
How to DELETE data from a MySQL database using Golang

A guide on how to connect and delete data from a table in a MySQL database using the Golang programming language.
Slices in Golang: Usage and examples

This article explains how to work with slices in Golang, including how to declare, access, and manipulate slices—a flexible way to handle arrays more efficiently in Go.
How to Split a String in Golang Using the SplitAfterN Function

A guide on how to use the `SplitAfterN` function in Golang to split a string based on a separator and limit the number of resulting parts. This function is useful when you need to split a string but retain the separator.
Create a Simple Chat Application Using Socket.IO in Golang

A step-by-step guide to building a simple chat application using Socket.IO in Golang, helping you understand how real-time communication works in web applications.

main.add_cart_success