Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/xkiian/vercel-botid
Web Application ExploitationWeb SecurityAnti-BotCAPTCHA Bypass
GitHubxkiian/vercel-botid

vercel-botid

Vercel BotID Solver "X-Is-Human" using 100% golang

View Repository
65479 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Vercel BotID Solver / "X-Is-Human" Header (basic mode)

wakatime
showcase

Overview

This project provides a Golang-based solver for the Vercel BotID challenge. It uses go-fAST to deobfuscate and then extract every value required. (blazingly fast)


⭐ Show your Support

Please star the repository if you find it useful! Your support helps improve the project. ❤️


Installation

root@kitploit:~
go get github.com/xkiian/vercel-botid && go mod tidy

Usage

root@kitploit:~
package main

import (
	"fmt"
	"log"
	"github.com/xkiian/vercel-botid/botid"
)

func main() {
	solver, err := botid.NewBotID("SCRIPT URL HERE (see tutorial for help)")
	if err != nil {
		log.Fatal(err)
	}

	token, err := solver.GenerateToken()
	if err != nil {
		log.Fatal(err)
	}
	fmt.Println("Generated BotID Token:", token)
}
Download Tool

Note: You will need to provide your own webgl fingerprints. Examples can be found in webgl.json (You only need webgl_unmasked_vendor & webgl_unmasked_renderer)

License

This project is licensed under the MIT License - see the LICENSE file for details.


Disclaimer

This package is unofficial and not affiliated with Vercel. Use it responsibly and in accordance with AWS's terms of service.