ubuntu:ssl:dump_ssl_data_in_realtime
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
ubuntu:ssl:dump_ssl_data_in_realtime [2021/02/02 12:12] – peter | ubuntu:ssl:dump_ssl_data_in_realtime [2021/02/02 12:16] (current) – peter | ||
---|---|---|---|
Line 46: | Line 46: | ||
</ | </ | ||
+ | ---- | ||
+ | ===== Pass a Private Key to ssldump ===== | ||
+ | |||
+ | To decrypt communications and dump application data, ssldump will need a copy of the private key from the server you wish to debug. | ||
+ | |||
+ | ssldump will use this key to derive the session key that is negotiated between the client and the server, and used to encrypt all network communications. | ||
+ | |||
+ | <code bash> | ||
+ | ssldump -a -A -H -k rsa.key -i en0 | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | < | ||
+ | # connection setup removed... | ||
+ | |||
+ | 3.6155 (3.6155) | ||
+ | --------------------------------------------------------------- | ||
+ | GET / HTTP/1.0 | ||
+ | --------------------------------------------------------------- | ||
+ | |||
+ | 2 12 3.8862 (0.2310) | ||
+ | 2 13 3.8862 (0.0000) | ||
+ | 3.8466 (0.2311) | ||
+ | --------------------------------------------------------------- | ||
+ | |||
+ | --------------------------------------------------------------- | ||
+ | |||
+ | 3.8777 (0.0310) | ||
+ | --------------------------------------------------------------- | ||
+ | HTTP/1.1 403 Forbidden | ||
+ | Date: Mon, 12 Feb 2016 12:13:14 GMT | ||
+ | Server: Apache/ | ||
+ | Content-Length: | ||
+ | Connection: close | ||
+ | Content-Type: | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * ssldump supports Berkeley Packet Filter style filters, allowing you to grab and decode specific communications. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | Capture SSL communications destined for host peter on TCP port 443: | ||
+ | |||
+ | <code bash> | ||
+ | ssldump -a -A -H -k rsa.key -i en0 host peter and port 443 | ||
+ | </ |
ubuntu/ssl/dump_ssl_data_in_realtime.1612267963.txt.gz · Last modified: 2021/02/02 12:12 by peter