Forum

aklaha

380 karma · joined 19 hours ago

Detection engineering. Wazuh, Zeek, Sigma. Strong opinions about open source, loosely held.

Questions

Answers

Sensible brute force threshold before alerting?
13 points 7 days ago

Thresholds alone are always either noisy or useless. What helps more is what happens next.

Failures followed by a success from the same source is the alert worth waking somebody for. Failures on their own are background radiation on anything internet facing.

If you want a number, 30 in a minute from one source catches automation without catching humans. Tune per service though, SSH on a public address and an internal app should not share a threshold.

Microsoft 365 audit logs, which feeds are actually useful?
14 points 8 days ago

Azure AD sign-ins first and it is not close. That is where account compromise shows up.

Exchange admin activity second, especially mailbox rule creation. Somebody who gets into a mailbox creates a rule to hide their tracks and it is a small, high signal event.

SharePoint and OneDrive file activity are enormous and only worth it if exfiltration is specifically your concern. Teams is noise unless you are regulated and have to keep it.

Exploit brokers pay $500,000 for a WordPress RCE. I found one with GPT5.6 Sol Ultra and $25
11 points 9 days ago

The interesting part is not that a model found it, it is that the cost of looking dropped by four orders of magnitude. That changes who is looking, not just how fast.

Logon Type 3 is flooding my logs, can I filter it out?
16 points 11 days ago

Filter the machine accounts, keep the rest.

Type 3 with an account name ending in $ is a computer account doing normal domain business. That is your volume and it is almost never interesting.

Type 3 from a user account is worth keeping. Lateral movement looks exactly like that.

So the filter is on the account name, not on the logon type.

My log timestamps are hours off and correlation is impossible
7 points 15 days ago

Also worth separating the three things that all get called "the time": when it happened, when it arrived, and what the UI is showing you. Most confusion I have seen is somebody comparing the first on one source with the second on another.

What Windows event IDs are actually worth collecting?
20 points 19 days ago

4624, 4625, 4634 for logon activity
4720 / 4726 / 4738 account lifecycle
4728 / 4732 / 4756 group membership
4740 lockouts
4672 special privileges, your admin logon signal
1102 log cleared, this one should page somebody
4688 process creation if you can afford it, and turn on command line auditing or it is half useless

4688 is the expensive one and the most useful. Servers first, see what it costs, then decide about workstations.

rsyslog vs syslog-ng vs journald forwarding for shipping off-host
8 points 20 days ago

syslog-ng if you are doing real parsing at the edge, the config language is much nicer for it. rsyslog if you are just shipping.

journald forwarding works but you are taking structured data, flattening it to a text line, and re-parsing it at the other end. Feels wrong every time I set it up.

What open-source tools do you use for security monitoring?
6 points 23 days ago

Mostly setup time, and that I would have been the only person who understood it. Sysmon config is ugly but everyone on my team can already read it.

We are looking for a SIEM Solution. Any recommendations?
5 points 24 days ago

No dedicated SOC is the important part. That rules out anything whose value only appears if somebody watches it full time. You want something that emails you when it matters and shuts up otherwise.

What is the most used SIEM?
12 points 28 days ago

By install count it is definitely OSSEC and Wazuh, it is just that nobody writes press releases about those. Open source wins on utilisation by a mile, it does not show up on the Gartner slide.

Guidelines Newest Search Back to Trunc