扫描 JavaScript 存在的工具?

发布于 2024-12-10 19:07:46 字数 119 浏览 0 评论 0原文

在我开始一起做一些疯狂的事情之前,我想咨询一下社区。目前是否有一种工具可以爬行网站并验证特定的 javascript 是否存在? (我的用例是确保所有页面上都存在 Google Analytics 或 Twitter 代码)

Before I start hacking something crazy together, I wanted to check with the community. Is there currently a tool out there that will crawl through a website and validate that specific javascript is present there? (My use case is ensuring Google Analytics or Twitter code are present on all pages)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

单挑你×的.吻 2024-12-17 19:07:46

如果你有一个可以终端访问的 Linux 服务器,你可以使用 grep 来查找结果。

grep  -Lr "sample twitter code" /path/to/directory/*.js

-L 列出不包含代码的所有文件的文件名

-r 下降到子目录

If you have a linux server with terminal access you could just use grep to find the results.

grep  -Lr "sample twitter code" /path/to/directory/*.js

-L lists the file name of all files that do not include the code

-r descends into subdirectories

莳間冲淡了誓言ζ 2024-12-17 19:07:46

您可以使用 wget 将网页递归下载到本地计算机,然后使用 grep 来搜索哪些文件包含或不包含您要查找的内容。

You could use wget to recursively download the web pages to a local machine, then use grep to search for which files do or don't have what you're looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文