From cybersecurity-skills
Parses NetFlow v9/IPFIX records using the Python netflow library to detect volumetric anomalies, port scanning, data exfiltration, and C2 beaconing patterns.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cybersecurity-skills:analyzing-network-flow-data-with-netflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- When investigating security incidents that require analyzing network flow data with netflow
pip install netflowpython -m netflow.collector -p 9995netflow.parse_packet().python scripts/agent.py --flow-file captured_flows.json --output netflow_report.json
import netflow
data, _ = netflow.parse_packet(raw_bytes, templates={})
for flow in data.flows:
print(flow.IPV4_SRC_ADDR, flow.IPV4_DST_ADDR, flow.IN_BYTES)
npx claudepluginhub costrict-plugins-repo/mukul975-anthropic-cybersecurity-skills-cybersecurity-skillsParse NetFlow v9 and IPFIX records to detect volumetric anomalies, port scanning, data exfiltration, and C2 beaconing patterns using the Python netflow library.
Parse NetFlow v9 and IPFIX records to detect volumetric anomalies, port scanning, data exfiltration, and C2 beaconing patterns using the Python netflow library.
Parses NetFlow v9 and IPFIX records using Python netflow library to decode flows, build baselines, and detect anomalies like port scanning, data exfiltration, volumetric spikes, and C2 beaconing.