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
browser-crash-tool — A Bash script for Kali Linux that exploits an iOS WebKit vulnerability (CVE-2020-27950) using Metasploit and ngrok. Automates payload delivery with a public URL via ngrok, checks for required tools, handles errors, and provides an easy way to crash browsers for educational purposes only. | Kitploit
Tools/GitHubGitHub/lyonzon2/browser-crash-tool
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and ControlLearning & Education
GitHublyonzon2/browser-crash-tool

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →

About

A Bash script for Kali Linux that exploits an iOS WebKit vulnerability (CVE-2020-27950) using Metasploit and ngrok. Automates payload delivery with a public URL via ngrok, checks for required tools, handles errors, and provides an easy way to crash browsers for educational purposes only.

browser-crash-tool

View Repository
50 years agoNot yet reviewed
Share

Browser Crash Tool - Kali

Overview

This tool exploits a vulnerability in iOS WebKit (CVE-2020-27950) using Metasploit’s webkit_backdrop_filter_blur auxiliary module. But seems it work on all browsers after some testing ,It crashes the target browser by loading a crafted web page. The tool also uses ngrok to create a publicly accessible link to the malicious page, making it easy to send to a target.

Disclaimer: This tool is designed solely for educational purposes and to assist cybersecurity professionals in understanding browser vulnerabilities and testing them in a controlled environment. Misuse of this tool for unauthorized or malicious activities is strictly prohibited.

By using this tool, you agree to comply with all applicable laws and ethical guidelines. The creator of this tool assumes no responsibility for any damage or legal consequences resulting from its misuse.

Always obtain proper authorization before testing any system.

https://github.com/user-attachments/assets/1eb73bec-cc79-4f0a-8859-70e4a4d7db5a

Requirements

  • Kali Linux
  • Metasploit Framework
  • ngrok (for creating public URLs)

Features

  • Automatically configures Metasploit and runs the WebKit DoS exploit.
  • Integrates with ngrok to generate a public URL for easy access.
  • Checks for ngrok installation and handles exceptions gracefully.
  • User-friendly with informative messages and error handling.

Installation

  1. Install Metasploit: If Metasploit is not installed, you can install it with:
    root@kitploit:~
    sudo apt install metasploit-framework
    
  2. Install Ngrok: If ngrok is not installed, you can install it with:
    root@kitploit:~
    sudo apt install ngrok
    
    
  3. Authenticate Ngrok using your token:
    • Sign up for a free Ngrok account on the Ngrok website.
    • Obtain your authentication token from the Ngrok Dashboard.
    • Authenticate Ngrok with the following command:
      root@kitploit:~
      ngrok authtoken YOUR_AUTH_TOKEN
      
      Replace YOUR_AUTH_TOKEN with the token you obtained from the Ngrok Dashboard.
Download Tool