import re


def rule(event):
    if any(
        [
            re.match(r"ipconfig\\s+/all", event.deep_get("CommandLine", default="")),
            re.match(
                r"netsh\\s+interface show interface", event.deep_get("CommandLine", default="")
            ),
            re.match(r"arp\\s+-a", event.deep_get("CommandLine", default="")),
            re.match(r"nbtstat\\s+-n", event.deep_get("CommandLine", default="")),
            re.match(r"net\\s+config", event.deep_get("CommandLine", default="")),
            re.match(r"route\\s+print", event.deep_get("CommandLine", default="")),
        ]
    ):
        return True
    return False
