X-Powered-By:标头中的 ASP.NET。文件说了什么?
我一直在使用 Wireshark,我注意到我的插件似乎可以追踪我所做的一切。我想看看发回来的是什么。
内容看起来像:
标题:
HTTP/1.1 200 OK Connection: close Date: Thu, 19 May 2011 05:40:29 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 90 Content-Type: app/x-hotbar-xip20 Expires: 0
Content XIP_2.0|1.SDF|67|70|xŚˇ334‹330±00ąr+-ĪĢ+.-JĢKNĶĻĖÉĢKÕKĪĻ¨3ä ¨Ó¸3©Õ5ār‘qŁ©•åłE)Å\Č#
当我尝试时要打开它,它会下载一个 sitedisp.dll 文件,该文件没有说明任何内容。如何打开/解码这些类型的文件?
好像可以连接IE插件
I have been using Wireshark and I noticed that my plugin seem to track down everything I do. I would like to see what is sending back.
content looks something like:
Headers:
HTTP/1.1 200 OK Connection: close Date: Thu, 19 May 2011 05:40:29 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 90 Content-Type: app/x-hotbar-xip20 Expires: 0
Content XIP_2.0|1.SDF|67|70|xŚˇ334‹330±00ąr+-ĪĢ+.-JĢKNĶĻĖÉĢKÕKĪĻ¨3ä ¨Ó¸3©Õ5ār‘qŁ©•åłE)Å\Č#
When I try to open it, it downloads me a sitedisp.dll file which does not say anything. How can I open/decode these type of files?
It seems to connect to IE plugin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它是.NET dll,您可以使用 Reflector 轻松查看其内容。
http://reflector.red-gate.com/download.aspx?TreatAsUpdate=1
也就是说,Hotbar 服务条款似乎明确规定您不得对产品进行反编译或逆向工程...正如托尼提到的,该消息似乎确实以某种方式加密。根据他们使用的方案,以明文形式查看内容可能非常困难,并且由于您不应该对其进行逆向工程,因此我投票赞成您从计算机中完全删除该程序并继续执行其他操作。
If it is a .NET dll, you can see its contents quite easily with Reflector.
http://reflector.red-gate.com/download.aspx?TreatAsUpdate=1
That said, the Hotbar terms of service appear to explicitly say you shall not decompile or reverse engineer the product... The message does appear to be encrypted in some way, as Tony mentioned. Depending on the scheme they used, it may be terribly difficult to see the contents in clear text, and since your not supposed to be reverse engineering it, I vote that you just delete the program from your machine entirely and move on to something else.
sitedisp.dll
是一个 DLL 文件,这意味着它是一个包含可执行代码的二进制文件。除非您了解汇编程序或者它是 .NET DLL(中间语言),否则打开它可能不会教您太多知识。发送回服务器的数据不会成为该 DLL 的一部分。看起来像这样:xŚˇ334媾330±00ąr+-ĪĢ+.-JĢKNĶĻĖÉĢKÕKĪĻě3ä ě¸3©Õ5ār'qŁ©•åłE)Å\Č#
可能是某种加密形式的数据,但我不确定。
sitedisp.dll
is a DLL file, which means it's a binary which contains executable code. Opening it will probably not teach you much unless you know Assembler or if it's a .NET DLL, Intermediate Language. The data which is sent back to the server is not going to be part of that DLL.It looks like that this: xŚˇ334‹330±00ąr+-ĪĢ+.-JĢKNĶĻĖÉĢKÕKĪĻ¨3ä ¨Ó¸3©Õ5ār‘qŁ©•åłE)Å\Č#
could be the data in some encrypted form, however I'm not sure.