So, long story short I was packet sniffing my AIM client, trying to disassemble the login progress for creating my own AIM bot. In the process, I found a particularly delicious packet header I found bounced back to the AIM client...
Code:
GET /redirects/inclient/AIM_UAC_v2.adp?magic=93236874&width=120&height=90&sn=Slayerexpert HTTP/1.1..Accept: */*..Accept-Language: en-us..UA-CPU: x86..Accept-Encoding: gzip, deflate..User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; AIM Browser 1.0; Windows NT 5.1; .NET CLR 2.0.50727; Zune 2.0; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; Zune 2.5; InfoPath.2)..Host: www.aim.com..Connection: Keep-Alive..Cookie: rsi_ct=2008_6_19:9; RSP_DAEMON=650b7f336708bcdc184ee7
Wait, what? Take a closer look at this part:
Code:
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; AIM Browser 1.0; Windows NT 5.1; .NET CLR 2.0.50727; Zune 2.0; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; Zune 2.5; InfoPath.2)
What the heck is Zune 2.0 and Zune 2.5 doing embedded in their user agent compatability list?
Any thoughts?