From cybersecurity-skills
Parses NetFlow v9/IPFIX records with Python netflow library to detect port scanning, data exfiltration, C2 beaconing, and volumetric anomalies in network traffic.
npx claudepluginhub mukul975/anthropic-cybersecurity-skills --plugin cybersecurity-skillsThis skill uses the workspace's default tool permissions.
- When investigating security incidents that require analyzing network flow data with netflow
Applies Acme Corporation brand guidelines including colors, fonts, layouts, and messaging to generated PowerPoint, Excel, and PDF documents.
Builds DCF models with sensitivity analysis, Monte Carlo simulations, and scenario planning for investment valuation and risk assessment.
Calculates profitability (ROE, margins), liquidity (current ratio), leverage, efficiency, and valuation (P/E, EV/EBITDA) ratios from financial statements in CSV, JSON, text, or Excel for investment analysis.
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)