Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 472 Bytes

README.md

File metadata and controls

17 lines (16 loc) · 472 Bytes

httplogger

A small mitmproxy addon to log complete request and response bodies, headers etc into a database table

The table with required structure can be created using following statement.

CREATE TABLE log (
    request_body text,
    response_body text,
    request_headers text,
    response_headers text,
    time datetime default CURRENT_TIMESTAMP,
    rtt real,
    method text,
    url text,
    code integer
);