某天远程自己的电脑发现登不上了,错误信息如下:
开始也没在意,后面出现了好几次才反应过来。查看了Windows日志发现一直有人在尝试登录这台电脑,因为3389端口已经映射到了公网IP
进入计算机管理->系统工具->本地用户和组选择被锁定的用户,右键属性就能看到
取消锁定即可
之前一直没有出现这种情况,但是我看日志信息这种情况已经出现好几天了,每隔几秒就有人尝试登陆。因为Windows日志右大小限制,也就是最多保留三四天的信息,那这种情况应该持续很长一段时间了。
之前没有发现是因为Windows11 22H2才开始开启这个策略。也就是说之前的系统即使密码尝试一直错误也不会锁定账户,具体可以看:Windows 11 22H2默认启用了密码暴力穷举保护功能
看了看我的纯数字的密码,细思极恐,吓得我马上换成了大小写数字加特殊字符的密码
因为我自己也要远程连接电脑,防火墙直接锁死远程登陆也不太现实,因为是映射到公网的IP,用的也不是3389端口,改端口应该是没实际作用的。
查看了日志发现,日志里是有远程登陆的IP的。导出日志为txt,正则提取一下IP,接着去下重,有170个IP。想着加入防火墙的黑名单,但是Windows这防火墙也不能批量编辑,只能一个一个加。
搜了一下如何通过winapi获取日志和添加防火墙
我搜到的有两种方式,powershell和WMI
WMI我测试了不太会用,还是powershell命令方便的多。官方文档
Get-EventLog
[-LogName]
[-ComputerName ]
[-Newest ]
[-After ]
[-Before ]
[-UserName ]
[[-InstanceId] ]
[-Index ]
[-EntryType ]
[-Source ]
[-Message ]
[-AsBaseObject]
[]
说下这里面用的到的:
Get-EventLog -List
查看所有的类型英文名称Windows命令并不区分大小写,参数也是大写小写都可以。如果参数是字符串的话,不包含特殊字符的话,可以不用引号括起来。如果包含空格等特殊字符的话需要引号括起来
Get-EventLog -LogName System -Source "Microsoft-Windows*" -Newest 10
查看最近十条Source字段以Microsoft-Windows开头的系统日志
Get-EventLog -LogName System -EntryType "Error" -Newest 10
查看最近十条EntryType等于Error的系统日志
Get-EventLog -LogName Security -InstanceId 4625 -Newest 10
查看最近十条InstanceId等于4625的安全日志。InstanceId表示的是事件类型,4625就是登录失败的类型
Get-EventLog -LogName Security -Message *登录失败* -Newest 10
查看最近十条,Message包含登录失败的安全日志
Get-EventLog -LogName System -Newest 1 | Select-Object -Property *
显示属性
Get-EventLog -LogName System -Newest 1 | Select-Object -Property EventID,Message
只显示EventID,Message字段
$Begin = Get-Date -Date '1/17/2019 08:00:00'
$End = Get-Date -Date '1/17/2019 17:00:00'
Get-EventLog -LogName System -EntryType Error -After $Begin -Before $End
这得先定义两个时间变量,再执行第三个命令
Get-EventLog -LogName Security -InstanceId 4625 -Newest 1 | select -ExpandProperty message
只显示Message字段,主要是为了显示全部,不然看到的都是…
官方文档
如果不清楚具体命令,可以后面跟空格+问号获取帮助信息
简单说下show delete和add这三个命令
show的功能基本就是下图中的两个例子了
netsh advfirewall firewall show rule name="allow browser"
获取指定name的防火墙规则netsh advfirewall firewall show rule name=all dir=in type=dynamic
获取防火墙入站规则中类型为dynamic的规则。这个type类型指的是什么,我在防火墙里没看到add的帮助信息比较长,这里就截了用法。示例和补充说明可以在自己电脑上看
介绍下字段:
localsubnet|dns|dhcp|wins|defaultgateway
这些我也不清楚有什么用。看后面的参数类型:IPv4 | IPv6 | 地址范围 | 地址列表,这个后面说明这里说下remoteip的规则。localip基本类似
10.0.0.0/24(10.0.0.1–10.0.0.254)
10.0.0.0/16(10.0.0.1–10.0.255.254)
10.0.0.0/8(10.0.0.1–10.255.255.254)
10.0.0.0/32(10.0.0.0)
: 地址范围,比如你不想写成10.0.0.0/24
就可以写10.0.0.1–10.0.0.254
: 可以写多个,用逗号分隔, 比如 8.8.8.8,10.0.0.0/24
因为登录失败的IP不止这些,我禁止了一批又出现几个新的,所以我打算写个工具自动提取IP和添加到防火墙黑名单里
这里我选择了aardio来写这个工具,理由很简单:调用powershell和cmd命令方便,容易打包成exe,没有依赖环境
import console;
import dotNet.ps;
var ps_string = "Get-EventLog -LogName Security -InstanceId 4625 | select -ExpandProperty message";
var result = dotNet.ps(ps_string);
console.pause(true);
import console;
import process.popen;
var ruleName = "BlockIPsByHelper";
var show_ps_string = string.format("netsh advfirewall firewall show rule name=%s", ruleName);
var prcsShow = process.popen(show_ps_string);
var showIps = table.array();
for line in prcsShow.lines("<远程\s*IP>|\s*\:\s*([\d./,-]+)" ){
if(!line || line == "") continue;
var s = string.split(line, ",");
for(i=1;#s;1){
table.push(showIps, s[i]);
}
}
prcsShow.close();
console.pause(true);
完整代码:
import console;
import dotNet.ps;
import process.popen;
io.open()
var ruleName = "BlockIPsByHelper";
var arrayCounter = function(tab){
var counter = {};
for(i=1;#tab;1){
var c = tab[i];
if(!counter[c]){
counter[c] = 1;
}else{
counter[c] += 1;
}
}
return counter;
}
// 通过powershell命令查询日志,获取登录失败(EventID=4625)的远程IP
var getLoginFailEventIP = function(){
var ps_string = "Get-EventLog -LogName Security -InstanceId 4625 | select -ExpandProperty message";
var result = dotNet.ps(ps_string);
var ips = table.array();
string.search(ips, result, "\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}");
var counter = arrayCounter(ips);
console.log("IP计数: ")
console.dump(counter);
var set_ips = table.array();
for(i=1;#ips;1){
var ip = ips[i];
var ip32 = ip+"/32";
if(!table.find(set_ips, ip32) and ip32 != "127.0.0.1/32" and counter[ip] > 2){
table.push(set_ips, ip32);
}
}
return set_ips;
}
var addFirewallRule = function(){
console.log("规则名称:", ruleName);
// 查询旧规则
var show_ps_string = string.format("netsh advfirewall firewall show rule name=%s", ruleName);
var prcsShow = process.popen(show_ps_string);
var showIps = table.array();
for line in prcsShow.lines("<远程\s*IP>|\s*\:\s*([\d./,-]+)" ){
if(!line || line == "") continue;
line = string.trim(line);
var s = string.split(line, ",");
for(i=1;#s;1){
table.push(showIps, s[i]);
}
}
prcsShow.close();
console.log("查询旧规则结果IP: ", '\r\n', string.join(showIps, '\r\n'));
// 删除旧规则
var delete_ps_string = string.format(`netsh advfirewall firewall delete rule name="%s"`, ruleName);
var prcsDelete = process.popen(delete_ps_string);
var result, a, b = prcsDelete.readAll();
console.log("删除规则结果: ", result);
prcsDelete.close();
// 查询IP
console.log('开始从计算机管理->系统工具->事件查看器->Windows日志 查询错误登录信息,等待时间会有点长(看日志量)!\r\n');
var t0 = time.tick();
var ips = getLoginFailEventIP();
console.log("获取IP完成,耗时(秒): ", (time.tick()-t0)/1000);
// 将showIps中的ip加入到ips
for(i=1;#showIps;1){
var ip = string.trim(showIps[i]);
if(!table.find(ips, ip)){
table.push(ips, ip);
}
}
// 将提取的ip保持到文件
string.save("\日志提取的IP.txt", string.join(ips,'\r\n'));
// 添加新规则
var remoteip = string.join(ips, ",");
var add_ps_string = string.format(`netsh advfirewall firewall add rule name="%s" dir=in action=block description="firewall-Helper添加的需要阻止的IP黑名单" remoteip="%s"`, ruleName, remoteip);
console.log("执行的netsh命令: ", add_ps_string);
var prcsAdd = process.popen(add_ps_string);
var result, a, b = prcsAdd.readAll();
console.log("添加规则结果: ", result);
prcsAdd.close();
}
addFirewallRule()
console.pause(true);
接着编译成exe,添加定时任务,每小时执行一次即可。