Every access log tells you who was talking to your server. IP Filter/Extractor lists the unique IP addresses in any log — with per-IP counts — or filters the log down to (or away from) a set of addresses you choose.
Handy for spotting scanners, isolating a known-good client, or proving a botnet pattern across a day of traffic.
Extract mode scans every line for both IPv4 addresses (validated octet-by-octet, so a stray 3-digit number is never mistaken for an IP unless every octet is 0–255) and IPv6 addresses in compressed :: form, then tallies how many times each one appears and lists them most-frequent first. Filter mode instead compares the IPs found on each line against a list you supply — one entry per line — using a prefix match, so a partial address like 192.168. matches any IP that starts with those octets, letting you keep or drop an entire subnet without listing every host in it. "Keep matching lines" retains only lines that contain at least one listed IP; "Remove matching lines" does the opposite, which is the faster way to strip a known-good address out of a log before hunting for the actual anomaly.