如何使用 标签将 javascript 发送到页面

发布于 2024-10-28 18:03:37 字数 301 浏览 2 评论 0原文

我有一个像这样的跟踪像素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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

柠檬心 2024-11-04 18:03:37

由于 XSS 攻击,现代浏览器不可能做到这一点。您必须包含带有

请参阅 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> tag

See http://ha.ckers.org/xss.html

平生欢 2024-11-04 18:03:37

不,img 标签不会处理 JavaScript。这将导致图像损坏。显而易见的答案就是简单地执行以下操作:

<script type="text/javascript" src="http://trk.dom123.com/file.aspx?type=1&cp=1"></script>

No, an img tag will not process javascript. It will result in a broken image. The obvious answer is to simply do:

<script type="text/javascript" src="http://trk.dom123.com/file.aspx?type=1&cp=1"></script>
黄昏下泛黄的笔记 2024-11-04 18:03:37

不可能,替代方案是:

<script type="text/javascript" src="http://trk.dom123.com/file.aspx?type=1&cp=1"></script>

Not possible, alternative would be:

<script type="text/javascript" src="http://trk.dom123.com/file.aspx?type=1&cp=1"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文