我正在尝试获取人们尝试登录我们的服务器并禁止在x
尝试不成功后立即阻止 IP 的事件列表。
这是我到目前为止所拥有的:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
EventLog eventLog;
eventLog = new EventLog();
eventLog.Log = "Security";;
eventLog.Source = "Security-Auditing";
eventLog.MachineName = "TGSERVER";
var count = 0;
foreach (EventLogEntry log in eventLog.Entries)
{
if (count > 200)
{
return;
}
Console.Write("eventLog.Log: {0}", eventLog.Log);
count++;
}
}
不多,但这是一个开始。
我的问题是,我似乎无法隔离这些特定事件,因为我无法按eventid
or过滤keyword
,或者至少我看不到办法。
我的目标是获取那些不良尝试的 ip。
有人有什么建议吗?