扫描 JavaScript 存在的工具?
在我开始一起做一些疯狂的事情之前,我想咨询一下社区。目前是否有一种工具可以爬行网站并验证特定的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你有一个可以终端访问的 Linux 服务器,你可以使用 grep 来查找结果。
-L 列出不包含代码的所有文件的文件名
-r 下降到子目录
If you have a linux server with terminal access you could just use grep to find the results.
-L lists the file name of all files that do not include the code
-r descends into subdirectories
您可以使用 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.