https://github.com/lpardue/sreconemea2023
Supporting materials for SREcon EMEA 2023
https://github.com/lpardue/sreconemea2023
Last synced: 3 months ago
JSON representation
Supporting materials for SREcon EMEA 2023
- Host: GitHub
- URL: https://github.com/lpardue/sreconemea2023
- Owner: LPardue
- License: mit
- Created: 2023-10-08T21:45:54.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-08T22:00:05.000Z (over 2 years ago)
- Last Synced: 2025-09-13T13:59:25.777Z (9 months ago)
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SREcon EMEA 2023
Supporting materials for SREcon EMEA 2023 talk "Over, Under, Around, and
Through: A Detailed Comparison of QUIC and HTTP/3 Application Mapping vs.
Protocol Encapsulation"
## Example of a good exchange on localhost
Using Cloudflare quiche-client and quiche-server example apps.
Commands:
```
quiche-server --no-retry
```
```
quiche-client --no-verify --wire-version 1 https://127.0.0.1:4433/index.html
```
Artefacts:
* localhost-good.pcapng
* client-localhost-good.sqlog
* server-localhost-good.sqlog
## Example of incorrect transport parameters for HTTP/3 on localhost
Using Cloudflare quiche-client and quiche-server example apps.
SSLKEYLOGFILE and QLOGDIR environment variables help analyse data within the
encryption boundary.
Commands:
```
quiche-server --no-retry
```
```
SSLKEYLOGFILE=pcap.keys QLOGDIR=qlogs quiche-client --no-verify --wire-version 1 –-max-streams-uni 0 https://127.0.0.1:4433/index.html
```
Artefacts:
* localhost-0-streams-uni.pcapng
* client-localhost-0-streams-uni.sqlog
* server-localhost-0-streams-uni.sqlog
## Example of incorrect transport parameters for HTTP/3 with lucaspardue.com
Using Cloudflare quiche-client to speak to Cloudflare edge.
```
SSLKEYLOGFILE=pcap.keys QLOGDIR=qlogs quiche-client --no-verify --wire-version 1 –-max-streams-uni 0 https://lucaspardue.com/index.html
```
Artefacts:
* client-lucaspardue.com-0-streams-uni.sqlog