mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-24 00:23:53 +00:00
9bd269c26a
- pathod request logs now include a clientcert member with details on the client cert, or None if there wasn't one. - pathoc has a -C option to specify a client certificate
9 lines
470 B
Bash
Executable File
9 lines
470 B
Bash
Executable File
#!/bin/sh
|
|
|
|
openssl genrsa -out client.key 2048
|
|
openssl req -key client.key -new -out client.req
|
|
openssl x509 -req -days 365 -in client.req -signkey client.key -out client.crt -extfile client.cnf -extensions ssl_client
|
|
openssl x509 -req -days 1000 -in client.req -CA ~/.mitmproxy/mitmproxy-ca.pem -CAkey ~/.mitmproxy/mitmproxy-ca.pem -set_serial 00001 -out client.crt -extensions ssl_client
|
|
cat client.key client.crt > client.pem
|
|
openssl x509 -text -noout -in client.pem
|