在windows下写python的web漏扫脚本,有时候需要观察http连接数。
可以使用如下批处理:
@echo off :count echo|set /p="Num of HTTP Connections: " & netstat -na | find /C ":80" timeout 3 > nul GOTO count
将上述脚本保存为http_conn.bat,在扫描时可以简单地监视http连接:
在windows下写python的web漏扫脚本,有时候需要观察http连接数。
可以使用如下批处理:
@echo off :count echo|set /p="Num of HTTP Connections: " & netstat -na | find /C ":80" timeout 3 > nul GOTO count
将上述脚本保存为http_conn.bat,在扫描时可以简单地监视http连接:
ESTABLISHED 这个有判断么
脚本粗略统计一下,http服务也不一定在80端口的。。。 不是精确的数字