Jannis Rautenstrauch

Results 21 issues of Jannis Rautenstrauch

Here https://paulgb.github.io/Treeverse/ , I can upload `twarc.json` to the Treeverse, but I found no way to do this with Firefox Addon.

enhancement

Sometimes one needs to have access to the browser determined [mimeType](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-Response) of a response. With CDP this is possible: ```python client = page.context.new_cdp_session(page) client.send("Network.enable") client.on("Network.responseReceived", lambda r: print(r["response"]["mimeType"])) ``` However,...

I used redbot for a while on mac with python 3.9 and had no issues. Today, I tried it out an an Ubuntu 18 machine (python 3.9) and it only...

bug

Currently, `redbot_cli` uses a fixed config that is not easy to change. The changes make `redbot_cli` use the same config file as the other services.

> Only [request](https://fetch.spec.whatwg.org/#concept-request) [destinations](https://fetch.spec.whatwg.org/#concept-request-destination) that are [script-like](https://fetch.spec.whatwg.org/#request-destination-script-like) or "style" are considered as any exploits pertain to them. Also, considering "image" was not compatible with deployed content. (https://fetch.spec.whatwg.org/#should-response-to-request-be-blocked-due-to-nosniff?) To me the...

The standard does not specifies it's relation to the HTTP RFCs nor explicitly states what should be done in case of conflicts between the HTTP RFCs and the Fetch standard....

**Context:** - Playwright Version: 1.26.0 - Operating System: Mac - Python version: 3.9 - Browser: Chromium **Code Snippet** - Run `python test.py` for normal behavior: `TimeoutError, {headers}, Error` - Run...

P3-collecting-feedback

### System info - Playwright Version: [v1.30] - Operating System: [All] - Browser: [Chromium, WebKit?] - Other info: ### Source code - [x] I provided exact source code that allows...

browser-chromium
P3-collecting-feedback

There are various ways to partition browser state confusingly called Double-Keyed, Triple-Keyed, and various 2.5-keyed schemes. (https://arturjanc.com/xsleaks-2023-partitioning-and-cookies.pdf, https://github.com/shivanigithub/http-cache-partitioning/issues/2) It would be nice if there would be some information about which...

Allows to specify that a response is belonging to a head request and should not have a body #648 Usage: ```python import dpkt head_response = b"HTTP/1.1 200 OK\r\nContent-Length: 10\r\n\r\n" resp...