Mitmproxy has received username/password SOCKS5 credentials. This hook decides whether they are valid by setting `data.valid`.
| 121 | |
| 122 | @dataclass |
| 123 | class Socks5AuthHook(StartHook): |
| 124 | """ |
| 125 | Mitmproxy has received username/password SOCKS5 credentials. |
| 126 | |
| 127 | This hook decides whether they are valid by setting `data.valid`. |
| 128 | """ |
| 129 | |
| 130 | data: Socks5AuthData |
| 131 | |
| 132 | |
| 133 | class Socks5Proxy(DestinationKnown): |
no outgoing calls
no test coverage detected
searching dependent graphs…