npx claudepluginhub plurigrid/asi --plugin asiThis skill uses the workspace's default tool permissions.
- When investigating security incidents that require analyzing network flow data with netflow
Parses NetFlow v9/IPFIX records with Python netflow library to detect port scanning, data exfiltration, C2 beaconing, and volumetric anomalies in network traffic.
Parses NetFlow v9 and IPFIX records with Python netflow library to detect volumetric anomalies, port scanning, data exfiltration, and C2 beaconing via statistical baselines.
Analyzes PCAP files, Zeek logs, and NetFlow data to detect C2 communications, lateral movement, data exfiltration, and exploits during security incidents using Wireshark techniques.
Share bugs, ideas, or general feedback.
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)