Skip to content

Commit

Permalink
修复非标准端口redis识别
Browse files Browse the repository at this point in the history
  • Loading branch information
SleepingBag945 committed Nov 28, 2023
1 parent ecdaa97 commit e16cdab
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,8 @@ JDWP RCE
# 更新历史
2023.11.28 修复非标准端口redis的识别问题。感谢qiwentaidi
2023.11.27 hunter低感知模式支持
2023.11.23 新加135poc,包含近期热点漏洞。have fun~
Expand Down
8 changes: 8 additions & 0 deletions Update.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# 更新日志

## 2023.11.28

修复非标准端口redis协议的识别问题。

感谢qiwentaidi。



## 2023.11.27

新增低感知模式参数lpm。即将原来的本机请求信息的流程改为直接改为全部从搜索引擎拉。
Expand Down
2 changes: 1 addition & 1 deletion lib/gonmap/gonmap.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func initWithFilter(filter int) {
probeUsed: emptyProbeList,
bypassAllProbePort: []int{161, 137, 139, 135, 389, 443, 548, 1433, 6379, 1883, 5432, 1521, 3389, 3388, 3389, 33890, 33900},
sslSecondProbeMap: []string{"TCP_TerminalServerCookie", "TCP_TerminalServer"},
allProbeMap: []string{"TCP_GetRequest", "TCP_NULL", "TCP_JDWP"},
allProbeMap: []string{"TCP_GetRequest", "TCP_NULL", "TCP_JDWP", "TCP_redis-server"},
sslProbeMap: []string{"TCP_TLSSessionReq", "TCP_SSLSessionReq", "TCP_SSLv23SessionReq"},
}
for i := 0; i <= 65535; i++ {
Expand Down

0 comments on commit e16cdab

Please sign in to comment.