Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.86 KB

File metadata and controls

40 lines (26 loc) · 1.86 KB

⚡ HTTP Interceptor

A modern HTTP traffic interceptor and modifier. Tired of using BurpSuite's outdated UI to modify requests? Me too! This project implements a UI that matches the experience of Chrome's DevTools, so you can feel right at home!

Table of Contents

Features

View all traffic going in and out of your browser

request-viewer

Hold requests, modify their content, or drop them

request-viewer

Create rules to intercept and modify specific requests

request-viewer

View all past requests

request-viewer

Project Structure

Folder Description
ui The frontend for the application, using react
bridge The tauri bridge that handles communication between the frontend and the backend
interceptor Custom chrome devtools protocol (CDP) implementation, which manages connections to CDP, and handles all events
shared Shared logic between interceptor and ui including network stores, rule stores, common types, and more