访问日志解析

发布于 2024-07-26 14:50:22 字数 67 浏览 3 评论 0原文

我想解析我的访问日志。 目的是获取任何查询字符串参数的值,与其位置无关。 另外有没有免费的 URL 解析软件或网站。

I want to parse my access log. Objective is to get the value of any query string parameter independent of its location.
Also is there any free URL parsing s/w or website.

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

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

发布评论

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

评论(1

我的鱼塘能养鲲 2024-08-02 14:50:22

如果您使用的是 Windows,请查看 Microsoft 的日志解析器:

http://www.iis.net/downloads/default.aspx?tabid=34&g=6&i=1287

获取所有 500 个错误的查询字符串的查询类似于:

logparser "SELECT cs-uri-query, Count(*) AS Total FROM ex*.log WHERE sc-status>=500 GROUP BY cs-uri-query ORDER BY Total DESC " -rtp:-1

请注意,cs-uri-query 是您感兴趣的“列”。其他示例(包括上述示例)记录在:

http://www.securityfocus.com/infocus/1712

If you're on Windows, take a look at Microsoft's Log Parser:

http://www.iis.net/downloads/default.aspx?tabid=34&g=6&i=1287

A query to obtain query strings for all 500 errors would be something like:

logparser "SELECT cs-uri-query, Count(*) AS Total FROM ex*.log WHERE sc-status>=500 GROUP BY cs-uri-query ORDER BY Total DESC " -rtp:-1

Note that cs-uri-query is the "column" you're interested in. Other examples (including the above) documented at:

http://www.securityfocus.com/infocus/1712

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