如何使用 标签将 javascript 发送到页面
我有一个像这样的跟踪像素img:
<img ... width=1 height=1 src="http://trk.dom123.com/file.aspx?type=1&cp=1" />
我希望能够从这个src返回一个javascript。 然后,这将使用我来进行我需要做的分析。
这意味着调用 IMG src 将产生我在服务器中生成的脚本,该脚本被注入到触发像素的页面(IMG tga)。
是否可以?如果没有,请建议任何其他替代方案。
非常感谢。
I have a tracking pixel img like this one:
<img ... width=1 height=1 src="http://trk.dom123.com/file.aspx?type=1&cp=1" />
I would like to be able to return a javascript from this src.
This will then use me to make the analysis I am required to do.
Meaning calling the IMG src will result with a script I generate in my server, injected to the page that fired the pixel (the IMG tga).
Is it possible? if not please suggest any other alternatives.
Many thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
由于 XSS 攻击,现代浏览器不可能做到这一点。您必须包含带有
标记的任何 JavaScript,
请参阅 http:// /ha.ckers.org/xss.html
It's not possible with modern browsers due to XSS attacks. You will have to include any javascript with a
<script>
tagSee http://ha.ckers.org/xss.html
不,
img
标签不会处理 JavaScript。这将导致图像损坏。显而易见的答案就是简单地执行以下操作:No, an
img
tag will not process javascript. It will result in a broken image. The obvious answer is to simply do:不可能,替代方案是:
Not possible, alternative would be: