
Interactsh クライアント用 Web ダッシュボード
git clone https://github.com/projectdiscovery/interactsh-web.git
cd interactsh-web
npm install
# or
yarn install
npm run dev
# or
yarn dev
npm run build
npm start
# or
yarn build
yarn start
Docker を使用してビルドおよび実行します:
docker build -t interactsh-web .
docker run -p 3000:3000 interactsh-web
設定をカスタマイズするには、ルートディレクトリに .env.local ファイルを作成します:
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
MIT ライセンス - 詳細は LICENSE.md を参照してください。
| 変数 | 説明 | デフォルト |
|---|
NEXT_PUBLIC_HOST | デフォルトの Interactsh サーバーホスト | oast.fun |
NEXT_PUBLIC_TOKEN | 認証トークン(オプション) | - |
NEXT_PUBLIC_CIDL | 相関 ID の長さ | 20 |
NEXT_PUBLIC_CIDN | 相関 ID ノンスの長さ | 13 |