From cybersecurity-skills
Builds an append-only log integrity chain using SHA-256 hash chaining for tamper detection. Supports log ingestion, chain verification, tamper pinpointing, and checkpoint anchoring.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cybersecurity-skills:implementing-log-integrity-with-blockchainThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- When deploying or configuring implementing log integrity with blockchain capabilities in your environment
pip install requestspython scripts/agent.py --log-file /var/log/syslog --chain-file log_chain.json --verify --output integrity_report.json
{"index": 42, "timestamp": "2024-01-15T10:30:00Z", "content_hash": "a1b2c3...",
"prev_hash": "d4e5f6...", "chain_hash": "SHA256(prev_hash + timestamp + content_hash)"}
If entry 42 is modified, chain_hash[42] will not match SHA256(chain_hash[41] + ...), and all entries from 42 onward will be flagged as invalid.
npx claudepluginhub costrict-plugins-repo/mukul975-anthropic-cybersecurity-skills-cybersecurity-skillsBuilds an append-only log integrity chain using SHA-256 hash chaining for tamper detection. Useful for ensuring log immutability and detecting modifications.
Builds an append-only log integrity chain using SHA-256 hash chaining for tamper detection. Useful for ensuring log immutability and detecting modifications.
Builds append-only log integrity chain using SHA-256 hash chaining for tamper detection. Supports ingestion from syslog/JSON/text, chain verification, pinpoint tampering identification, and external timestamp anchoring.