From cybersec-toolkit
Parse NetFlow v9 and IPFIX records to detect volumetric anomalies, port scanning, data exfiltration, and C2 beaconing patterns using the Python netflow library.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cybersec-toolkit: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 26zl/cybersec-toolkit --plugin cybersec-toolkitParse 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.
Parses NetFlow v9 and IPFIX records with Python netflow library to detect volumetric anomalies, port scanning, data exfiltration, and C2 beaconing via statistical baselines.