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
interactsh-web — Web dashboard for Interactsh client | Kitploit
Tools/GitHubGitHub/projectdiscovery/interactsh-web
OSINT (Open Source Intelligence)ReconnaissanceDNS & Subdomain EnumerationInformation GatheringWeb SecurityDNS Analysis
GitHubprojectdiscovery/interactsh-web

interactsh-web

Web dashboard for Interactsh client

View Repository
2437721 days 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
Website

Interactsh Web Client

A Next.js-based web interface for Interactsh

Getting Started

Prerequisites

  • Node.js 20+ (required for React 19)
  • npm, yarn, or pnpm

Installation

  1. Clone the repository:
root@kitploit:~
git clone https://github.com/projectdiscovery/interactsh-web.git
cd interactsh-web
  1. Install dependencies:
root@kitploit:~
npm install
# or
yarn install
  1. Run the development server:
root@kitploit:~
npm run dev
# or
yarn dev
  1. Open http://localhost:3000 in your browser.

Building for Production

root@kitploit:~
npm run build
npm start
# or
yarn build
yarn start

Docker

Build and run using Docker:

root@kitploit:~
docker build -t interactsh-web .
docker run -p 3000:3000 interactsh-web

Environment Variables

Create a .env.local file in the root directory to customize the configuration:

Tech Stack

  • Framework: Next.js 16 with App Router
  • React: React 19.1.0
  • Styling: SCSS, Tailwind CSS, styled-components
  • Language: TypeScript
  • UI Components: Headless UI v2
  • Cryptography: node-rsa, crypto-browserify
  • Theme Management: next-themes

Project Structure

root@kitploit:~
src/
├── app/                    # Next.js App Router pages
│   ├── page.tsx           # Main application page
│   ├── layout.tsx         # Root layout
│   ├── styles.scss        # Page styles
│   ├── terms/             # Terms page
│   └── components/        # Page-specific components
├── components/            # Reusable UI components
│   ├── appLoader/
│   ├── customHost/
│   ├── detailedRequest/
│   ├── header/
│   ├── icons/             # SVG icon components
│   ├── notificationsPopup/
│   ├── requestsTable/
│   ├── resetPopup/
│   ├── tabSwitcher/
│   └── toggleBtn/
├── lib/                   # Utility functions and types
│   ├── index.ts           # Core functionality
│   ├── localStorage/      # Local storage management
│   ├── notify/            # Notification services
│   ├── registry.tsx       # styled-components registry
│   └── types/             # TypeScript type definitions
├── helpers/               # Fallback loaders
├── styles/                # Global styles
└── theme.ts               # Theme configuration

Features

  • Real-time interaction monitoring
  • Multiple protocol support (HTTP, DNS, SMTP)
  • Tab management for multiple sessions
  • Request/Response detailed view
  • Notification integrations (Telegram, Slack, Discord)
  • Custom host configuration
  • Data export functionality
  • Theme selection (Dark, Synth, Blue)

License

MIT License - see LICENSE.md for details.

Credits

  • ProjectDiscovery - Interactsh core
Download Tool
VariableDescriptionDefault
NEXT_PUBLIC_HOSTDefault Interactsh server hostoast.fun
NEXT_PUBLIC_TOKENAuthentication token (optional)-
NEXT_PUBLIC_CIDLCorrelation ID Length20
NEXT_PUBLIC_CIDNCorrelation ID Nonce Length13