repo
stringlengths
7
90
file_url
stringlengths
81
315
file_path
stringlengths
4
228
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:38:15
2026-01-05 02:33:18
truncated
bool
2 classes
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/maplocal.py
mitmproxy/addons/maplocal.py
import logging import mimetypes import re import urllib.parse from collections.abc import Sequence from pathlib import Path from typing import NamedTuple from werkzeug.security import safe_join from mitmproxy import ctx from mitmproxy import exceptions from mitmproxy import flowfilter from mitmproxy import http from ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/savehar.py
mitmproxy/addons/savehar.py
"""Write flow objects to a HAR file""" import base64 import json import logging import zlib from collections.abc import Sequence from datetime import datetime from datetime import timezone from typing import Any from mitmproxy import command from mitmproxy import ctx from mitmproxy import exceptions from mitmproxy im...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/__init__.py
mitmproxy/addons/__init__.py
from mitmproxy.addons import anticache from mitmproxy.addons import anticomp from mitmproxy.addons import block from mitmproxy.addons import blocklist from mitmproxy.addons import browser from mitmproxy.addons import clientplayback from mitmproxy.addons import command_history from mitmproxy.addons import comment from m...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/update_alt_svc.py
mitmproxy/addons/update_alt_svc.py
import re from mitmproxy import ctx from mitmproxy.http import HTTPFlow from mitmproxy.proxy import mode_specs ALT_SVC = "alt-svc" HOST_PATTERN = r"([a-zA-Z0-9.-]*:\d{1,5})" def update_alt_svc_header(header: str, port: int) -> str: return re.sub(HOST_PATTERN, f":{port}", header) class UpdateAltSvc: def lo...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/strip_dns_https_records.py
mitmproxy/addons/strip_dns_https_records.py
from mitmproxy import ctx from mitmproxy import dns from mitmproxy.net.dns import types class StripDnsHttpsRecords: def load(self, loader): loader.add_option( "strip_ech", bool, True, "Strip Encrypted ClientHello (ECH) data from DNS HTTPS records so that mit...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/proxyserver.py
mitmproxy/addons/proxyserver.py
""" This addon is responsible for starting/stopping the proxy server sockets/instances specified by the mode option. """ from __future__ import annotations import asyncio import collections import ipaddress import logging from collections.abc import Iterable from collections.abc import Iterator from contextlib import...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/readfile.py
mitmproxy/addons/readfile.py
import asyncio import logging import os.path import sys from typing import BinaryIO from typing import Optional from mitmproxy import command from mitmproxy import ctx from mitmproxy import exceptions from mitmproxy import flowfilter from mitmproxy import io from mitmproxy.utils import asyncio_utils logger = logging....
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/comment.py
mitmproxy/addons/comment.py
from collections.abc import Sequence from mitmproxy import command from mitmproxy import ctx from mitmproxy import flow from mitmproxy.hooks import UpdateHook class Comment: @command.command("flow.comment") def comment(self, flow: Sequence[flow.Flow], comment: str) -> None: "Add a comment to a flow" ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/stickyauth.py
mitmproxy/addons/stickyauth.py
from typing import Optional from mitmproxy import ctx from mitmproxy import exceptions from mitmproxy import flowfilter class StickyAuth: def __init__(self): self.flt = None self.hosts = {} def load(self, loader): loader.add_option( "stickyauth", Optional[str]...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/proxyauth.py
mitmproxy/addons/proxyauth.py
from __future__ import annotations import binascii import pathlib import weakref from abc import ABC from abc import abstractmethod from collections.abc import MutableMapping from typing import Optional import ldap3 from mitmproxy import connection from mitmproxy import ctx from mitmproxy import exceptions from mitm...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/keepserving.py
mitmproxy/addons/keepserving.py
from __future__ import annotations import asyncio from mitmproxy import ctx from mitmproxy.utils import asyncio_utils class KeepServing: def load(self, loader): loader.add_option( "keepserving", bool, False, """ Continue serving after client pl...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/upstream_auth.py
mitmproxy/addons/upstream_auth.py
import base64 import re from typing import Optional from mitmproxy import ctx from mitmproxy import exceptions from mitmproxy import http from mitmproxy.proxy import mode_specs from mitmproxy.utils import strutils def parse_upstream_auth(auth: str) -> bytes: pattern = re.compile(".+:") if pattern.search(auth...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/intercept.py
mitmproxy/addons/intercept.py
from typing import Optional from mitmproxy import ctx from mitmproxy import exceptions from mitmproxy import flow from mitmproxy import flowfilter class Intercept: filt: flowfilter.TFilter | None = None def load(self, loader): loader.add_option("intercept_active", bool, False, "Intercept toggle") ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/save.py
mitmproxy/addons/save.py
import logging import os.path import sys from collections.abc import Sequence from datetime import datetime from functools import lru_cache from pathlib import Path from typing import Literal from typing import Optional import mitmproxy.types from mitmproxy import command from mitmproxy import ctx from mitmproxy impor...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/asgiapp.py
mitmproxy/addons/asgiapp.py
import asyncio import logging import urllib.parse import asgiref.compatibility import asgiref.wsgi from mitmproxy import ctx from mitmproxy import http logger = logging.getLogger(__name__) class ASGIApp: """ An addon that hosts an ASGI/WSGI HTTP app within mitmproxy, at a specified hostname and port. ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/eventstore.py
mitmproxy/addons/eventstore.py
import asyncio import collections import logging from collections.abc import Callable from mitmproxy import command from mitmproxy import log from mitmproxy.log import LogEntry from mitmproxy.utils import signals class EventStore: def __init__(self, size: int = 10000) -> None: self.data: collections.dequ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/script.py
mitmproxy/addons/script.py
import asyncio import importlib.machinery import importlib.util import logging import os import sys import types from collections.abc import Sequence import mitmproxy.types as mtypes from mitmproxy import addonmanager from mitmproxy import command from mitmproxy import ctx from mitmproxy import eventsequence from mitm...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/addons/onboardingapp/__init__.py
mitmproxy/addons/onboardingapp/__init__.py
import os from flask import Flask from flask import render_template from mitmproxy.options import CONF_BASENAME from mitmproxy.options import CONF_DIR from mitmproxy.utils.magisk import write_magisk_module app = Flask(__name__) # will be overridden in the addon, setting this here so that the Flask app can be run sta...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/test/tflow.py
mitmproxy/test/tflow.py
import time import uuid from wsproto.frame_protocol import Opcode from mitmproxy import connection from mitmproxy import dns from mitmproxy import flow from mitmproxy import http from mitmproxy import tcp from mitmproxy import udp from mitmproxy import websocket from mitmproxy.connection import ConnectionState from m...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/test/taddons.py
mitmproxy/test/taddons.py
import asyncio import mitmproxy.master import mitmproxy.options from mitmproxy import command from mitmproxy import eventsequence from mitmproxy import hooks from mitmproxy.addons import core from mitmproxy.addons import script class context: """ A context for testing addons, which sets up the mitmproxy.ctx ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/test/tutils.py
mitmproxy/test/tutils.py
from mitmproxy import dns from mitmproxy import http def tdnsreq(**kwargs) -> dns.DNSMessage: default = dict( timestamp=946681200, id=42, query=True, op_code=dns.op_codes.QUERY, authoritative_answer=False, truncation=False, recursion_desired=True, re...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/tls.py
mitmproxy/net/tls.py
import os import threading import typing from collections.abc import Callable from collections.abc import Iterable from enum import Enum from functools import cache from functools import lru_cache from pathlib import Path from typing import Any from typing import BinaryIO import certifi import OpenSSL from cryptograph...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/check.py
mitmproxy/net/check.py
import ipaddress import re from typing import AnyStr # Allow underscore in host name # Note: This could be a DNS label, a hostname, a FQDN, or an IP _label_valid = re.compile(rb"[A-Z\d\-_]{1,63}$", re.IGNORECASE) def is_valid_host(host: AnyStr) -> bool: """ Checks if the passed bytes are a valid DNS hostnam...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/free_port.py
mitmproxy/net/free_port.py
import socket def get_free_port() -> int: """ Get a port that's free for both TCP and UDP. This method never raises. If no free port can be found, 0 is returned. """ for _ in range(10): tcp = socket.socket(socket.AF_INET, socket.SOCK_STREAM) udp = socket.socket(socket.AF_INET, soc...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/server_spec.py
mitmproxy/net/server_spec.py
""" Server specs are used to describe an upstream proxy or server. """ import re from functools import cache from typing import Literal from mitmproxy.net import check ServerSpec = tuple[ Literal["http", "https", "http3", "tls", "dtls", "tcp", "udp", "dns", "quic"], tuple[str, int], ] server_spec_re = re.co...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/encoding.py
mitmproxy/net/encoding.py
""" Utility functions for decoding response bodies. """ import codecs import collections import gzip import zlib from io import BytesIO from typing import overload import brotli import zstandard as zstd # We have a shared single-element cache for encoding and decoding. # This is quite useful in practice, e.g. # flow...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/__init__.py
mitmproxy/net/__init__.py
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/local_ip.py
mitmproxy/net/local_ip.py
from __future__ import annotations import socket def get_local_ip(reachable: str = "8.8.8.8") -> str | None: """ Get the default local outgoing IPv4 address without sending any packets. This will fail if the target address is known to be unreachable. We use Google DNS's IPv4 address as the default. ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/dns/classes.py
mitmproxy/net/dns/classes.py
IN = 1 CH = 3 HS = 4 NONE = 254 ANY = 255 _STRINGS = {IN: "IN", CH: "CH", HS: "HS", NONE: "NONE", ANY: "ANY"} _INTS = {v: k for k, v in _STRINGS.items()} def to_str(class_: int) -> str: return _STRINGS.get(class_, f"CLASS({class_})") def from_str(class_: str) -> int: try: return _INTS[class_] e...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/dns/domain_names.py
mitmproxy/net/dns/domain_names.py
import struct from typing import Optional from . import types _LABEL_SIZE = struct.Struct("!B") _POINTER_OFFSET = struct.Struct("!H") _POINTER_INDICATOR = 0b11000000 Cache = dict[int, Optional[tuple[str, int]]] def cache() -> Cache: return dict() def _unpack_label_into(labels: list[str], buffer: bytes, offs...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/dns/https_records.py
mitmproxy/net/dns/https_records.py
import enum import struct from dataclasses import dataclass from typing import Self from ...utils import strutils from . import domain_names """ HTTPS records are formatted as follows (as per RFC9460): - a 2-octet field for SvcPriority as an integer in network byte order. - the uncompressed, fully qualified TargetNam...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/dns/__init__.py
mitmproxy/net/dns/__init__.py
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/dns/types.py
mitmproxy/net/dns/types.py
A = 1 NS = 2 MD = 3 MF = 4 CNAME = 5 SOA = 6 MB = 7 MG = 8 MR = 9 NULL = 10 WKS = 11 PTR = 12 HINFO = 13 MINFO = 14 MX = 15 TXT = 16 RP = 17 AFSDB = 18 X25 = 19 ISDN = 20 RT = 21 NSAP = 22 NSAP_PTR = 23 SIG = 24 KEY = 25 PX = 26 GPOS = 27 AAAA = 28 LOC = 29 NXT = 30 EID = 31 NIMLOC = 32 SRV = 33 ATMA = 34 NAPTR = 35 KX...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/dns/response_codes.py
mitmproxy/net/dns/response_codes.py
NOERROR = 0 FORMERR = 1 SERVFAIL = 2 NXDOMAIN = 3 NOTIMP = 4 REFUSED = 5 YXDOMAIN = 6 YXRRSET = 7 NXRRSET = 8 NOTAUTH = 9 NOTZONE = 10 DSOTYPENI = 11 _CODES = { NOERROR: 200, FORMERR: 400, SERVFAIL: 500, NXDOMAIN: 404, NOTIMP: 501, REFUSED: 403, YXDOMAIN: 409, YXRRSET: 409, NXRRSET:...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/dns/op_codes.py
mitmproxy/net/dns/op_codes.py
QUERY = 0 IQUERY = 1 STATUS = 2 NOTIFY = 4 UPDATE = 5 DSO = 6 _STRINGS = { QUERY: "QUERY", IQUERY: "IQUERY", STATUS: "STATUS", NOTIFY: "NOTIFY", UPDATE: "UPDATE", DSO: "DSO", } _INTS = {v: k for k, v in _STRINGS.items()} def to_str(op_code: int) -> str: return _STRINGS.get(op_code, f"OPCO...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/url.py
mitmproxy/net/http/url.py
from __future__ import annotations import re import urllib.parse from collections.abc import Sequence from typing import AnyStr from typing import overload from mitmproxy.net import check from mitmproxy.net.check import is_valid_host from mitmproxy.net.check import is_valid_port from mitmproxy.utils.strutils import a...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/cookies.py
mitmproxy/net/http/cookies.py
import email.utils import re import time from collections.abc import Iterable from mitmproxy.coretypes import multidict """ A flexible module for cookie parsing and manipulation. This module differs from usual standards-compliant cookie modules in a number of ways. We try to be as permissive as possible, and to reta...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/validate.py
mitmproxy/net/http/validate.py
import logging import re import typing from mitmproxy.http import Message from mitmproxy.http import Request from mitmproxy.http import Response logger = logging.getLogger(__name__) # https://datatracker.ietf.org/doc/html/rfc7230#section-3.2: Header fields are tokens. # "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/user_agents.py
mitmproxy/net/http/user_agents.py
""" A small collection of useful user-agent header strings. These should be kept reasonably current to reflect common usage. """ # pylint: line-too-long # A collection of (name, shortcut, string) tuples. UASTRINGS = [ ( "android", "a", "Mozilla/5.0 (Linux; U; Android 4.1.1; en-gb; Nexus 7 B...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/__init__.py
mitmproxy/net/http/__init__.py
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/headers.py
mitmproxy/net/http/headers.py
import collections import re def parse_content_type(c: str) -> tuple[str, str, dict[str, str]] | None: """ A simple parser for content-type values. Returns a (type, subtype, parameters) tuple, where type and subtype are strings, and parameters is a dict. If the string could not be parsed, return None....
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/multipart.py
mitmproxy/net/http/multipart.py
from __future__ import annotations import mimetypes import re import warnings from urllib.parse import quote from mitmproxy.net.http import headers def encode_multipart(content_type: str, parts: list[tuple[bytes, bytes]]) -> bytes: if content_type: ct = headers.parse_content_type(content_type) i...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/status_codes.py
mitmproxy/net/http/status_codes.py
# Covered status codes: # - official HTTP status codes: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status # - custom codes: # - 444 No Response # - 499 Client Closed Request CONTINUE = 100 SWITCHING = 101 PROCESSING = 102 EARLY_HINTS = 103 OK = 200 CREATED = 201 ACCEPTED = 202 NON_AUTHORITATIVE_INFORMATION ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/http1/assemble.py
mitmproxy/net/http/http1/assemble.py
def assemble_request(request): if request.data.content is None: raise ValueError("Cannot assemble flow with missing content") head = assemble_request_head(request) body = b"".join( assemble_body( request.data.headers, [request.data.content], request.data.trailers ) ) ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/http1/__init__.py
mitmproxy/net/http/http1/__init__.py
from .assemble import assemble_body from .assemble import assemble_request from .assemble import assemble_request_head from .assemble import assemble_response from .assemble import assemble_response_head from .read import connection_close from .read import expected_http_body_size from .read import read_request_head fro...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/net/http/http1/read.py
mitmproxy/net/http/http1/read.py
import re import time import typing from collections.abc import Iterable from mitmproxy.http import Headers from mitmproxy.http import Request from mitmproxy.http import Response from mitmproxy.net.http import url from mitmproxy.net.http import validate def get_header_tokens(headers, key): """ Retrieve all t...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/coretypes/bidi.py
mitmproxy/coretypes/bidi.py
class BiDi: """ A wee utility class for keeping bi-directional mappings, like field constants in protocols. Names are attributes on the object, dict-like access maps values to names: CONST = BiDi(a=1, b=2) assert CONST.a == 1 assert CONST.get_name(1) == "a" """ def __init__(self, *...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/coretypes/serializable.py
mitmproxy/coretypes/serializable.py
import abc import collections.abc import dataclasses import enum import typing import uuid from functools import cache from typing import TypeVar try: from types import NoneType from types import UnionType except ImportError: # pragma: no cover class UnionType: # type: ignore pass NoneType ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/coretypes/__init__.py
mitmproxy/coretypes/__init__.py
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/coretypes/multidict.py
mitmproxy/coretypes/multidict.py
from abc import ABCMeta from abc import abstractmethod from collections.abc import Iterator from collections.abc import MutableMapping from collections.abc import Sequence from typing import TypeVar from mitmproxy.coretypes import serializable KT = TypeVar("KT") VT = TypeVar("VT") class _MultiDict(MutableMapping[KT...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/asyncio_utils.py
mitmproxy/utils/asyncio_utils.py
import asyncio import os import sys import time from collections.abc import Coroutine from collections.abc import Iterator from contextlib import contextmanager from mitmproxy.utils import human _KEEP_ALIVE = set() def create_task( coro: Coroutine, *, name: str, keep_ref: bool, client: tuple | N...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/strutils.py
mitmproxy/utils/strutils.py
import codecs import io import re from collections.abc import Iterable from typing import overload # https://mypy.readthedocs.io/en/stable/more_types.html#function-overloading @overload def always_bytes(str_or_bytes: None, *encode_args) -> None: ... @overload def always_bytes(str_or_bytes: str | bytes, *encode_arg...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/debug.py
mitmproxy/utils/debug.py
import asyncio import gc import linecache import os import platform import signal import sys import threading import traceback from collections import Counter from contextlib import redirect_stdout from OpenSSL import SSL from mitmproxy import version from mitmproxy.utils import asyncio_utils def dump_system_info()...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/spec.py
mitmproxy/utils/spec.py
from mitmproxy import flowfilter def parse_spec(option: str) -> tuple[flowfilter.TFilter, str, str]: """ Parse strings in the following format: [/flow-filter]/subject/replacement """ sep, rem = option[0], option[1:] parts = rem.split(sep, 2) if len(parts) == 2: subject, repla...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/arg_check.py
mitmproxy/utils/arg_check.py
import re import sys DEPRECATED = """ --confdir -Z --body-size-limit --stream --palette --palette-transparent --follow --order --no-mouse --reverse --http2-priority --no-http2-priority --no-websocket --websocket --upstream-bind-address --ciphers-client --ciphers-server --client-certs --no-upstream-cert --add-upstream-...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/signals.py
mitmproxy/utils/signals.py
""" This module provides signals, which are a simple dispatching system that allows any number of interested parties to subscribe to events ("signals"). This is similar to the Blinker library (https://pypi.org/project/blinker/), with the following changes: - provides only a small subset of Blinker's functionality ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/human.py
mitmproxy/utils/human.py
import datetime import functools import ipaddress import time SIZE_UNITS = { "b": 1024**0, "k": 1024**1, "m": 1024**2, "g": 1024**3, "t": 1024**4, } def pretty_size(size: int) -> str: """Convert a number of bytes into a human-readable string. len(return value) <= 5 always holds true. ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/magisk.py
mitmproxy/utils/magisk.py
import hashlib import os from zipfile import ZipFile from cryptography import x509 from cryptography.hazmat.primitives import serialization from mitmproxy import certs from mitmproxy import ctx from mitmproxy.options import CONF_BASENAME # The following 3 variables are for including in the magisk module as text file...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/sliding_window.py
mitmproxy/utils/sliding_window.py
import itertools from collections.abc import Iterable from collections.abc import Iterator from typing import TypeVar T = TypeVar("T") def window( iterator: Iterable[T], behind: int = 0, ahead: int = 0 ) -> Iterator[tuple[T | None, ...]]: """ Sliding window for an iterator. Example: >>> for ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/typecheck.py
mitmproxy/utils/typecheck.py
import typing from collections import abc try: from types import UnionType except ImportError: # pragma: no cover UnionType = object() # type: ignore Type = typing.Union[ typing.Any # anything more elaborate really fails with mypy at the moment. ] def check_option_type(name: str, value: typing.Any, t...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/__init__.py
mitmproxy/utils/__init__.py
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/vt_codes.py
mitmproxy/utils/vt_codes.py
""" This module provides a method to detect if a given file object supports virtual terminal escape codes. """ import os import sys from typing import IO if os.name == "nt": from ctypes import byref # type: ignore from ctypes import windll # type: ignore from ctypes.wintypes import BOOL from ctypes....
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/emoji.py
mitmproxy/utils/emoji.py
#!/usr/bin/env python3 """ All of the emoji and characters that can be used as flow markers. """ # auto-generated. run this file to refresh. emoji = { ":+1:": "👍", ":-1:": "👎", ":100:": "💯", ":1234:": "🔢", ":1st_place_medal:": "🥇", ":2nd_place_medal:": "🥈", ":3rd_place_medal:": "🥉", ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
true
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/htpasswd.py
mitmproxy/utils/htpasswd.py
""" A standalone, minimal htpasswd parser. This implementation currently supports bcrypt and SHA1 passwords. SHA1 is insecure. """ from __future__ import annotations import base64 import hashlib from pathlib import Path import bcrypt class HtpasswdFile: def __init__(self, content: str): """ Cr...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/bits.py
mitmproxy/utils/bits.py
def setbit(byte, offset, value): """ Set a bit in a byte to 1 if value is truthy, 0 if not. """ if value: return byte | (1 << offset) else: return byte & ~(1 << offset) def getbit(byte, offset): mask = 1 << offset return bool(byte & mask)
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/data.py
mitmproxy/utils/data.py
import importlib import inspect import os.path class Data: def __init__(self, name): self.name = name m = importlib.import_module(name) f = inspect.getsourcefile(m) assert f is not None dirname = os.path.dirname(f) self.dirname = os.path.abspath(dirname) def pu...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/pyinstaller/hook-mitmproxy.addons.onboardingapp.py
mitmproxy/utils/pyinstaller/hook-mitmproxy.addons.onboardingapp.py
from PyInstaller.utils.hooks import collect_data_files datas = collect_data_files("mitmproxy.addons.onboardingapp")
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/pyinstaller/hook-mitmproxy.py
mitmproxy/utils/pyinstaller/hook-mitmproxy.py
hiddenimports = ["mitmproxy.script"]
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/pyinstaller/hook-mitmproxy.tools.web.py
mitmproxy/utils/pyinstaller/hook-mitmproxy.tools.web.py
from PyInstaller.utils.hooks import collect_data_files datas = collect_data_files("mitmproxy.tools.web")
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/utils/pyinstaller/__init__.py
mitmproxy/utils/pyinstaller/__init__.py
from pathlib import Path here = Path(__file__).parent.absolute() def hook_dirs() -> list[str]: return [str(here)]
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_multipart.py
mitmproxy/contentviews/_view_multipart.py
from ._utils import byte_pairs_to_str_pairs from ._utils import merge_repeated_keys from ._utils import yaml_dumps from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata from mitmproxy.net.http.multipart import decode_multipart class MultipartContentview(Contentview): ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_graphql.py
mitmproxy/contentviews/_view_graphql.py
import json from typing import Any from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata def format_graphql(data): query = data["query"] header_data = data.copy() header_data["query"] = "..." return """{header} --- {query} """.format(header=json.dumps(he...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_urlencoded.py
mitmproxy/contentviews/_view_urlencoded.py
import urllib import urllib.parse from ._utils import byte_pairs_to_str_pairs from ._utils import merge_repeated_keys from ._utils import yaml_dumps from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata class URLEncodedContentview(Contentview): name = "URL-encoded" ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_mqtt.py
mitmproxy/contentviews/_view_mqtt.py
import struct from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata from mitmproxy.utils import strutils # from https://github.com/nikitastupin/mitmproxy-mqtt-script class MQTTControlPacket: # Packet types ( CONNECT, CONNACK, PUBLISH, ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_json.py
mitmproxy/contentviews/_view_json.py
import json from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata class JSONContentview(Contentview): syntax_highlight = "yaml" def prettify(self, data: bytes, metadata: Metadata) -> str: data = json.loads(data) return json.dumps(data, indent=4,...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_dns.py
mitmproxy/contentviews/_view_dns.py
from mitmproxy.contentviews._api import InteractiveContentview from mitmproxy.contentviews._api import Metadata from mitmproxy.contentviews._utils import yaml_dumps from mitmproxy.contentviews._utils import yaml_loads from mitmproxy.dns import DNSMessage as DNSMessage from mitmproxy.proxy.layers.dns import pack_message...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_wbxml.py
mitmproxy/contentviews/_view_wbxml.py
from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata from mitmproxy.contrib.wbxml import ASCommandResponse class WBXMLContentview(Contentview): __content_types = ("application/vnd.wap.wbxml", "application/vnd.ms-sync.wbxml") syntax_highlight = "xml" def pre...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_api.py
mitmproxy/contentviews/_api.py
from __future__ import annotations import logging import typing from abc import abstractmethod from dataclasses import dataclass from pathlib import Path from typing import Literal from mitmproxy import http from mitmproxy import tcp from mitmproxy import udp from mitmproxy.dns import DNSMessage from mitmproxy.flow i...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_compat.py
mitmproxy/contentviews/_compat.py
from __future__ import annotations import sys import typing from typing import Iterator from mitmproxy import contentviews from mitmproxy.contentviews import SyntaxHighlight from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata from mitmproxy.utils.strutils import always...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_xml_html.py
mitmproxy/contentviews/_view_xml_html.py
import io import re import textwrap from collections.abc import Iterable from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata from mitmproxy.utils import sliding_window from mitmproxy.utils import strutils """ A custom XML/HTML prettifier. Compared to other prettifiers,...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_http3.py
mitmproxy/contentviews/_view_http3.py
from collections import defaultdict from dataclasses import dataclass from dataclasses import field import pylsqpack from aioquic.buffer import Buffer from aioquic.buffer import BufferReadError from aioquic.h3.connection import parse_settings from aioquic.h3.connection import Setting from ..proxy.layers.http import i...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_query.py
mitmproxy/contentviews/_view_query.py
from .. import http from ._utils import merge_repeated_keys from ._utils import yaml_dumps from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata class QueryContentview(Contentview): syntax_highlight = "yaml" def prettify( self, data: bytes, ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/__init__.py
mitmproxy/contentviews/__init__.py
""" mitmproxy includes a set of content views which can be used to format/decode/highlight/reencode data. While they are mostly used for HTTP message bodies, the may be used in other contexts, e.g. to decode WebSocket messages. See "Custom Contentviews" in the mitmproxy documentation for examples. """ import logging ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_raw.py
mitmproxy/contentviews/_view_raw.py
from ._api import Contentview from ._api import Metadata class RawContentview(Contentview): def prettify(self, data: bytes, metadata: Metadata) -> str: return data.decode("utf-8", "backslashreplace") def render_priority( self, data: bytes, metadata: Metadata, ) -> float: ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/base.py
mitmproxy/contentviews/base.py
# Default view cutoff *in lines* import sys from abc import ABC from abc import abstractmethod from collections.abc import Iterable from collections.abc import Iterator from collections.abc import Mapping from typing import ClassVar from typing import Union from mitmproxy import flow from mitmproxy import http if sys...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_javascript.py
mitmproxy/contentviews/_view_javascript.py
import io import re from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata from mitmproxy.utils import strutils DELIMITERS = "{};\n" SPECIAL_AREAS = ( r"(?<=[^\w\s)])\s*/(?:[^\n/]|(?<!\\)(?:\\\\)*\\/)+?/(?=[gimsuy]{0,6}\s*(?:[;,).\n]|$))", r"'" + strutils.MULTILIN...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_utils.py
mitmproxy/contentviews/_utils.py
import io import typing from collections.abc import Iterable from pathlib import Path from typing import Any from ruamel.yaml import YAML from .. import ctx from .. import http from ..dns import DNSMessage from ..flow import Flow from ..tcp import TCPMessage from ..udp import UDPMessage from ..utils import strutils f...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_socketio.py
mitmproxy/contentviews/_view_socketio.py
from abc import abstractmethod from enum import Enum from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata from mitmproxy.http import HTTPFlow from mitmproxy.utils import strutils class PacketType(Enum): @property @abstractmethod def visible(self) -> bool: ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_registry.py
mitmproxy/contentviews/_registry.py
from __future__ import annotations import logging import typing from collections.abc import Mapping from ..utils import signals from ._api import Contentview from ._api import Metadata logger = logging.getLogger(__name__) def _on_change(view: Contentview) -> None: ... class ContentviewRegistry(Mapping[str, Conte...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_css.py
mitmproxy/contentviews/_view_css.py
import re import time from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata from mitmproxy.utils import strutils """ A custom CSS prettifier. Compared to other prettifiers, its main features are: - Implemented in pure Python. - Modifies whitespace only. - Works with any...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_image/view.py
mitmproxy/contentviews/_view_image/view.py
from .._utils import merge_repeated_keys from .._utils import yaml_dumps from . import image_parser from mitmproxy.contentviews._api import Contentview from mitmproxy.contentviews._api import Metadata from mitmproxy.contrib import imghdr def test_ico(h, f): if h.startswith(b"\x00\x00\x01\x00"): return "ic...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_image/__init__.py
mitmproxy/contentviews/_view_image/__init__.py
from .view import image __all__ = ["image"]
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/contentviews/_view_image/image_parser.py
mitmproxy/contentviews/_view_image/image_parser.py
import io from kaitaistruct import KaitaiStream from mitmproxy.contrib.kaitaistruct import gif from mitmproxy.contrib.kaitaistruct import ico from mitmproxy.contrib.kaitaistruct import jpeg from mitmproxy.contrib.kaitaistruct import png type ImageMetadata = list[tuple[str, str]] def parse_png(data: bytes) -> Image...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/script/concurrent.py
mitmproxy/script/concurrent.py
""" This module provides a @concurrent decorator primitive to offload computations from mitmproxy's main master thread. """ import asyncio import inspect from mitmproxy import hooks def concurrent(fn): if fn.__name__ not in set(hooks.all_hooks.keys()) - {"load", "configure"}: raise NotImplementedError( ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/script/__init__.py
mitmproxy/script/__init__.py
from .concurrent import concurrent __all__ = [ "concurrent", ]
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/io/compat.py
mitmproxy/io/compat.py
""" This module handles the import of mitmproxy flows generated by old versions. The flow file version is decoupled from the mitmproxy release cycle (since v3.0.0dev) and versioning. Every change or migration gets a new flow file version number, this prevents issues with developer builds and snapshots. """ import cop...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/io/tnetstring.py
mitmproxy/io/tnetstring.py
""" tnetstring: data serialization using typed netstrings ====================================================== This is a custom Python 3 implementation of tnetstrings. Compared to other implementations, the main difference is that this implementation supports a custom unicode datatype. An ordinary tnetstring is a ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/io/__init__.py
mitmproxy/io/__init__.py
from .io import FilteredFlowWriter from .io import FlowReader from .io import FlowWriter from .io import read_flows_from_paths __all__ = ["FlowWriter", "FlowReader", "FilteredFlowWriter", "read_flows_from_paths"]
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/io/har.py
mitmproxy/io/har.py
"""Reads HAR files into flow objects""" import base64 import logging import time from datetime import datetime from mitmproxy import connection from mitmproxy import exceptions from mitmproxy import http from mitmproxy.net.http.headers import infer_content_encoding logger = logging.getLogger(__name__) def fix_head...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false
mitmproxy/mitmproxy
https://github.com/mitmproxy/mitmproxy/blob/e6aa924bb411a9687b91920b8d094af37bc02b90/mitmproxy/io/io.py
mitmproxy/io/io.py
import json import os from collections.abc import Iterable from io import BufferedReader from typing import Any from typing import BinaryIO from typing import cast from typing import Union from mitmproxy import exceptions from mitmproxy import flow from mitmproxy import flowfilter from mitmproxy.io import compat from ...
python
MIT
e6aa924bb411a9687b91920b8d094af37bc02b90
2026-01-04T14:40:00.086164Z
false