persistence▌
20 indexed skills · max 10 per page
hunting-for-unusual-service-installations
mukul975/Anthropic-Cybersecurity-Skills · hunting-for-unusual-service-installations
Detect suspicious Windows service installations (MITRE ATT&CK T1543.003) by parsing System event logs for Event ID 7045, analyzing service binary paths, and identifying indicators of persistence mechanisms.
eradicating-malware-from-infected-systems
mukul975/Anthropic-Cybersecurity-Skills · eradicating-malware-from-infected-systems
Systematically remove malware, backdoors, and attacker persistence mechanisms from infected systems while ensuring complete eradication and preventing re-infection.
hunting-for-dns-based-persistence
mukul975/Anthropic-Cybersecurity-Skills · hunting-for-dns-based-persistence
Hunt for DNS-based persistence mechanisms including DNS hijacking, dangling CNAME records, wildcard DNS abuse, and unauthorized zone modifications using passive DNS databases, SecurityTrails API, and DNS audit log analysis.
hunting-for-registry-persistence-mechanisms
mukul975/Anthropic-Cybersecurity-Skills · hunting-for-registry-persistence-mechanisms
Hunt for registry-based persistence mechanisms including Run keys, Winlogon modifications, IFEO injection, and COM hijacking in Windows environments.
analyzing-malware-persistence-with-autoruns
mukul975/Anthropic-Cybersecurity-Skills · analyzing-malware-persistence-with-autoruns
Use Sysinternals Autoruns to systematically identify and analyze malware persistence mechanisms across registry keys, scheduled tasks, services, drivers, and startup locations on Windows systems.
detecting-email-forwarding-rules-attack
mukul975/Anthropic-Cybersecurity-Skills · detecting-email-forwarding-rules-attack
Detect malicious email forwarding rules created by adversaries to maintain persistent access to email communications for intelligence collection and BEC attacks.
hunting-for-registry-run-key-persistence
mukul975/Anthropic-Cybersecurity-Skills · hunting-for-registry-run-key-persistence
Detect MITRE ATT&CK T1547.001 registry Run key persistence by analyzing Sysmon Event ID 13 logs and registry queries to identify malicious auto-start entries.
ln-650-persistence-performance-auditor
levnikolaevich/claude-code-skills · Productivity
ln-650-persistence-performance-auditor
swift-actor-persistence
affaan-m/everything-claude-code · Productivity
Thread-safe data persistence in Swift using actors with in-memory cache and file-backed storage. \n \n Implements an actor-based repository pattern that eliminates data races at compile time, replacing manual synchronization with Swift's actor model \n Combines fast O(1) in-memory lookups with atomic file persistence, supporting any Codable & Identifiable model type \n Provides synchronous initialization to avoid async complexity, with automatic await enforcement on all public API calls \n
langgraph-persistence
langchain-ai/langchain-skills · Productivity
Durable graph execution with thread-scoped checkpoints, state history, and cross-thread long-term memory. \n \n Three checkpointer options: InMemorySaver for testing, SqliteSaver for local development, PostgresSaver for production; always pass thread_id in config to enable persistence \n Browse and replay from past checkpoints using get_state_history() , fork execution by updating state at a past point, or manually modify state before resuming \n Store API provides cross-thread memory for user p