I would analyze the situation starting with two facts:
- From your iPhone's perspective, your iPhone is trusted.
- From your iPhone's perspective, the server is untrusted.
As a first step on top of HTTPS, I would challenge the server to prove it's identity. The challenge is something like "sign my UUID, this timestamp, and this nonce." Using public key cryptography with a published key, you can verify that you're talking to the server you know and trust.
That is vulnerable to a man in the middle for observation, but the challenge is sufficiently complex that a replay attack won't work. By the time you know how to answer the challenge, you'll never see that challenge again.
I think observing Siri's protocol is a non-issue if it can't be replay-attacked, plus we've all seen it now anyhow, but the man in the middle can be blocked by using a trusted certificate authority. If guzzoni.apple.com isn't what it should be, the smell test fails. Some Netflix clients check with VeriSign that they're talking to the real Netflix.
That is an analysis from your iPhone's perspective, which trusts itself implicitly. Obviously, your phone is the untrusted party and Apple is the trusted party. Once iOS is jailbroken, all bets are off. There are two absolute solutions, and neither of them are technological.
- Backport Siri to the iPhone 3GS, iPhone 4, iPad, and iPad 2. Then, nobody will need fake Siri.
- Don't worry about jail-breakers, and just let them have their fun. Seems to be working so far.
(As a side note, there has been a long-standing replay attack vulnerability in the iOS firmware verification process. The verification server would give you a signature based on a hardware-based token and the firmware version, which Cydia could replay at a later date. It's been corrected in iOS 5, several years laters, which leads me to believe Apple consciously chose #2.)