Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
wonitor — 快速、零配置的网页端点变更监控器 | Kitploit
工具/GitHubGitHub/rverton/wonitor
侦察漏洞分析信息收集Web安全
GitHubrverton/wonitor

wonitor

快速、零配置的网页端点变更监控器

查看仓库
4346年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

web 监控器

快速、零配置的 Web 端点变化监控器。用于比较响应,会将选定的 HTTP 标头列表和完整响应体存储在本地键值存储文件中。无需配置。

  • 为了增加网络吞吐量,--worker 标志允许设置监控时的并发数。
  • 返回 JavaScript 内容类型的端点默认会被美化。
  • 添加 URL 时使用 --headersOnly 可以仅监控响应标头。

安装

通过 Go 或 二进制发布版 安装:

root@kitploit:~
go get -u github.com/rverton/wonitor

使用

root@kitploit:~
λ $ ./wonitor
NAME:
   wonitor - web monitor

USAGE:
   wonitor [global options] command [command options] [arguments...]

COMMANDS:
   add, a      add endpoint to monitor
   delete, d   deletes an endpoint
   get, g      get endpoint body
   list, l     list all monitored endpoints and their body size in bytes
   monitor, m  retrieve all urls and compare them
   help, h     Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --help, -h  show help (default: false)

λ $ ./wonitor add --url https://unlink.io/
+ https://unlink.io/
λ $ ./wonitor monitor --save
[https://unlink.io/] 1576b diff:
--- Original
+++ Current
@@ -1 +1,47 @@
+HTTP/1.1 200 OK
+Content-Type: text/html
+Server: nginx/1.10.3 (Ubuntu)
+X-Frame-Options: DENY

+<html>
+<body>
+<pre>
[... snip ...]
+</pre>
+</body>
+</html>
+

λ $ ./wonitor monitor --save
λ $ # no output because no change detected

端点差异比较

以下标头也会包含在保存的响应中,并监控其变化:

root@kitploit:~
var headerToInclude = []string{
	"Host",
	"Content-Length",
	"Content-Type",
	"Location",
	"Access-Control-Allow-Origin",
	"Access-Control-Allow-Methods",
	"Access-Control-Expose-Headers",
	"Access-Control-Allow-Credentials",
	"Allow",
	"Content-Security-Policy",
	"Proxy-Authenticate",
	"Server",
	"WWW-Authenticate",
	"X-Frame-Options",
	"X-Powered-By",
}
下载工具