暴露的RESTful Service是否需要检查XSS攻击
我有一个 RESTful WCF 服务,它公开一个接受 XElement 作为参数的方法。
现在我想知道是否需要先检查传入消息是否存在 XSS 攻击,或者框架是否默认处理它。
如果我需要处理,我是否使用 Microsoft XSS 库对来自请求的 XElement 字符串执行此操作。
I have a RESTful WCF service that exposes a method that takes in an XElement as a parameter.
Now i want to know if i need to check the incoming message for XSS attacks first or does the framework handle it by default.
If i need to handle do i use the Microsoft XSS library to perform this operation on the XElement string that comes in from the request.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查以下链接以获取更多详细信息
REST 安全性
REST 没有预定义的安全方法,因此开发者定义自己的,并且
通常,急于部署服务的开发人员不会像对待 Web 应用程序那样认真对待它们。
check the below link for further details
REST Security
REST does not have predefined security methods so developers define their own, and
Often, developers in a hurry to just get... services deployed don't treat them with the same level of diligence as they treat web applications.