They seem to assume the reader has a certain level of competency with web traffic monitoring and client/server communicating tools. I suppose this is half the fun. Still, I'm trying to figure out what they mean by > " Before you ask: yes, Piñata will talk to itself and you can enjoy watching it do so. " Also, what should I be using to connect using TLS/TCP?
They offer a TLS client and server interface, so you can have your own host act as a proxy. Try this: $ mkfifo /tmp/tlspipe $ nc -l -p 40001 /tmp/tlspipe Then visit http://ownme.ipredator.se:10001 from that same host (curl or firefox or whatever). Now look at /tmp/tlspipe. Disclaimer: I'm completely unfamiliar with named pipes or tls, but I think this is what they mean. EDIT: This should also work: $ mkfifo /tmp/tlsp…
FWIW you can also do it with a single socat invocation, but I'll leave the exact command as an exercise for the reader.