summaryrefslogtreecommitdiff
path: root/tls
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2015-03-03 13:23:48 +0100
committerPeter Wu <peter@lekensteyn.nl>2015-03-03 13:23:48 +0100
commit3c00336b07f1fec0fb13af3c7d502d51fab732b7 (patch)
tree2dd312653db16c8e581a7e525f368ec3bab18903 /tls
parent2b8dda97011ef1f3faf910dea057e3b1f8712f72 (diff)
downloadwireshark-notes-3c00336b07f1fec0fb13af3c7d502d51fab732b7.tar.gz
Add amqps.pcapng (AMQP over SSL)
Master keys are available in the capture file comments. Installed rabbitmq-server on Ubuntu 14.04 (upgraded halfway to 14.10) and wrote /etc/rabbitmq/rabbitmq.config with appriopriate certs: [ {rabbit, [ {ssl_listeners, [5671]}, {ssl_options, [{cacertfile, "/etc/rabbitmq/cert.pem"}, {certfile, "/etc/rabbitmq/cert.pem"}, {keyfile, "/etc/rabbitmq/key.pem"}, {verify, verify_peer}, {fail_if_no_peer_cert, false}]} ]} ]. amqp-tools (amqp-publish, etc.) did not work, so a quick Celery script was used (install python-celery): from celery import Celery app = Celery('tasks', broker='amqp://guest@localhost:5671/') app.conf.update(BROKER_USE_SSL=True) @app.task def add(x, y): return x + y print(add.delay(3, 4))
Diffstat (limited to 'tls')
-rw-r--r--tls/amqps.pcapngbin0 -> 8484 bytes
1 files changed, 0 insertions, 0 deletions
diff --git a/tls/amqps.pcapng b/tls/amqps.pcapng
new file mode 100644
index 0000000..86ee3b1
--- /dev/null
+++ b/tls/amqps.pcapng
Binary files differ